Programming Quiz Channel
Ir al canal en 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
Mostrar más790
Suscriptores
+124 horas
+77 días
+1530 días
Carga de datos en curso...
Canales Similares
Sin datos
¿Algún problema? Por favor, actualice la página o contacte a nuestro gerente de soporte.
Nube de Etiquetas
Sin datos
¿Algún problema? Por favor, actualice la página o contacte a nuestro gerente de soporte.
Menciones Entrantes y Salientes
---
---
---
---
---
---
Atraer Suscriptores
septiembre '26
septiembre '26
+15
en 4 canales
agosto '26
+33
en 3 canales
Get PRO
julio '26
+30
en 2 canales
Get PRO
junio '26
+51
en 4 canales
Get PRO
mayo '26
+38
en 3 canales
Get PRO
abril '26
+55
en 5 canales
Get PRO
marzo '26
+68
en 5 canales
Get PRO
febrero '26
+167
en 5 canales
Get PRO
enero '260
en 0 canales
Get PRO
diciembre '250
en 0 canales
Get PRO
noviembre '250
en 0 canales
Get PRO
octubre '250
en 0 canales
Get PRO
septiembre '250
en 0 canales
Get PRO
agosto '250
en 0 canales
Get PRO
julio '250
en 0 canales
Get PRO
junio '250
en 0 canales
Get PRO
mayo '250
en 0 canales
Get PRO
abril '250
en 0 canales
Get PRO
marzo '250
en 0 canales
Get PRO
febrero '25
+23
en 0 canales
Get PRO
enero '25
+53
en 0 canales
Get PRO
diciembre '24
+132
en 0 canales
Get PRO
noviembre '24
+293
en 0 canales
| Fecha | Crecimiento de Suscriptores | Menciones | Canales | |
| 15 septiembre | +1 | |||
| 14 septiembre | +3 | |||
| 13 septiembre | 0 | |||
| 12 septiembre | +2 | |||
| 11 septiembre | +3 | |||
| 10 septiembre | +2 | |||
| 09 septiembre | 0 | |||
| 08 septiembre | +1 | |||
| 07 septiembre | 0 | |||
| 06 septiembre | +1 | |||
| 05 septiembre | +1 | |||
| 04 septiembre | +1 | |||
| 03 septiembre | 0 | |||
| 02 septiembre | 0 | |||
| 01 septiembre | 0 |
Publicaciones del Canal
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 |
