Computer Science
Fill in the blank:
The modem at the sender’s computer end acts as a …………… .
- Model
- Modulator
- Demodulator
- Convertor
Related Questions
Which of the following statement(s) would give an error during execution of the following code ?
tup = (20, 30, 40, 50, 80, 79) print(tup) #Statement 1 print(tup[3] + 50) #Statement 2 print(max(tup)) #Statement 3 tup[4] = 80 #Statement 4
- Statement 1
- Statement 2
- Statement 3
- Statement 4
What possible outputs(s) will be obtained when the following code is executed?
import random myNumber = random.randint(0, 3) COLOR = ["YELLOW", "WHITE", "BLACK", "RED"] for I in range(1, myNumber): print(COLOR[I], end = "*") print()
- RED*
WHITE*
BLACK* - WHITE*
BLACK* - WHITE* WHITE*
BLACK* BLACK* - YELLOW*
WHITE*WHITE*
BLACK* BLACK* BLACK*
- RED*
Consider the code given below:
b = 100 def test(a): ............... #missing statement b = b + a print(a, b) test(10) print(b)
Which of the following statements should be given in the blank for #Missing Statement, if the output produced is 110?
- global a
- global b = 100
- global b
- global a = 100
State whether the following statement is True or False:
An exception may be raised even if the program is syntactically correct.