Question


4. Using cin, Allocating Memory, and Writing Assignment Statements cin, Memory Allocation, and Assignment Statements show the
19. double x = 5.0; int y = 4; x= x + y 14; 20. double x = 5.0; int y = 4; y = x + y/4; 21. int count = 0; cout << ++count <<
0 0
Add a comment Improve this question Transcribed image text
Answer #1

Note : see explanation part for each variable name and value of variable at each statement

Ans 19) x = 6, y = 4

Explanation

double x =5.0; // x =5.0

int y = 4; // y = 4

x = x + y/4; // 5.0 + 1 = 6

Ans 20) x = 5, y = 6

Explanation

double x = 5 0; // x = 5.0

int y = 4; //

y = x + y/4; // 5.0 + 1 = 6

Ans 20)

1

1

2

Explanation

int count = 0 ; // count = 0

cout<<++count<<endl; // count = 0 + 1 prints 1 (pre increment)

count<<count++<<endl; // prints 1 count = 1+1 ( post increment)

cout<<count<< endl; print 2

/* I tried to provide sufficient explanation if doubt please comment otherwise please UPVOTE */

Add a comment
Know the answer?
Add Answer to:
4. Using cin, Allocating Memory, and Writing Assignment Statements cin, Memory Allocation, and Assignment Statements show...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • A. What is the output of the following C++ code fragment? (all variables are of type...

    A. What is the output of the following C++ code fragment? (all variables are of type int) int count-1; int y-100; while (count 3) y=y-1 ; count+t cout << y << endl; cout<< count <<endl What is the value of x after control leaves the following while loop? (all variables are of type int) B. int x0 while (x < 20) sum- sum+x cout << sum<< endl;

  • How can I fix that ? Can you please explain clearly ? main.cpp 2 3 using...

    How can I fix that ? Can you please explain clearly ? main.cpp 2 3 using namespace 4. 5 int main() std; unsigned int x = 0b01101100; 8 9 10 12 13 14 15 16 17 18 19 20 21 unsigned int z = 0x12345678; unsigned int e 0x7; unsigned int w = 0x87654321; unsigned int =0x123; int 1; int 92; int Q3; int Q4; Q1=x&y; cout << bitset<8> (Q1) << endl; Q2=-(x| y); cout << bitset<8>(Q2) << endl; Q3=(z...

  • What is the output?

    What is the output?

  • Introduction: One of the most important uses of pointers is for dynamic allocation of memory. In...

    Introduction: One of the most important uses of pointers is for dynamic allocation of memory. In C++ there are commands that let the user request a chunk of memory from the operating system, and use this memory to store data. There are also commands to return memory back to the O/S when the program is finished using the data. In this lab, we will explore some of the things that can go wrong when using dynamic memory and discuss how...

  • USLUR #include <iostream using namespace std; /** @return a reference to the smaller of the two...

    USLUR #include <iostream using namespace std; /** @return a reference to the smaller of the two arguments */ int& maxi(int&x, int& y) { return (x > y) 7X: y; int main() { int a = 10, b = 20; maxi(a,b) = 5; /* Assigns the value 5 to b. / cout << a << " " << b << endl; maxi(a,b) + 6; /* Increases a by 6. a is now 16. =/ cout << a <<"" <b << endl;...

  • Assignment Predator / Prey Objectives Reading from and writing to text files Implementing mathematical formulas in...

    Assignment Predator / Prey Objectives Reading from and writing to text files Implementing mathematical formulas in C++ Implementing classes Using vectors Using command line arguments Modifying previously written code Tasks For this project, you will implement a simulation for predicting the future populations for a group of animals that we’ll call prey and their predators. Given the rate at which prey births exceed natural deaths, the rate of predation, the rate at which predator deaths exceeds births without a food...

  • Example (4) Trace the following program and find the output >> SOURCE CODE #include <iostream.h> int...

    Example (4) Trace the following program and find the output >> SOURCE CODE #include <iostream.h> int main0 // define two integers int x-3; int y = 4; //print out a message telling which is bigger if (x >y) i cout << "x is bigger than y" << endl: else cout << "x is smaller than y" << endl; return 0; Example (5) Write a C++ program that takes from the user a number in SR (Saudi Riyal) then the program...

  • C++ Practice questions. Need a clear solution with explained for study Question 4: Consider the following...

    C++ Practice questions. Need a clear solution with explained for study Question 4: Consider the following C++ program int x, y, double z x-23; int y=42; int z=13;. x+= x -2; cout<<x<<","<<y<<endl; z=z* 3; y-- cout <<y<","<<z<<endl<<endl; int w; w=x + y + z; W -1 cout << w; Note: - You will need to do multiple computations (calculations throughout this question. - The use of a calculator is not necessary for these simple calculations. - Take your time and...

  • Convert the C program into a C++ program.Replace all C input/output statements with C++ statements (cin,...

    Convert the C program into a C++ program.Replace all C input/output statements with C++ statements (cin, cout, cin.getline) . Re-make the func function by the following prototype: void func( double, double &); #include int user_interface(); double func(double); void print_table(); int main (int argc, char *argv[]) {    print_table(user_interface());    return 0 ; } int user_interface(int val){    int input = 0;    printf("This function takes in x and returns an output\n");    printf("Enter Maximum Number of X:");    scanf("%d", &input);...

  • This is my code for a final GPA calculator. For this assignment, I'm not supposed to...

    This is my code for a final GPA calculator. For this assignment, I'm not supposed to use global variables. My question is: does my code contain a global variable/ global function, and if so how can I re-write it to not contain one? /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ * Title: Final GPA Calculator * Course Computational Problem Solving CPET-121 * Developer: Elliot Tindall * Date: Feb 3, 2020 * Description: This code takes grades that are input by the student and displays * their...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT