A、raised
B、aroused
C、arose
D、rose
第1题:
已知last指向单向简单链表的尾结点,将s所指结点加在表尾,正确的操作是____。
A.s->next=s,last=s,last->next=NULL;
B.last->next=s,s->next=NULL,last=s;
C.s->next=NULL, last->next=s, s=last;
D.s->next=last, last->next=NULL,last=s;
第2题:
2、已知last指向单向简单链表的尾结点,将s所指结点插入在表尾,正确的操作是____。
A.s->next=s,last=s,last->next=NULL;
B.last->next=s,s->next=NULL,last=s;
C.s->next=NULL, last->next=s, s=last;
D.s->next=last, last->next=NULL,last=s;
第3题:
20、以下代码的输出结果是() let obj = { first: 'hello', last: 'world' }; let { first: f, last: l } = obj; console.log(f);
A.first
B.hello
C.last
D.world
第4题:
假设学生情况表中的生日字段为 birthday,数据类型为日期时间型,则查找年龄在18到20之间的学生信息,查找条件表达式正确的是:
A.2020-year([birthday])>=18 and 2020-year([birthday])<=20
B.2020-year([birthday])>=18 or 2020-year([birthday]) <=20
C.year(now() )- year([birthday])>=18 and year(now() )- year([birthday])<=20
D.year(now() )- year([birthday])>=18 or year(now() )- year([birthday])<=20
第5题:
已知last指向单向简单链表的尾结点,将s所指结点加在表尾,不正确的操作是____。
A.s->next=NULL, last->next=s,last=s;
B.s->next=NULL, last->next=s, s=last;
C.last->next=s,s->next=NULL,last=s;
D.last->next=s,last=s,last->next=NULL;
第6题:
【简答题】银行存款本息的计算。 输入存款金额 money、存期 year 和年利率 rate,根据公式计算存款到期时的本息合计sum(税前),结果保留2位小数。 sum = money (1 + rate)year 注:幂函数ax用库函数pow(a,x)。