The meaning of Flag H is “I have a pilot on board”.
You should stop your vessel instantly.
The meaning of Flag H is “I require assistance.”
The meaning of Flag H is “I have PSC on board”.
第1题:
Take down ___ (G旗).
A.Flag “H”
B.Flag “G”
C.Flag “Q”
D.Flag
第2题:
以下程序段运行的结果是______。Dim a(-1 To 5) As BooleanDim flag As Booleanflag = FalseDim i As IntegerDim j As IntegerDo Until flag = True For i=-1 To 5 j=j+1 If a(i)= False Then a(i)= True Exit For End If If i = 5 Then flag = True End If NextLoopPrint j
A.20
B.7
C.35
D.8
第3题:
Your vessel is being assisted through an ice field in Thunder Bay by the Canadian Coast Guard icebreaker Alexander Henry.The starboard lookout reports that the icebreaker has run up the code flag N(November).What action should you take ________.
A.Reduce speed
B.Stop your engines
C.Reverse your engines
D.Stop your vessel instantly
第4题:
The meaning of Flag H is “I have a pilot on board”.()
第5题:
Take down ()(G旗).
第6题:
H旗的意思是“我船上有引员”。()
第7题:
G旗的意思是“我需要引航员”。()
第8题:
flag H ; flag G
flag G; flag H
flag H ; flag Q
flag G; flag Q
第9题:
Keep well clear of the vessel because she is on fire and has dangerous cargo on board or she is leaking dangerous cargo
Attempt to call the vessel on VHF radiotelephone because she is requesting to communicate
Approach the vessel with caution because she is dragging her anchor
Proceed on present course and speed since the vessel is requesting a tug
第10题:
H旗的意思是“我船上有引航员”。
H旗的意思是“我船需要引航员”。
字母H的意思是“我船已通过检疫”。
字母H的意思是“我船上有引航员”。
第11题:
The meaning of Flag G is “I have a pilot on board”.
The meaning of Flag G is “I require a pilot”.
The meaning of Flag G is “I require assistance.”
The meaning of Flag G is “I require PSC on board”.
第12题:
AE
CB
DX
CP
第13题:
请补充main函数,该函数的功能是:把1~100间的所有素数保存在数组aa中,然后输出这些素数并计算它们的和。
注意:部分源程序给出如下。
请勿改动主函数main和其他函数中的任何内容,仅在 main函数的横线上填入所编写的若干表达式或语句。
试题程序:
include<stdio.h>
main()
{
int n, i, j, k, flag, sum;
int aa [50];
sum=O;
k=O;
clrscr ();
for (i=2; i<100; i++)
{
【 】;
for (j=2; j<i&&flag; j++)
if (i%j==O)
{
【 】;
}
if (flag)
{
sum+=i;
【 】;
}
}
printf("\n*** prime number ***\n");
for (i=0; i<k; i++)
{
if (i%10==0)
printf ("\n");
printf ("%4d", aa [i]);
}
printf ("\nsum=%d", sum);
}
第14题:
用“起泡法”对输入的10个字符排序后按从小到大的次序输出。
#define N 10
char str[N];
main()
{ int i,flag;
for(flag=1;flag==1;)
{ scanf("%s",str);
flag=0;
printf("\n");
}
sort(___(4)___);
for(i=0;i<N;I++)
printf("%c",str[i]);
printf("\n");
}
sort(char str[N])
{ int i,j;
char t;
for(j=1;j<N;J++)
for(i=0;(i<N-J)&&(STR[I]!='\0');I++)
if(str[i]>str[i+1])
{ t=str[i];
____(5)____;
____(6)____;
}
}
第15题:

第16题:
Take down Flag “G” and()(升) Flag “H”.
第17题:
If we have a pilot on board , we should take down () and hoist () .()
第18题:
Letter “H” means“()”.
第19题:
Letter “G” shows that“ ()”.
第20题:
raise
lower
rise
hoist
第21题:
Proceed on present course and speed since the vessel is stopped and making no way through the water
Keep clear of the vessel because it has a diver down
Attempt to call the vessel on VHF radiotelephone because someone on board requires medical assistance
Approach with caution because the vessel is a fishing vessel and its nets are fouled on an obstruction
第22题:
I have a pilot on board
I require a pilot
I have stopped
My vessel is healthy
第23题:
The meaning of Flag H is “I have a pilot on board”.
You should stop your vessel instantly.
The meaning of Flag H is “I require assistance.”
The meaning of Flag H is “I have PSC on board”.
第24题:
000000000
0123456789
Compilation fails.
The code runs with no output.
The code enters an infinite loop.
An exception is thrown at runtime.