Programming Quiz Channel – Telegram
Programming Quiz Channel
612 subscribers
81 photos
4 videos
1 file
Programming quizzes and knowledge tests

Short quizzes on programming, logic and computer science.

Test and improve your coding knowledge.
Join 👉 https://rebrand.ly/bigdatachannels

DMCA: @disclosure_bds
Contact: @mldatascientist
Download Telegram
Which CSS property controls the text size?
Anonymous Quiz
77%
font-size
9%
text-style
4%
font-style
9%
text-size
What will this code output? Spot the bug.
Difficulty: Hard😤

for (var i = 0; i < 5; i++) {
setTimeout(function() {
console.log(i);
}, 1000);
}
6🔥3👍1
Channel name was changed to «Programming Quiz Channel»
Channel photo updated
What is the time complexity of binary search on a sorted array?
Anonymous Quiz
20%
O(n)
42%
O(log n)
20%
O(1)
18%
O(n log n)
2
Which SQL keyword removes duplicate rows?
Anonymous Quiz
28%
UNIQUE
4%
CLEAN
52%
DISTINCT
16%
REMOVE
🥱1
In Python, what is the result of len("abc" * 3)?
Anonymous Quiz
19%
3
10%
6
63%
9
8%
12
Which OS algorithm may cause starvation?
Anonymous Quiz
16%
FCFS
35%
Round Robin
23%
FIFO
25%
Priority scheduling
Which HTTP status implies retry later?
Anonymous Quiz
8%
200
32%
429
24%
301
36%
404
2
In Java, what is the default value for uninitialized int variable inside a class?
Anonymous Quiz
39%
0
37%
null
24%
undefined
0%
1
Which data structure uses LIFO behavior ?
Anonymous Quiz
23%
Queue
7%
Tree
68%
Stack
3%
Graph
Which SQL clause sorts results?
Anonymous Quiz
18%
GROUP BY
6%
ARRANGE
39%
SORT BY
36%
ORDER BY
Starvation in operating system means:
Anonymous Quiz
18%
Deadlock situation
36%
Process never served
33%
Memory leak
13%
Low CPU
Which Automata has a stack memory?
Anonymous Quiz
21%
DFA
38%
NFA
36%
PDA
5%
TM
Which keyword creates an object in Java?
Anonymous Quiz
8%
build
23%
create
60%
new
9%
alloc
Which sorting algorithm has the worst case O(n^2)?
Anonymous Quiz
19%
Merge sort
21%
Quick sort
47%
Bubble sort
13%
Heap sort
Which HTTP status code means "Not Found" ?
Anonymous Quiz
2%
200
3%
301
91%
404
3%
500
Which operator accesses members through a pointer in C++?
Anonymous Quiz
9%
.
26%
::
59%
->
7%
:
Which SQL command modifies existing table rows?
Anonymous Quiz
73%
UPDATE
12%
CHANGE
10%
SET
6%
EDIT
Which of these guarantees unique values only?
Anonymous Quiz
13%
list
27%
array
49%
set
11%
stack