Which of the following operations need NOT to be entered on the Oil Record Book Part I? I

题目

Which of the following operations need NOT to be entered on the Oil Record Book Part I? I、Disposal of oil residues. II、 Internal transfer of fuel oil

A.I only

B.II only

C.both I and II

D.neither I nor II

如果没有搜索结果或未解决您的问题,请直接 联系老师 获取答案。
相似问题和答案

第1题:

下面程序的功能是:对字符串从小到大进行排序并输出,请填空。

#include "string.h"

#include "stdio.h"

sort(char *a[],int n)

{ int i,j;

char *p;

for(j=1;j<=n-1;j++)

for(i=0; 【15】 ;i++)

if( 【16】 >0)

{ p=a[i];

a[i]=a[i+1];

a[i+1]=p;}}

main()

{ int i;

char *book[]={"itisme","itisyou","howareyou","fine","goodnight","goodbye"};

sort( 【17】 );

for(i=0;i<6;i++)

printf("%s\n",book[i]);}


正确答案:
i<n-j;strcmp(a[i],a[i+1]);book,6

第2题:

I ________ help. I can do it myself.

A.need to

B.don’t need

C.needn’t

D.need


参考答案:B

第3题:

I've become good friends with several of the students in my school I met in theEnglish speech contest last year.

A. who

B. where

C. when

D. which


正确答案:A

第4题:

2、在Need矩阵中,need(i,j)=a表示()。

A.进程i最多需要j类资源a个

B.进程i最多还需要j类资源a个

C.进程j最多还需要i类资源a个

D.进程j最多需要i类资源a个


P1;P3

第5题:

I ____ you will write me back soon.

A、wish

B、hope

C、want

D、need


正确答案:B

第6题:

I’m particularly proud of ()I organized the finances.

A、who

B、how

C、which


参考答案:B

第7题:

Which statement is true about a running session that belongs to the online transaction processing (OLTP) group?()

A. It permanently switches to the low_group consumer group if the session exceeds 10,000 I/O requests or 2,500 MB of data transfer.

B. It performs the first 10000 I/O requests or 2,500 MB of data transfer in the LOW-GROUP consumer group, and then switches to the original group.

C. It switches to the LOW_GROUP consumer group if the session exceeds 10000 I/O requests or 2500 MB of data transfer and returns to the original group after the operation.

D. It switches to the LOW_GROUP consumer group if the session exceeds 10000 I/O requests or 2500MB of data transfer for queries, but not for data manipulation language (DML) operations.


参考答案:D

第8题:

—_________ I take the book out?

—I'm afraid not.

A. Will

B. May

C. Must

D. Need


正确答案:B

第9题:

在Need矩阵中,need(i,j)=a表示()。

A.进程i最多需要j类资源a个

B.进程i最多还需要j类资源a个

C.进程j最多还需要i类资源a个

D.进程j最多需要i类资源a个


进程i最多还需要j类资源a个

第10题:

29、如下程序的输出结果是 int main() { char books[][20]={"English","Math","Physical"}; int i,j; for(i=0;i<3;i++) { strcat(books[i],"book"); } printf("%s",&books[i-1][3]); return 0; }

A.Physicalbook

B.sical

C.Physical

D.sicalbook


B 解析: 本题涉及字符串最基本的两个概念:①字符串的长度是指字符串中字符的个数,但不包括字符串结束符;②以反斜杠“\\”开头的特殊字符序列,意思是把反斜杠后面的字符序列转换成特定的含义,而不是原来的含义,不包含在字符串长度之内,“\\”连同后面的字符为一个长度。