One of the main benefits of community service is that it()a person's character.
A. sets
B. builds
C. makes
第1题:
有以下程序: main() { char *S[]={"one","two","three"},*p; p=s[1]; printf("%c,%s\n", *(p+1), s[0]); } 执行后输出结果是( )。
A.n,two
B.t,one
C.w,one
D.o,two
第2题:
The Declaration of Inspection made before oil transfer operations must be signed by the ______.
A.Master of the vessel
B.Captain of the Port
C.person(s) in charge
D.All of the above
第3题:
Servlet程序的入口点是:()
A.init()
B.main()
C.service()
D.doGet()
第4题:
有以下程序
main()
{char *s[]={"one","two","three"},*p;
p=s[1];
printf("%c,%s\n",*(p+1),s[0]);
}
执行后输出结果是
A.n,two
B.t,one
C.w,one
D.O,two
第5题:
Servlet程序的入口点是()。
A.init()
B.service()
C.main()
D.doGet()
第6题:
编写一个人类 Person,其中包含姓名、性别和年龄的属性,包含构造方法以及显示姓 名、性别和年龄的方法。再编写一个学生类 Student,它继承 Person 类,其中包含学号属 性,包含构造方法以及显示学号的方法。最后编写一个主类 Test,包含 main()方法, 在 main()方法中定义两个学生 s1 和 s2 并给他们赋值,最后显示他们的学号、姓名、性别 以及年龄。