what does HTML stand for
Hypertext Markup Language
What does Dijkstra's algorithm do?
Finding the shortest paths between nodes in a weighted graph,
What is the name of Google's new gen AI model ?
Gemini
In terms of computing, what does CPU stand for?
Central Processing Unit
What wavelength is infrared light ?
between 780 nm and 1 mm
Which year did the Apple iPhone first become available?
2007
What is the name of the popular open-source machine learning library developed by Google?
TensorFlow
Who invented the first mechanical computer?
Charles Babbage
What is the name of this relation, in the context of UML diagrams?
Composition
How many bytes are a type long in the programming language C? (C standard library)
32 bits
Who is considered as the father of AI?
Double points for which year the term AI was coined
John McCarthy
McCarthy coined the term “AI” in 1955
What is the name of the first programming language?
FORTRAN (Formula Translation)
Where and when was the printing press first invented?
Germany, 1440 AD
What is the latest macOS called?
Sonoma (macOS 14 Sonoma)
What is the philosophical problem being considered when developing self-driving cars known as?
Trolley problem
What is the binary for 77?
1001101
do until the pointers low and high meet each other.
mid = (low + high)/2
if (x == arr[mid]) return mid
else if (x > arr[mid])
low = mid + 1
else
high = mid - 1
What kind of bug is this algorithm susceptible to?
Integer Overflow
int mid = low + ((high - low) / 2);
What is the name of the deep learning algorithm that powers many visual applications?
Convolutional neural network (CNN)