The year the first ever Queen's degree was awarded.
1847
1812
1901
1874
1847
The year the first Commerce degree was awarded
1946
1899
1888
1919
1919
The number of MBA programs offered by Smith
4
EMBA, AMBA, EMBAA, Smith MBA
The oldest serving member of the IT department
Robin Spires Holmes (25 years)
The year the Victoria School, which is in the center of Goodes Hall, was built
1892
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
Total Number of graduate programs offered at Smith in 2023
16
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
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)
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
The Queen's University Mascot
Boo-Hoo the Bear (the 8th)
Smith has, or has had, office in these three cities
Kingston, Toronto, Abu Dhabi
Queen's School of Business held this ranking twice for business schools in the World outside of North America
#1
Name of the code repository used by Dev
Bitbucket
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; }
}
The acceptance rate for students applying to Queen's University in 2022-23
10.4% for Undergraduate
19.3 for Graduate
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.
These are all the service departments in Smith
IT
Human Resources
Finance
Centre for Content Development
Material Management
Starbucks :P
Bootstrap V 3.5/4
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.
The meaning of the adopted Gaelic war cry of Queen's University and its meaning
Cha Gheill - No Surrender
The number of students that go on international exchange annually from Smith
over 500 (varies as programs onboard to exchange and partnerships)
This is the number of International Partner Schools Smith currently has
134
Our most commonly used browser extension to manipulate web pages for extra functionality or reporting
Tampermonkey
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