About Queen's
About Smith I
About Smith II
Smith IT
Random
100

The year the first ever Queen's degree was awarded.

1847
1812
1901
1874

1847

100

The year the first Commerce degree was awarded

1946
1899
1888
1919

1919

100

The number of MBA programs offered by Smith

4
EMBA, AMBA, EMBAA, Smith MBA

100

The oldest serving member of the IT department

Robin Spires Holmes (25 years)

100

The year the Victoria School, which is in the center of Goodes Hall, was built

1892

200

The varsity team has captured the most championships for Queen's.

Men's Football
Women's Rugby
Men's Rugby
Women's Basketball

Men's Football

200

Total Number of graduate programs offered at Smith in 2023

16

200

Total number of Commerce students in the academic year 2022-2023

Class of 2022 - 495
Class of 2023 - 466
Class of 2024 - 580
Class of 2025 - 553 

Total: 2094

200

Total number of IT staff across all groups

Salesforce - 5
Dev Squad - 9
Help Desk - 3
Ops - 6
Exec Director/Director - 2

Total: 25 (one position unfilled, Dev, for 26)

200

Which of these statements about 'container' and 'container-fluid' in Bootstrap is correct?

A) The container class creates a fixed-width container for content, while the container-fluid class creates a full-width container that spans the entire viewport.

B) The container class creates a fluid-width container that adapts to the screen size, while the container-fluid class creates a fixed-width container.

C) The container and container-fluid classes are identical and can be used interchangeably.

D) The container and container-fluid classes are deprecated and should no longer be used.

A

300

The Queen's University Mascot

Boo-Hoo the Bear (the 8th)

300

Smith has, or has had, office in these three cities

Kingston, Toronto, Abu Dhabi

300

Queen's School of Business held this ranking twice for business schools in the World outside of North America

#1

300

Name of the code repository used by Dev

Bitbucket

300

On the whiteboard, write a C# class that is serializable and explain it to everyone

Example
[Serializable]
public class Person {
    public string Name { get; set; }
    public int Age { get; set; }
}

400

The acceptance rate for students applying to Queen's University in 2022-23

10.4% for Undergraduate
19.3 for Graduate

400

This Smith program is was ranked #1 in North America by the Financial Times in 2019 and currently #1 in Canada for the last 4 years

Master of International Business M.I.B.

400

These are all the service departments in Smith

IT
Human Resources
Finance
Centre for Content Development
Material Management

Starbucks :P

400
The CSS framework used in our projects

Bootstrap V 3.5/4

400

In this code, what happens when the "Click me!" button is clicked? How does the count value change and where is it displayed?

<template>
   <div>
      <h1>{{ pageTitle }}</h1>
      <p>{{ pageContent }}</p>
      <button v-on:click="incrementCount">Click me!</button>
      <p>You clicked the button {{ count }} times.        </p>
      </div>
</template>
<script>
    export default {
        data(){
          return {
               pageTitle: 'My Vue App',
               pageContent: 'Welcome to my app!',
               count: 0    
                }  
         },
  methods: {
    incrementCount() {
         this.count++
     }
  }
}
</script>

The count increases by 1 and gets displayed in the paragraph.


500

The meaning of the adopted Gaelic war cry of Queen's University and its meaning

Cha Gheill - No Surrender

500

The number of students that go on international  exchange annually from Smith

over 500 (varies as programs onboard to exchange and partnerships)

500

This is the number of International Partner Schools Smith currently has

134

500

Our most commonly used browser extension to manipulate web pages for extra functionality or reporting

Tampermonkey

500

What language is this, and what does this snippet do?

public static Date theMethod(Date dt, Integer num)
{
    Integer inc = num > 0 ? 1 : -1;

    while (num != 0)
    {
        dt = dt.addDays(inc);

        if (!SSBCommon.isWeekend(dt))
            num -= inc;
    }

    return dt;
}

Apex.

Method to add a number of business days to a date. Not accounting for holidays


M
e
n
u