100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached 4.6 TrustPilot
logo-home
Exam (elaborations)

COSC 1436 C++ UPDATED ACTUAL Exam Questions and CORRECT Answers

Rating
-
Sold
-
Pages
13
Grade
A+
Uploaded on
23-02-2025
Written in
2024/2025

COSC 1436 C++ UPDATED ACTUAL Exam Questions and CORRECT Answers Given an integer variable strawsOnCamel, write a statement that uses the auto-increment operator to increase the value of that variable by 1. - CORRECT ANSWER - strawsOnCamel++; Given an integer variable timer, write a statement that uses the auto-decrement operator to decrease the value of that variable by 1. - CORRECT ANSWER - timer--

Show more Read less
Institution
Cosc
Course
Cosc









Whoops! We can’t load your doc right now. Try again or contact support.

Written for

Institution
Cosc
Course
Cosc

Document information

Uploaded on
February 23, 2025
Number of pages
13
Written in
2024/2025
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

Content preview

COSC 1436 C++ UPDATED ACTUAL
Exam Questions and CORRECT Answers
Given an integer variable strawsOnCamel, write a statement that uses the auto-increment
operator to increase the value of that variable by 1. - CORRECT ANSWER -
strawsOnCamel++;


Given an integer variable timer, write a statement that uses the auto-decrement operator to
decrease the value of that variable by 1. - CORRECT ANSWER - timer--;


Consider this code: "int v = 20; --v; cout << v++;". What value is printed, what value is v left
with? - CORRECT ANSWER - 19 is printed, v ends up with 20


Consider this code: "int s = 20; int t = s++ + --s;". What are the values of s and t? - CORRECT
ANSWER - s is 20 and t cannot be determined


Given an int variable k that has already been declared, use a while loop to print a single line
consisting of 97 asterisks. Use no variables other than k. - CORRECT ANSWER - 1. while
(k<97)
2. {
3. cout<<"*";
4. k++;}


Given an int variable n that has already been declared and initialized to a positive value, and
another int variable j that has already been declared, use a while loop to print a single line
consisting of n asterisks. Thus if n contains 5, five asterisks will be printed. Use no variables
other than n and j. - CORRECT ANSWER - 1. j=n;
2. while(j>0){
3. cout<<"*";
4. j--;
5. }

, Given a string variable s that has already been declared, write some code that repeatedly reads a
value from standard input into s until at last a "Y" or "y"or "N" or "n" has been entered. -
CORRECT ANSWER - 1. while ((s!="Y"&&s!="y"&&s!="N"&&s!="n"))
2. {
3. cin>>s;
4. }


Given an int variable n that has already been declared, write some code that repeatedly reads a
value into n until at last a number between 1 and 10 (inclusive) has been entered. - CORRECT
ANSWER - 1. while(n>10||n<1){
2. cin>>n;
3. }


Given int variables k and total that have already been declared, use a do...while loop to compute
the sum of the squares of the first 50 counting numbers, and store this value in total. Thus your
code should put 1*1 + 2*2 + 3*3 +... + 49*49 + 50*50 into total. Use no variables other than k
and total. - CORRECT ANSWER - 1. total=0;
2. k=1;
3. do{
4. total+=k*k;
5. k++;
6. }while(k<=50);


Given an int variable n that has already been declared and initialized to a positive value, and
another int variable j that has already been declared, use a do...while loop to print a single line
consisting of n asterisks. Thus if n contains 5, five asterisks will be printed. Use no variables
other than n and j. - CORRECT ANSWER - 1. j=1;
2. do{
3. cout<<"*";
4. j++;

Get to know the seller

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
MGRADES Stanford University
View profile
Follow You need to be logged in order to follow users or courses
Sold
1123
Member since
2 year
Number of followers
104
Documents
68962
Last sold
9 hours ago
MGRADES (Stanford Top Brains)

Welcome to MGRADES Exams, practices and Study materials Just think of me as the plug you will refer to your friends Me and my team will always make sure you get the best value from the exams markets. I offer the best study and exam materials for a wide range of courses and units. Make your study sessions more efficient and effective. Dive in and discover all you need to excel in your academic journey!

3.8

178 reviews

5
76
4
31
3
47
2
9
1
15

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Frequently asked questions