Ace - AI Tutor
Ask Our Educators
Textbooks
My Library
Flashcards
Scribe - AI Notes
Notes & Exams
Download App
christina carb-

christina c.

Divider

Questions asked

BEST MATCH

Which of the following is true for bonds issued at a premium: The stated interest rate is less than the market interest rate The market interest rate is less than the stated interest rate

View Answer
divider
BEST MATCH

What are the names of the lines that represent a change of feet in elevation?

View Answer
divider
BEST MATCH

1. (a)Adjusting the triple-beam balance so that it reads zero when empty, what type of error does this minimize? Systematic Measurement Systematic Intrinsic Random Measurement Random Intrinsic

View Answer
divider
BEST MATCH

The first step to protecting critical infrastructure is to assess the risk. Based on this notion, provide a threat assessment for a major element of the nation’s cyber critical infrastructure. Focus on Health care. communications, power distribution, and Transportation. Provide an overall Threat Assessment and describe at least two types of adversarial action (a.k.a. attacks) that a cyber adversary may choose to take against critical infrastructure. What can you do to help make your own data more resilient in light of threats to our national critical infrastructure?

View Answer
divider
BEST MATCH

Use 3-digit chopping after each addition for sum_{i=1}^{N} frac{1}{i}. (b) What is the absolute error for this value of N? (c) What is the relative error for this value of N?

View Answer
divider
BEST MATCH

Find the distance from the point (4, 3) to line $\begin{pmatrix} x \\ y \end{pmatrix} = \begin{pmatrix} 1 \\ 2 \end{pmatrix} + t \begin{pmatrix} -1 \\ 1 \end{pmatrix}$ \\ (Round to 4 decimal places)

View Answer
divider
BEST MATCH

struct A { A(int i) : value(i) {} int value; }; int main() { 1:????? my_vector; my_vector.push_back(2:?????); } Write 1:????? to declare a vector of A objects: Write 2:????? to construct and push back an A object with the value 25:

View Answer
divider
BEST MATCH

Problem 1) Write a program that reads in two integers typed on the keyboard and outputs their sum, difference, and product. Problem 2) Write a program that reads in a line of text and then outputs that line of text first in all uppercase letters and then in all lowercase letters. Problem 3) Something could go wrong with the following code. Identify and fix the problem. Scanner keyboard = new Scanner(System.in); System.out.println("Enter your age."); int age = keyboard.nextInt(); System.out.println("Enter your name."); String name = keyboard.nextLine(); System.out.println(name + ", you are " + age + " years old.");

View Answer
divider
BEST MATCH

Group Project ? Title: How should a normal people make the best use of a windfall? ? Description: You are a student just graduate from university (22 years old) and start another chapter of life. After a period, you finally find a job and get a so-so monthly salary $3,200 per month when you are 23(because of the virus, the job market is not very good). After working 5 years in the company, your salary increase to $5,000 per month. You want to retire when you are 60 and leave no coin when you are 80. ? Luckily, you won the lottery ticket, though it is not a huge amount ($60,000). And you start to think about how to make the best use of it. ? Option 1: You prepare to use the money to buy a house in Calgary and rent it to international students. House price is $450,000 with 20% down payment. When you retire, you will live in this house and get a periodic payment ($4,000 per month). Before that, you choose to rent a house too ($450 for rent and $50 for internet and others fee). All the money you earn will be deposit in the Scotiabank which offers you 2.5% interest rate and compound monthly. In order to buy the house, you prepare to run a ten-years mortgage and make constant monthly payment.

View Answer
divider
BEST MATCH

Q2) The following array of pointers is given. Write a C program that gets the array and prints the characters in reverse. Your function must check if the string is a palindrome and print the total number of palindrome words. char *words[5] = {"mom", "sing", "mouse", "radar", "test"}; hint: a word that reads the same backwards as forwards, like madam. Attention: Your program MUST be implemented using array of pointers. You cannot claim mark for other solutions.

View Answer
divider