100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
COSC1436 Exam Practice Questions and Answers $13.49   Add to cart

Exam (elaborations)

COSC1436 Exam Practice Questions and Answers

 2 views  0 purchase
  • Course
  • Cosc
  • Institution
  • Cosc

COSC1436 Exam Practice Questions and Answers What's the difference between initializing a variable and assigning a value to a variable? - ANSWER- Assigning is storing a value into the variable's memory location. Once you assign a value, you can reassign another value at any time. Initializing ...

[Show more]

Preview 4 out of 76  pages

  • November 3, 2024
  • 76
  • 2024/2025
  • Exam (elaborations)
  • Questions & answers
  • Cosc
  • Cosc
avatar-seller
KaylinHoffman
Copyright © KAYLIN 2024/2025 ACADEMIC YEAR. ALL RIGHTS RESERVED FIRST PUBLISH NOVEMBER, 2024




COSC1436 Exam Practice Questions and

Answers


What's the difference between initializing a variable and assigning a value to a variable? - ANSWER✔✔-

Assigning is storing a value into the variable's memory location. Once you assign a value, you can

reassign another value at any time.




Initializing is simply assigning a value to a variable for the first time.


Declare an integer variable called ageOfStudent and initialize it to 16. - ANSWER✔✔-int ageOfStudent =

16;


Declare a doublevariable called tipRateandinitializeit to .20. - ANSWER✔✔-double tipRate = .20;


Declare twostringvariables called firstName, and lastName, but do not initialize them to anything -

ANSWER✔✔-string firstName, lastName;


Given an integer variable called ageOfStudent (assume it is already set), write a statement that will


display the value of ageOfStudent. - ANSWER✔✔-cout << ageOfStudent;


Given a double variable called tipRate (assume it is already set to .20), write a statement that will


Copyright © Stuvia International BV 2010-2024 Page 1/76

, Copyright © KAYLIN 2024/2025 ACADEMIC YEAR. ALL RIGHTS RESERVED FIRST PUBLISH NOVEMBER, 2024




display the value of tipRate with two decimal places. - ANSWER✔✔-cout << fixed << setprecision(2) <<

tipRate;


Given two string variables called firstName and lastName (assume they are both already


initialized), write a statement that will display the values of firstName followed by a space, followed


by the lastName - ANSWER✔✔-cout << firstName << " " << lastName << endl;


Given two string variables called firstName and lastName (assume they are both already


initialized), write a statement that will display the values of lastName in a field of 20 spaces

(rightjustified), followed by the value of firstName in a field of 20 spaces, also right-justified). -

ANSWER✔✔-cout << setw(20) << lastName << setw(20) << firstName;


Assume that m is an int variable that has already been given a value. Write a statement that prints


out the value of m in a field of 10 positions. - ANSWER✔✔-cout << setw(10) << m;


Given two integer variables distance and speed, write an expression that


divides distance by speed using floating point arithmetic. - ANSWER✔✔-(double) distance/speed


Assume that students is an integer variable containing the number of students in a school, and


that teachers is an integer variable containing the number of teachers in the same school. Write a


statement that will print out the average number of students per teacher.



Copyright © Stuvia International BV 2010-2024 Page 2/76

, Copyright © KAYLIN 2024/2025 ACADEMIC YEAR. ALL RIGHTS RESERVED FIRST PUBLISH NOVEMBER, 2024




Keep in mind that we want the answer to have a decimal number.


Hint: You will need to use type-casting. You may use the long or short version of type casting -

ANSWER✔✔-cout << (double) students/teachers;


. Given an int variable datum that has already been declared, write a statement that reads an integer


value from standard input into this variable. - ANSWER✔✔-cin >> datum;


Given a string variable firstName that has already been declared, write a statement that reads a


name from standard input into this variable. - ANSWER✔✔-cin >> firstName


n. Given a string variable firstAndLastName that has already been declared, write a statement that


reads an entire name (first and last name) from standard input into this variable. For example, the


user might enter "J. K. Rowling" or "Robyn Rihanna Fenty", or "Madonna", etc.... - ANSWER✔✔-

getline(cin, firstAndLastName);


Write an if statement to determine if the int variable age is within the range of 0 through 17


(including both those ages). Simply write the: if (condition) - ANSWER✔✔-if (age >= 0 && age <= 17)


. Write an if statement to determine if the int variable age is less than 0 or greater than 17. Simply


write the: if (condition) - ANSWER✔✔-if (age < 0 | | age > 17)


. Assume the following:

Copyright © Stuvia International BV 2010-2024 Page 3/76

, Copyright © KAYLIN 2024/2025 ACADEMIC YEAR. ALL RIGHTS RESERVED FIRST PUBLISH NOVEMBER, 2024




if (funny == 5)


cout << "So funny!" << endl;


else if (funny == 10)


cout << "Seriously funny!" << endl;


else


{


cout << "ERROR!" << endl;


cout << "Incorrect choice!" << endl;


}


Rewrite the above if statement as a switch - ANSWER✔✔-switch (funny) {




case 5:


cout << "So funny!" << endl;


break




Copyright © Stuvia International BV 2010-2024 Page 4/76

The benefits of buying summaries with Stuvia:

Guaranteed quality through customer reviews

Guaranteed quality through customer reviews

Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.

Quick and easy check-out

Quick and easy check-out

You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.

Focus on what matters

Focus on what matters

Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!

Frequently asked questions

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

Satisfaction guarantee: how does it work?

Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.

Who am I buying these notes from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller KaylinHoffman. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for $13.49. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

81989 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy study notes for 14 years now

Start selling
$13.49
  • (0)
  Add to cart