ch
Feedback
Programming Quiz Channel

Programming Quiz Channel

前往频道在 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

显示更多
790
订阅者
+124 小时
+77 天
+1530 天

数据加载中...

相似频道
无数据
有任何问题?请刷新页面或联系我们的客服
标签云
无数据
有任何问题?请刷新页面或联系我们的客服
进出提及
---
---
---
---
---
---
吸引订阅者
九月 '26
九月 '26
+15
在4个频道中
八月 '26
+33
在3个频道中
Get PRO
七月 '26
+30
在2个频道中
Get PRO
六月 '26
+51
在4个频道中
Get PRO
五月 '26
+38
在3个频道中
Get PRO
四月 '26
+55
在5个频道中
Get PRO
三月 '26
+68
在5个频道中
Get PRO
二月 '26
+167
在5个频道中
Get PRO
一月 '260
在0个频道中
Get PRO
十二月 '250
在0个频道中
Get PRO
十一月 '250
在0个频道中
Get PRO
十月 '250
在0个频道中
Get PRO
九月 '250
在0个频道中
Get PRO
八月 '250
在0个频道中
Get PRO
七月 '250
在0个频道中
Get PRO
六月 '250
在0个频道中
Get PRO
五月 '250
在0个频道中
Get PRO
四月 '250
在0个频道中
Get PRO
三月 '250
在0个频道中
Get PRO
二月 '25
+23
在0个频道中
Get PRO
一月 '25
+53
在0个频道中
Get PRO
十二月 '24
+132
在0个频道中
Get PRO
十一月 '24
+293
在0个频道中
日期
订阅者增长
提及
频道
15 九月+1
14 九月+3
13 九月0
12 九月+2
11 九月+3
10 九月+2
09 九月0
08 九月+1
07 九月0
06 九月+1
05 九月+1
04 九月+1
03 九月0
02 九月0
01 九月0
频道帖子
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