en
Feedback
Programming Quiz Channel

Programming Quiz Channel

Open in Telegram

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

Show more
790
Subscribers
+124 hours
+77 days
+1530 days

Data loading in progress...

Similar Channels
No data
Any problems? Please refresh the page or contact our support manager.
Tags Cloud
No data
Any problems? Please refresh the page or contact our support manager.
Incoming and Outgoing Mentions
---
---
---
---
---
---
Attracting Subscribers
September '26
September '26
+15
in 4 channels
August '26
+33
in 3 channels
Get PRO
July '26
+30
in 2 channels
Get PRO
June '26
+51
in 4 channels
Get PRO
May '26
+38
in 3 channels
Get PRO
April '26
+55
in 5 channels
Get PRO
March '26
+68
in 5 channels
Get PRO
February '26
+167
in 5 channels
Get PRO
January '260
in 0 channels
Get PRO
December '250
in 0 channels
Get PRO
November '250
in 0 channels
Get PRO
October '250
in 0 channels
Get PRO
September '250
in 0 channels
Get PRO
August '250
in 0 channels
Get PRO
July '250
in 0 channels
Get PRO
June '250
in 0 channels
Get PRO
May '250
in 0 channels
Get PRO
April '250
in 0 channels
Get PRO
March '250
in 0 channels
Get PRO
February '25
+23
in 0 channels
Get PRO
January '25
+53
in 0 channels
Get PRO
December '24
+132
in 0 channels
Get PRO
November '24
+293
in 0 channels
Date
Subscriber Growth
Mentions
Channels
15 September+1
14 September+3
13 September0
12 September+2
11 September+3
10 September+2
09 September0
08 September+1
07 September0
06 September+1
05 September+1
04 September+1
03 September0
02 September0
01 September0
Channel Posts
What is the primary advantage of a hash map over a balanced binary search tree for key-value storage?
Anonymous voting

2
What does the 'volatile' keyword guarantee for a Java field?
31
3
What does this print, in order?
136
4
Topic: Python πŸ” Quick look before the question: def outer(): x = 10 def inner(): nonlocal x x += 5 return x return inner f = outer() print(f()) print(f())
130
5
What is a primary key's main purpose in a relational table?
176
6
Which of these creates a shallow copy of a list in Python?
62
7
What is the practical difference between Object.is(NaN, NaN) and NaN === NaN?
56
8
Which isolation level allows a transaction to read data another concurrent transaction has written but not yet committed?
586
9
What does this print?
66
10
Topic: Debugging & Code Output πŸ” Quick look before the question: def outer(): result = [] for i in range(3): def inner(): return i result.append(inner) return [f() for f in result] print(outer())
58
11
Why is wrapping both UPDATEs in a single transaction important here?
69
12
Topic: SQL πŸ” Quick look before the question: BEGIN TRANSACTION; UPDATE accounts SET balance = balance - 200 WHERE id = 1; UPDATE accounts SET balance = balance + 200 WHERE id = 2; COMMIT;
69
13
What gets printed?
76
14
Topic: Debugging & Code Output πŸ” Quick look before the question: for i in range(5): if i == 3: continue print(i)
78
15
In Python, what is the result of 3 ** 2?
84
16
What does Array.prototype.map() return?
285
17
What does the SQL DISTINCT keyword do?
97
18
What will counter reliably print, and why?
106
19
Topic: Java πŸ” Quick look before the question: public class Test { static int counter = 0; static synchronized void increment() { counter++; } public static void main(String[] args) throws InterruptedException { Thread t1 = new Thread(() -> { for (int i = 0; i < 1000; i++) increment(); }); Thread t2 = new Thread(() -> { for (int i = 0; i < 1000; i++) increment(); }); t1.start(); t2.start(); t1.join(); t2.join(); System.out.println(counter); } }
89
20
Which Python keyword defines a named function?
91