MSc CDA Take-Home


MSc CDA Take-Home Programming Test September 2024
MASTER OF SCIENCE
COMPUTING & DATA ANALYTICS
Master of Science in Computing & Data Analytics
Take-Home Programming Test
September 2024 Admission
Applicants to the Master of Science in Computing & Data Analytics program at Saint Mary’s University must
complete both a take-home programming test and a technical interview to be considered for admission into the
program.
Take-Home Programming Test
Complete the following three questions on your own. You can write programs in any language; however, we
strongly recommend Java, C++, C, or C#.
Compile, run, and test your programs and please submit to cda.test@smu.ca:
1. The code for your programs (.docx or .txt format)
*NOTE we will not review any code sent in pdf or image formats
2. Screenshots of three successful program runs proving that your programs function (.pdf format)
* Alternately, you can submit your code by sharing your repo through Replit (https://replit.com/) instead of
the text/docx file. We still require the screenshots of the three successful program runs even with the
Replit repo sharing.
If we discover errors in your submission, we will provide feedback and request you to correct problems and
resubmit for review. The Admissions Committee typically provides one opportunity to correct errors.
MSc CDA Take-Home Programming Test September 2024
MASTER OF SCIENCE
COMPUTING & DATA ANALYTICS
Question 1
Write a program to calculate the volume, LSA, TSA and slant height of a square pyramid having height h being
an odd number ranging from 1 to N and side length a, where N and a are inputs provided by the user.
Please find out the formulae for volume, LSA, TSA and slant height of a square pyramid.
(* Hint: Round off the value of Volume of the square pyramid)
MSc CDA Take-Home Programming Test September 2024
MASTER OF SCIENCE
COMPUTING & DATA ANALYTICS
Question 2
Write a program to measure the economy of countries by calculating their Growth Rate.
If for a given period the GDP value at the beginning and subsequent year is known, calculate the Growth Rate
(GR) of the country for each year, the Average Annual Growth Rate (AAGR) and the Compound Annual
Growth Rate (CAGR). Also, measure the relative riskiness of the country’s economy based on its standard
deviation.
The program should:
• Read the number of countries a
• Read the number of years n
• Use array of length a to store the following:
o the name of the country
o an array of GDP i.e., of length of years n
o an array of GR values i.e., of length of years n
• For each country’s GDP value and corresponding year, calculate the growth rate (GR) and its ranking.
i.e.:
<Growth Rate (GR)> = (EV-BV)
 BV
 where:
 EV (Ending Value) = <GDP Value of the current year >
 BV (Beginning Value) = < GDP Value of the previous year>
(* Hint: Round the GR value to two decimal places)
<Ranking> = GR > 25 = Exceptional
 GR > 0 = Good
 GR < 0 = Poor
• For each country calculate the average annual growth rate, compound annual growth rate and
standard deviation.
<Average Annual Growth Rate> = <Sum of “Growth Rate” / n>
< Compound Annual Growth Rate > =
where:
EV = <GDP Value of the final year >
 BV = < GDP Value of the beginning year>
<Standard Deviation> =
where:
x = <Mean of GR values>
xi = < GR Value of each year>
(* Hint: Round the GR, AAGR and CAGR to two decimal places and Stdev to three decimal places)
MSc CDA Take-Home Programming Test September 2024
MASTER OF SCIENCE
COMPUTING & DATA ANALYTICS
Print the following for each country:
• the country name
• for a specific year; the GDP Value, Growth Rate and Ranking
• the average annual growth rate
• the compound annual growth rate
• the standard deviation
At the end:
• Compare the standard deviation of each country to measure the economy volatility based on the
minimum standard deviation with the following condition:
➢ If minimum standard deviation < 25, then print;
“The Country <country name>'s economy is most stable”
➢ If minimum standard deviation > 25, then print;
“The Country <country name>'s economy is least risky”
(Example runs of the completed program are shown on the next page)
MSc CDA Take-Home Programming Test September 2024
MASTER OF SCIENCE
COMPUTING & DATA ANALYTICS
MSc CDA Take-Home Programming Test September 2024
MASTER OF SCIENCE
COMPUTING & DATA ANALYTICS
MSc CDA Take-Home Programming Test September 2024
MASTER OF SCIENCE
COMPUTING & DATA ANALYTICS
MSc CDA Take-Home Programming Test September 2024
MASTER OF SCIENCE
COMPUTING & DATA ANALYTICS
Question 3
Using SQL perform the below functions on the following table showing list of products sold.
1. There are functional dependencies in this table, so first, normalise the relation/table to the WX:codehelp

相关推荐

  1. home work day5

    2024-02-11 22:12:02       31 阅读
  2. MSc CDA Take-Home

    2024-02-11 22:12:02       34 阅读
  3. home assistant os安装docker

    2024-02-11 22:12:02       18 阅读
  4. 树莓派部署Home Assistant教程

    2024-02-11 22:12:02       35 阅读
  5. Home Assistant 添加SNMP协议UPS设备

    2024-02-11 22:12:02       11 阅读

最近更新

  1. TCP协议是安全的吗?

    2024-02-11 22:12:02       18 阅读
  2. 阿里云服务器执行yum,一直下载docker-ce-stable失败

    2024-02-11 22:12:02       19 阅读
  3. 【Python教程】压缩PDF文件大小

    2024-02-11 22:12:02       18 阅读
  4. 通过文章id递归查询所有评论(xml)

    2024-02-11 22:12:02       20 阅读

热门阅读

  1. golang 集成sentry:http.Client

    2024-02-11 22:12:02       29 阅读
  2. 20190726 ApacheHttpClient-自签证书与系统证书共存

    2024-02-11 22:12:02       30 阅读
  3. MySQL-管理

    2024-02-11 22:12:02       31 阅读
  4. 【力扣每日一题】力扣1696跳跃游戏VI

    2024-02-11 22:12:02       34 阅读
  5. Linux 服务管理两种方式service和systemctl

    2024-02-11 22:12:02       26 阅读
  6. 掌握rm命令:Linux文件删除的艺术与安全指南

    2024-02-11 22:12:02       33 阅读
  7. Python列表中的insert功能及用法举例

    2024-02-11 22:12:02       34 阅读
  8. Hadoop运行环境搭建

    2024-02-11 22:12:02       31 阅读