Which of the followings is not included in the "Four Treasure of Study"
A. ink stick
B. envelope
C. ink slab
D. paper
第1题:
A.study, will pass
B.have studied, will pass
C.are studying, will pass
D.study, pass
第2题:
A.Studentstu=newStudent(“Tom”,23);stu.study(“数学”);
B.Student.study(“数学”);
C.Studentstu=newStudent(“Tom”,23);stu.study();
D.Studentstu=newStudent(“Tom”,23);Stringresult=stu.study(“数学”);
第3题:
假设我们定义了以下谓词: Study(x) x肯学习 Lucky(x) x是幸运的 那么下列哪个谓词公式对于以下知识的表示是正确的? "小张不肯学习但他是幸运的"
A.﹁Study(zhang)∧Lucky(zhang)
B.﹁(Study(zhang)∧Lucky(zhang))
C.﹁(Study(zhang)∨Lucky(zhang))
D.﹁Study(zhang)∨Lucky(zhang)
第4题:
All people must go through security check, _____ airport staff.
A: to include
B: including
C: includes
D: included
第5题:
A、contained; including
B、included; containing
C、included; contained
D、contained; included
第6题:
下列给字符串二维数组进行赋值的语句中,错误的是()。
A.String s[ ] [ ] = new String [ ] [ ] { { “One “ , “ Two “ }, { “ Three “ , “ Four “ } } ;
B.String s[ ] [ ] = { { “ One “ , “Two “},{ “ Three “ , “ Four “ } } ;
C.String s[ ] [ ] = new String [ ] [ ] { { “Zero”} , { “ One ” , “Two” , “ Three” , “ Four” } } ;
D.String s[ 2] [2 ] = { { “ One ” , “Two”},{“ Three” , “ Four” } } ;