100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
CSCI 240 - Quizzes 6 - 9 Questions And Answers Latest Updates $7.99   Add to cart

Exam (elaborations)

CSCI 240 - Quizzes 6 - 9 Questions And Answers Latest Updates

 2 views  0 purchase
  • Course
  • CSCI 240
  • Institution
  • CSCI 240

Write a C++ statement that takes the digit character in the char variable ch and changes it to its integer representation and saves the result in the integer variable intVal. So if ch contains '4', then intVal should contain the value 4. Assume that ch and intVal have been properly declared. - �...

[Show more]

Preview 1 out of 4  pages

  • October 10, 2024
  • 4
  • 2024/2025
  • Exam (elaborations)
  • Questions & answers
  • CSCI 240
  • CSCI 240
avatar-seller
ACADEMICMATERIALS
CSCI 240 - Quizzes 6 - 9
Write a C++ statement that takes the digit character in the char variable ch and changes
it to its integer representation and saves the result in the integer variable intVal. So if ch
contains '4', then intVal should contain the value 4. Assume that ch and intVal have
been properly declared. - ✔️✔️intVal = ch - '0';


What will happen if a char is cout'd as an int? - ✔️✔️the ASCII value of the character
will be displayed

What is the ASCII value of the character '1'? - ✔️✔️49

What is the ASCII value of 'c'? - ✔️✔️99

Write a cout statement to display the ASCII value of the character stored in a char
variable called ch. Assume that ch has been properly declared and contains a value. -
✔️✔️char ch;
cout << (int)ch;

Explain what tolower() does to a character. The answer should include the argument(s)
that are passed to tolower() (if any) and what it returns. - ✔️✔️tolower() takes a
character that is passed


Write a switch statement to print out a string depending on the value of a char variable
called ch. If
~ ch is 'a' print "excellent"
~ ch is 'b' print "good"
~ ch is 'c' print "ok"
~ if ch is anything else, print "invalid"
Assume that ch has been properly declared and contains a value. - ✔️✔️switch (ch)
{
case 'a': cout << "excellent";
break;
case 'b': cout << "good";
break;
case 'c': cout << "ok";
break;
default: cout << "invalid";
}

Declare an array named AR to hold 4 integers and fill it with the numbers 2, 4, 6, and 8.
- ✔️✔️int AR[4] = { 2, 4, 6, 8};

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 ACADEMICMATERIALS. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

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

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

80630 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
$7.99
  • (0)
  Add to cart