Last Saturday ___________________ had a picnic in Beiquan Park.
A、John, Mary and me
B、John, Mary and I
C、John, I and Mary
D、 I, John and Mary
第1题:
第2题:
第3题:
下面程序段执行完毕,页面显示的内容是()。 string strName; strName = "user_name"; Session["strName"] = "Mary"; Session[strName] = "John"; Response.Write(Session["user_name"]);
A.Mary
B.John
C.user_name
D.语法有错,无法正常运行
第4题:
第5题:
第6题:
根据下面的定义,能输出Mary的语句是() struct person { char name[9]; int age; }; struct person class[5]={"John",17,"Paul",19,"Mary",18,"Adam",16};
A.printf("%sn" ,class[1].name);
B.printf("%sn" ,class[2].name);
C.printf("%sn" ,class[3].name);
D.printf("%sn" ,class[0].name);