Which CSS property controls the text size?
Anonymous Quiz
77%
font-size
9%
text-style
5%
font-style
9%
text-size
What will this code output? Spot the bug.
Difficulty: Hard๐ค
Difficulty: Hard๐ค
for (var i = 0; i < 5; i++) {
setTimeout(function() {
console.log(i);
}, 1000);
}โค6๐ฅ3๐1
What is the time complexity of binary search on a sorted array?
Anonymous Quiz
23%
O(n)
41%
O(log n)
20%
O(1)
17%
O(n log n)
โค2
Which SQL keyword removes duplicate rows?
Anonymous Quiz
28%
UNIQUE
4%
CLEAN
52%
DISTINCT
16%
REMOVE
๐ฅฑ1
Which OS algorithm may cause starvation?
Anonymous Quiz
15%
FCFS
35%
Round Robin
23%
FIFO
27%
Priority scheduling
โค2
In Java, what is the default value for uninitialized int variable inside a class?
Anonymous Quiz
36%
0
36%
null
28%
undefined
0%
1
Starvation in operating system means:
Anonymous Quiz
19%
Deadlock situation
39%
Process never served
30%
Memory leak
13%
Low CPU
Which sorting algorithm has the worst case O(n^2)?
Anonymous Quiz
18%
Merge sort
18%
Quick sort
51%
Bubble sort
13%
Heap sort
JavaScript's const keyword guarantees what?
Anonymous Quiz
45%
Immutable object
29%
Immutable binding
9%
Cannot be used in loops
16%
Global varaible
