While baby-sitting, a girl student should NOT__________ .A. call the baby's parentsB. make personal calls for a long timeC. be allowed to watch TVD. think of her studies

题目

While baby-sitting, a girl student should NOT__________ .

A. call the baby's parents

B. make personal calls for a long time

C. be allowed to watch TV

D. think of her studies


相似考题

1.试题五(共15分)阅读以下说明和 C++代码,将应填入 (n) 处的语句或语句成分写在答题纸的对应栏内。【说明】某数据文件students.txt的内容为100名学生的学号和成绩,下面的程序将文件中的数据全部读入对象数组,按分数从高到低进行排序后选出排名前 30%的学生。【C++代码】#include <iostream>#include <fstream>#include <string>using namespace std;class Student {private:string sNO; //学号int credit; //分数public:Student(string a,int b) { sNO = a; credit = b;}Student(){}int getCredit();void out();};(1) ::getCredit() {return credit;}(2) ::out() {cout << "SNO: " << sNO << ", Credit=" << credit << endl;}class SortStudent {public:void sort(Student *s, int n);SortStudent(){}};void SortStudent::sort(Student *s,int n) {for(int i = 0; i < n-1; i++) {for(int j = i+1; j < n; j++) {if(s[i]. (3) < s[j]. (4) ) {Student temp = s[i]; s[i] = s[j]; s[j] = temp;}}}}int main(int argc, char* argv[]){const int number = 100; //学生总数ifstream students;students.open("students.txt");if(!students.is_open()) {throw 0;}Student *testStudent = (5) [number];int k = 0;string s;while (getline(students,s,'\n')) { //每次读取一个学生的学号和成绩Student student(s.substr(0,s.find(',')), atoi(s.substr(s.find(',')+1).c_str()));testStudent[k++] = student;}students.close();(6) ;ss.sort(testStudent,k);cout <<"top 30%: "<<endl;for(k = 0; k < number * 0.3; k++) {testStudent[k].out();}delete []testStudent;return 0;}

参考答案和解析
正确答案:B
细节推断题。文章第三段第二句提到“but should not tie up phone with personal calls just in case the parents want to be in contact with her”(但是不能煲电话粥,因为家长在这期间可能会与她联系),由此可知B项正确。
更多“While baby-sitting, a girl student should NOT__________. A. call the baby's pa ”相关问题
  • 第1题:

    若有如下定义,选项中正确的语句是_________。 Sructure student Dim Name As String Dim Score As Integer End Structure Dim s as Student

    A.s.Name="zhang"

    B.s="zhang"

    C.student.Name="zhang"

    D.s=student

    E.student.s="zhang"


    double a=7,b=7;

  • 第2题:

    函数MyStrlen的功能是求pa标识的字符串长度,则划线处需要填写_______ int MyStrlen(char *pa){ int count=0; while(*pa != '0'){ ______++; ______++; } return ________; }

    A.pa count count

    B.count pa count

    C.count pa pa

    D.pa count pa


    pa count count;count pa count

  • 第3题:

    7、将文本中所有的 stu 替换为 Student ,下面哪些做法是可行的?

    A.:1,$s/stu/Student/gc

    B.:1,$s/stu/Student

    C.:1,Ns/stu/Student

    D.:0,$s/stu/Student/g


    1,$s/stu/Student/g;1,$s/stu/Student/gc

  • 第4题:

    以下选项中哪个是Student类创建对象的正确语句?()

    A.Student s1=new Student();

    B.s1=new Student();

    C.s1=Student();

    D.Student s1=Student();


    Student s1=new Student( );

  • 第5题:

    与while(*s++ = *t++ );等价的程序段是

    A.do { *s = *t++; } while (*s++ );

    B.while (*t ) *s++ = *t++;

    C.do { *s++ = *t++; } while (*t );

    D.while (*s ) *s++ = *t++;


    A

  • 第6题:

    以下选项中哪个是Student类创建对象的正确语句?()

    A.s1=new Student();

    B.Student s1=new Student();

    C.s1=Student();

    D.Student s1=Student();


    AB