Often pronounced “gooey”, GUI is short for what well-known three-word tech term?
What is Graphical User Interface?
The year UBS AG was founded. (Not Union Bank of Switzerland)
What is 1998?
With more than 104 million installs since January of 2020, what app is on pace to be the most downloaded non-game app of the year?
What is TikTok?
public static void main(String args[]) {
int arr[] = new int[5];
arr[9] = 250;
System.out.println("Value assigned! ");
}
What kind of error will this code throw?
What is runtime error? (ArrayIndexOutOfBoundsException)
What is the tasty name of the series of small single-board computers developed by an eponymous foundation in the UK and often used for the promotion of teaching computer science concepts in schools and developing countries?
What is Raspberry Pi?
THINK was the company motto for more than 40 years, for the company often referred to as "Big Blue." What is this frequently-acronymed company?
What is IBM?
The UBS Slogan.
What is Connecting people for a better world?
Because it's "nature's engineer," a beaver named Tim serves as the mascot for the sports teams at what East Coast private research university?
What is MIT?
public static void main(String args[]) {
System.out.println("Multiplication Table of 7");
int a = 7;
int ans;
for (int i = 1, i <= 10; i++) {
ans = a * i;
System.out.println(ans + "\n");
}
}
What is wrong with this code, and what error will it throw? (2 parts, 100pts each)
What is, "for(int i=1; ...") and compilation error?
The "T" name for the semiconductor device used to amplify or switch electronic signals and electrical power? The MOS (metal-oxide-semiconductor) version of this device is widely used in smartphones and other communications technology.
What is a Transistor?
Since 2013, what technology company focused on payments has owned the popular smartphone cash transfer app Venmo?
What is Paypal?
The three keys of UBS.
What is pillars, principles, and behaviors?
What mechanical device can be described as a method of applying pressure to an inked surface onto a medium, thereby transferring the ink? This two word device has St. Brigit as its patron saint.
What is a printing press?
public static void main(String args[]) {
int output = 10;
for (int i = 0; i >= 10; i++) {
output = (output * 2) + 15;
if(output % 2 == 0) {
output += 50;
}
else {
output -= 25;
}
}
System.out.println(output);
}
What is the output of the following code?
What is 10?
Released in 1982 and still popular, the first ever basketball shoe to use Nike Air technology. It shares its name with an airplane and a 1997 Wolfgang Petersen action movie.
Air Force 1
Typically considered the successor to dial-up internet access in many American homes, what was the "B" term for wide bandwidth data transmission which was able to transport multiple signals and traffic types? This replacement technology allowed for always-on and faster internet.
What is Broadband?
The amount UBS acquired CS for (To the closest hundred million)
What is CHF 3billion / $3.2billion?
What 2008-founded internet company with a "fowl" name was founded as a privacy-focused alternative to Google's search engine and has a name only a few letters shy of a well-known children's game? As of 2020, the company has fundraised more than $10 million in venture capital.
What is DuckDuckGo
class Test1 {
int x = 10;
public static void main(String[] args)
{
Test1 t1 = new Test1();
Test1 t2 = new Test1();
t1.x = 20;
System.out.print(t1.x + " ");
System.out.println(t2.x);
}
}
What is the output of the following code?
What is "20 10" ?
The name of the computer malware (allegedly) developed by the United States and Israel that aimed to disrupt Iranian Nuclear facilities?
What is Stuxnet?
The Massachusetts Institute of Technology (MIT) is the majority owner of what manufacturing company which predominantly sells audio equipment? The company was founded by an associate professor who later in life donated his shares to the school.
What is Bose?
The year UBS was originally founded.
What is 1862?
This Greek physician is considered the "father of modern medicine"
Who is Hippocrates?
class Test1 {
static int i = 1;
public static void main(String[] args)
{
int i = 1;
for (Test1.i = 1; Test1.i < 10; Test1.i++) {
i = i + 2;
System.out.print(i + " ");
}
}
}
What is the output of the following code?
What is 3 5 7 9 11 13 15 17 19
This person is widely considered as "the father of modern computing"? (HINT: He helped decipher a once thought impossible encryption algorithm)
Who is Alan Turing?