Programming Quiz Channel
Kanalga Telegram’da o‘tish
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
Ko'proq ko'rsatish790
Obunachilar
+124 soatlar
+77 kun
+1530 kun
Ma'lumot yuklanmoqda...
O'xshash kanallar
Ma'lumot yo'q
Muammo bormi? Iltimos, sahifani yangilang yoki bizning qo'llab-quvvatlash boshqaruvchimizga murojaat qiling>.
Taglar buluti
Ma'lumot yo'q
Muammo bormi? Iltimos, sahifani yangilang yoki bizning qo'llab-quvvatlash boshqaruvchimizga murojaat qiling>.
Kirish va chiqish esdaliklari
---
---
---
---
---
---
Obunachilarni jalb qilish
Sentabr '26
Sentabr '26
+15
4 kanalda
Avgust '26
+33
3 kanalda
Get PRO
Iyul '26
+30
2 kanalda
Get PRO
Iyun '26
+51
4 kanalda
Get PRO
May '26
+38
3 kanalda
Get PRO
Aprel '26
+55
5 kanalda
Get PRO
Mart '26
+68
5 kanalda
Get PRO
Fevral '26
+167
5 kanalda
Get PRO
Yanvar '260
0 kanalda
Get PRO
Dekabr '250
0 kanalda
Get PRO
Noyabr '250
0 kanalda
Get PRO
Oktabr '250
0 kanalda
Get PRO
Sentabr '250
0 kanalda
Get PRO
Avgust '250
0 kanalda
Get PRO
Iyul '250
0 kanalda
Get PRO
Iyun '250
0 kanalda
Get PRO
May '250
0 kanalda
Get PRO
Aprel '250
0 kanalda
Get PRO
Mart '250
0 kanalda
Get PRO
Fevral '25
+23
0 kanalda
Get PRO
Yanvar '25
+53
0 kanalda
Get PRO
Dekabr '24
+132
0 kanalda
Get PRO
Noyabr '24
+293
0 kanalda
| Sana | Obunachilarni jalb qilish | Esdaliklar | Kanallar | |
| 15 Sentabr | +1 | |||
| 14 Sentabr | +3 | |||
| 13 Sentabr | 0 | |||
| 12 Sentabr | +2 | |||
| 11 Sentabr | +3 | |||
| 10 Sentabr | +2 | |||
| 09 Sentabr | 0 | |||
| 08 Sentabr | +1 | |||
| 07 Sentabr | 0 | |||
| 06 Sentabr | +1 | |||
| 05 Sentabr | +1 | |||
| 04 Sentabr | +1 | |||
| 03 Sentabr | 0 | |||
| 02 Sentabr | 0 | |||
| 01 Sentabr | 0 |
Kanal postlari
What is the primary advantage of a hash map over a balanced binary search tree for key-value storage?
| 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 |
