【单选题】设H01=10mm,则G91G43G01Z-25.0;执行后的实际移动量为( )。
【单选题】下列程序的运行结果为()。 #include void main() { int m=7,n=4; float a=38.4,b=6.4,x; x=m/2+n*a/b+1/2; printf("%f\n",x); }
【单选题】进站信号机显示一个绿色灯光,表示列车准许按每小时不超过()公里的速度通过此站。
【单选题】下列程序的运行结果为 ( ) 。 public class J_Test{ static char m_ name ; static int m_age; public static void mb_setData( char n){ m_ n ame = n; } public static void mb_setData( int n){ m_ age = n; } public static...
【判断题】按照地区、历史和风味等特点,中国菜可以分为地方菜、宫廷菜、官府菜、素菜、和少数民族菜等。
【单选题】四显示进站色灯信号机一个红色灯光表示含义?
A.
以限速20km/h的速度越过该信号机并准备随时停车
【单选题】向20mLc(HCl)=0.1mol·L -1 的盐酸水溶液、20mLC(HAc)=0.1mol·L -1 的醋酸水溶液中,分别加入1滴c(NaOH)=0.1mol·L -1 的氢氧化钠水溶液,则:
【简答题】下列程序运行的结果为( ) void main() { int i,m=0; for(i=1;i<4;i++) m+=5; printf("%d",m);}A. 15
【单选题】下列程序段的运行结果为( )。 #include using namespace std; #define ADD(x) x+x void main() { int m=1,n=2,k=3; int sum=ADD(m+n)*k; cout< }
【简答题】下列程序的运行结果为: class Shape { public Shape(){ System.out.println("Shape"); } } class Circle extends Shape { public Circle() { System.out.println("Child"); } public static void main(String args[]) { Shape ...