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

显示更多
760
订阅者
-224 小时
-17
+1930
帖子存档
Which SQL operation usually becomes slower as a table grows if no suitable index exists?
Anonymous voting

Which structure is typically used internally for Breadth-First Search (BFS)?
Anonymous voting

Which loop is most appropriate when the number of iterations is unknown beforehand?
Anonymous voting

What is the result of: Boolean("0")
Anonymous voting

Which component is most commonly added to absorb sudden spikes in workload?
Anonymous voting

A team frequently changes business requirements. Which design characteristic becomes most valuable?
Anonymous voting

Which situation most strongly suggests a need for refactoring?
Anonymous voting

What is data leakage?
Anonymous voting

What is the main advantage of using a Python generator instead of returning a list?
Anonymous voting

Hash maps provide near O(1) average lookup time by mapping keys directly to storage locations.
Anonymous voting

A dataset contains ages ranging from 1 to 100 and incomes ranging from 100 to 1,000,000. Why might scaling be useful?
Anonymous voting

A model achieves 99% accuracy detecting fraud, but only 1% of transactions are actually fraudulent. What metric should you examine next?
Anonymous voting

Why is debouncing often used for search bars?
Anonymous voting

Two transactions modify the same record simultaneously and produce inconsistent results. What issue occurred?
Anonymous voting

What is the output of this code? x = [1, 2, 3] y = x y.append(4) print(len(x))
Anonymous voting

What does high variance usually indicate?
Anonymous voting

What problem was DNS primarily created to solve?
Anonymous voting

A website loads slowly because it requests 500 small images. What is the main issue?
Anonymous voting

Why is a model evaluated on data it has never seen before?
Anonymous voting

Why do databases use transactions?
Anonymous voting