Programming Quiz Channel
784 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
Topic: JavaScript

🔍 Quick look before the question:

function Counter() {
this.count = 0;
this.increment = function() {
this.count++;
};
}

const c = new Counter();
const inc = c.increment;
inc();
console.log(c.count);
What is the time complexity of searching in a balanced binary search tree?
Anonymous Quiz
8%
O(1)
44%
O(log n)
44%
O(n)
4%
O(n log n)
Topic: SQL

🔍 Quick look before the question:

SELECT e.name, e.salary
FROM employees e
WHERE e.salary > (
SELECT AVG(salary)
FROM employees
WHERE department = e.department
);
Which keyword is used to inherit a class in Java?
Anonymous Quiz
22%
implements
50%
extends
22%
inherits
6%
super
Topic: Debugging & Code Output

🔍 Quick look before the question:

def modify(lst):
lst.append(100)
lst = [1, 2, 3]
lst.append(200)

original = [0]
modify(original)
print(original)