NEW
Font size
Worksheetsbt_m -1 2023
Total questions: 10
Worksheet time: 5mins
Among the following which contains date information.
java.sql timestamp
java.io time
java.io.timestamp
java.sql.time
The father of machine learning is _____________
Geoffrey Everest Hinton
Geoffrey Hill
Geoffrey Chaucer
None of the above
Find the output of the following program.
public class Solution{
public static void main(String[] args){
byte x = 127;
x++;
x++;
System.out.print(x);
}
}
-127
128
127
2
Which of the following function is used to write the integer in a file?
getw()
putw()
int value
f_int()
Which of the following header files is used in C++ language?
<assert.h>
<ctype.h>
<iostream.h>
<locale.h>
What will be the output of the following code snippet?
a = [1, 2, 3, 4]
b = [3, 4, 5, 6]
c = [x for x in a if x not in b]
print(c)
[1,2]
[5,6]
[3,4]
[1,2,5,6]
Guess the Logo
tacobell
bel groups
Bp
xerox
What is the maximum possible length of an identifier?
16
32
64
None of these above
Predict the logo
Mondelez
Kraft Heinz
Danone
Ingredion
To include the HTTP server in the node module, what function do we use?
get()
require()
createServer()
None of the above
