The decimal value of 11012.
What is 13?
The language of this code segment
print("Hello, World!")
What is python?
The full form of HTML.
What is HyperText Markup Language?
A data structure that contains a collection of ordered elements.
What is an array?
An algorithm that iterates through an array, element by element, in search of a value.
What is a linear search?
The value of the following boolean expression when a is true and b is false.
a OR (a AND b)
What is true?
The language of this code segment
public class Main {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}
What is Java?
The "Father of Computer Science."
Who is Alan Turing?
A data structure that uses last in, first out (LIFO).
What is a stack?
An algorithm that searches for a value in an array of sorted elements, splitting the list in half each iteration.
What is a binary search?
The binary equivalent of 4728.
What is 1001110102?
The language of this code segment
#include <iostream>
int main() {
std::cout << "Hello, World!" << std::endl;
return 0;
}
What is C++?
The process of dividing workload across multiple processing units.
What is parallel processing?
A data structure that uses first in, first out (FIFO).
What is a queue?
The simplest common sorting algorithm, with a poor time complexity, where elements are swapped in multiple passes.
What is Bubble Sort?
The simplified form of this boolean expression
NOT((a AND b) or b)
The language of this code segment
console.log("Hello, World!");
What is JavaScript?
The year python was first released.
What is 1991?
A hierarchical data structure where each parent node has at most 2 children.
What is a binary tree?
Defining a function in terms of itself, often with a base case.
What is recursion?
The resulting bitstring when the following is evaluated:
10011 AND (01100 OR 10110)
What is 10010?
The language of this code segment
using System;
public class HelloWorld
{
public static void Main(string[] args)
{
Console.WriteLine("Hello, World!");
}
}
What is C#?
What is Sun Microsystems?
A data structure that contains ordered elements with each element pointing to the next.
What is a linked list?
An algorithm used to traverse a tree level by level.
What is Breadth-First Search (BFS)?