Tech Trivia
UBS
Agile
Java Code
Soft Skills
100

Often pronounced “gooey”, GUI is short for what well-known three-word tech term?

What is Graphical User Interface?

100

The year UBS AG was founded. (Not Union Bank of Switzerland)

What is 1998?

100

The practice of regularly checking in with the team to discuss progress and obstacles, usually at the start of the workday. 

What is Daily Stand-up (or Scrum)?

100

    public static void main(String args[]) {

        int arr[] = new int[5];

        arr[9] = 250;

        System.out.println("Value assigned! ");

    }

What kind of error and exception will this code throw?

What is runtime error? (ArrayIndexOutOfBoundsException)

100

This soft skill involves effectively conveying information to others and listening to understand.

What is Communication?

200

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?

200

The UBS Slogan.

What is "Connecting people for a better world"?

200

This Agile role is responsible for maximizing the value of the product and managing the product backlog.

What is a Product Owner?

200

    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?

200

The ability to understand and share feelings of another person.

What is Empathy?

300

Since 2013, what technology company focused on payments has owned the popular smartphone cash transfer app Venmo?

What is Paypal?

300

The three keys of UBS.

What is pillars, principles, and behaviors?

300

A visual representation of work in progress, often used in Kanban.

What is a Kanban Board?

300

    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?

300

This skill involves working well with others towards a common goal.

What is Teamwork?

400

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?

400

The amount UBS acquired CS for (To the closest hundred million)

What is CHF 3billion / $3.2billion?

400

A popular tool for tracking Agile project progress and managing tasks, often used across teams at UBS.

What is Jira?

400

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" ?

400

The ability to motivate and guide a team towards achieving goals.

What is Leadership?

500

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?

500

The year UBS was originally founded.

What is 1862?

500

A small, cross-functional team that operates independently to deliver specific outcomes in Agile.

What is a Pod?

500

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

500

The ability to negotiate and reach an agreement that is acceptable to all parties involved.

What is Conflict Resolution?

M
e
n
u