4. In most cases, goods are ordered on ____ order forms.
A: printed
B: printing
C: print
D: to print
A: printed
B: printing
C: print
D: to print
A
举一反三
- Formal business invitations are most commonly __________ on white or off-white high-quality paper. A: print B: printing C: printed D: to print
- The manager would like to have these materials by 9 o'clock. A: printing B: to print C: print D: printed
- The worrisome typist was looking for a machine that ______ 100 copies in a minute. A: have printed B: had printed C: should print D: would print
- In order to facilitate ________, it would be better to pack the goods in cases of 50 dozen each.
- 以下选项中,输出结果为False的是() A: print(not(3>4)) B: print(not(4>3)) C: print(2==2)) D: print(not(3==4))
内容
- 0
在下列代码中,哪一个选项的print语句能够被执行? A: if 4 < 3: print('OK') B: if 4 == 3: print('OK') C: if 4 != 3: print('OK') D: if 3 = 3: print('OK')
- 1
Compared with the traditional manufacturing of printing, the best thing of 3D printing is that _______. A: it can print out the personalized craft B: it is cheaper C: it is more efficient D: it is completely automatic
- 2
a=5if a: print("4") print("5")结果为? A: 4 5 B: 45 C: 4 D: 5
- 3
【其它】写出并理解下列语句输出的结果 s = "hello" print(s[0]) print(s[4]) print(s[-1]) print(s[0:3]) print(s[0:4:2]) print(s[:]) print(s[:3]) print(s[::-1]) print(s[1:])
- 4
下列程序能输出几个数a = 5 if a>4: if a<3: print(1) else: print(2) else: if a<6: print(3) else: print(4) A: 1 B: 2 C: 3 D: 4