A computer in a factory is connected to printer, the print is located in an office,1km away from the factory, identify what data transmission medium would be much suitable for the connection
SIKSHAPATH Latest Questions
Which of the following AI agents first demonstrated that machines can beat the very best humans at chess? A. Blue Gene B. Chess Machine C. Deep Blue D. Deep Thought
Which of the following were devised to test whether a machine is intelligent? Select the correct answers. A. Rorschach Test B. Loebner Prize C. Turing Test D. Winograd Schemas
___ was the first general-purpose mobile robot to move around autonomously. A. Blue Gene B. ELIZA C. SHAKEY D. SHRDLU
What is true of the first checkers program written in 1952 by Arthur Samuel? A. It was written in Java SE 17 programming language B. It improved as it played more and more games C. It eventually beat its creators in the game ...Read more
Which Python library is commonly used for data wrangling and manipulation? A. NumpyB. PandasC. scikitD. Math
The value of the variable result after running the code snippet below is ____ num=20.5 z=3 result=2+z*3+num//z print(result) A. 89.0 B. 17.0 C. 737.0 D. 96.0
Predict the output of the following code x = 4 y = 11 p = 5.0 ans = x**(y % p) print(ans) A. 4 B. 4.0 C. 5 D. 4.1
Which of the following variable assignments would throw an error? A. var1=True; var2=False; B. var1=false; var2=true; C. var1=’True’; var2=’False’; D. var1=’true’; var2=’false’;
Which of the following variable names are INVALID in Python? A. 1_variable B. variable_1 C. variable_* D. variable1