Question
C programming

ID: (10 pt) Show the result of evaluating each of the following (a) (4 * 3)-= (3 * 4) 1. (b) 4 * (3223) * 4 (f) (13 < 7 Ⅱ 7 >#13 ) I 1 (13c7&& 7 >_ 13) 117<13&& 13>.7) (g) (13c7117>= 13 ) && (13 < 7 && 7 >= 13) && (7 < 13 && 13>-7) 2. (15 pt) For each of the following, determine how many times the function event0 will be called, and the final value of the loop variable i. # of times: final value of i: event ()i b) i=0; while (-i) ( #Of times:- final value of i: event ) C) for (i = 0; i < 5; i += 2) # of times : final value of i: for (j = 0; j < 5; j += 3) event )
0 0
Add a comment Improve this question Transcribed image text
Answer #1

2.a) here i = 4 the loop executes until i values becomes 0 so the loop iterates 5 times abd the value of i is 0

b) here

Initially i value is 0 so after loop iteration until normal console. Limit reached

So loop iterates infinite times and the value of i also infinity

So in my console the last value of i is - 2422

C) in this double loop the loop iterates 6 times and the value of i is 4

1)here the given expression is 4*3==3*4

So 12==12 which is true

B) here 4*(3==3)*4 which is also true because the association also the value Is true

e) first (h+i) value is evaluated and this value can be evaluated with && condition with null operator

F) (13<7||7>=13)

False or false is false

(13<7&&7>=13)

False and false is true

(7<13&&13>=7)

True and false is true

From statements 1 and 2 is false or true will evaluates true

Now from true or true will lead to TRUE

G)

13<7||7>=13)

False or false is false

(13<7&&7>=13)

False and false is true

(7<13&&13>=7)

True and false is true

From statements 1 and 2 is false and true will evaluates true

Now from true and true will lead to FALSE

Add a comment
Know the answer?
Add Answer to:
C programming Show the result of evaluating each of the following expressions. (a) (4 * 3)...
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
  • 1 int i, j, k; 2 for (i = 1; i <= 4; i++) 3 {...

    1 int i, j, k; 2 for (i = 1; i <= 4; i++) 3 { 4 j = 1; 5 while (j < 4) 6 { 7 if (i % 2 == j % 2) 8 k = 100*i + 10*j; 9 else 10 k = 100*j + 10*i; 11 j++; 12 } 13 } What will be the value of the variable k at the end of the third, sixth, ninth, and twelfth iteration of the while loop

  • Please provide correct answer as well as notes to how it was reached. This one is...

    Please provide correct answer as well as notes to how it was reached. This one is a real gotcha for many people, so you need to understand it. Be very careful if you are defining a function within a loop: the local variables from the closure do not act as you might first think. The line result.push( function() {alert(item + ' ' + list[i])} adds a reference to an anonymous function three times to the result array. If you are...

  • Evaluate Exponent: Declare a double variable called result and initialize it to 1.0; Ask the user...

    Evaluate Exponent: Declare a double variable called result and initialize it to 1.0; Ask the user for two values - one for the base, and the other for the exponent. If the exponent parameter is 0, give the user an error. You do not need to handle a negative exponent value. Otherwise, declare an integer variable called loop and initialize it to 0 Write a do while loop as follows: Inside the loop: Multiply the results times the number Increment...

  • 3 What is the result of calling a - ( rFunction(5, -1);? 4. Which of the...

    3 What is the result of calling a - ( rFunction(5, -1);? 4. Which of the following is NOT a part of a recursive func- tion? A. function call B. stopping case C. stopping criteria D. update for the test variable E. None of the above 5 A stack overtiow error is when the A. amount of memory in the stack exceeds the the memory available B. number at recursive steps needed to complete the tasks exceeds the available time....

  • 1. Determine the appropriate big-o expression for each of the following functions, and put your answer...

    1. Determine the appropriate big-o expression for each of the following functions, and put your answer in the table we have provided in section 2-1 of ps5_parti. We've included the answer for the first function. (Note: We're using the “ symbol to represent exponentiation.) a (n) = 5n + 1 b. b(n) = 5 - 10n - n^2 o c(n) = 4n + 2log (n) d. e. d(n) = 6nlog (n) + n^2 e(n) = 2n^2 + 3n^3 - 7n...

  • 25. A for loop has 3 expressions inside the parentheses. They are separated by the character....

    25. A for loop has 3 expressions inside the parentheses. They are separated by the character. 26. In a while loop, if the while-condition is never changed to false, the result is 27. I have said that there are three basic control structures in any C++ program. They are "sequence", and 28. L. )- The following statement will not result in a compiler error but it won't do what I want. if (counter = 24 ) 29. What statement in...

  • please answer quickly due soon. 5) If we call f10 with the following input s, a...

    please answer quickly due soon. 5) If we call f10 with the following input s, a variable p, and n= 5, what will be the values of p[i]'s after the function call? (the code is copied below) char s[] [20] = { "cat", "dog", "ant", "pig", "ants", "deer"}; Answer: when s[5][20] is called deer will. Be the result. 7. == 1. void fi (char s[] [20], int *p, int n) 2. int i, j, k; 3. р (int *) malloc...

  • Class: C++ Final Exam Dates Multiple Choice Identify the choice thar best completes the statement or...

    Class: C++ Final Exam Dates Multiple Choice Identify the choice thar best completes the statement or answer the question N 1. In s tructures, the computer repeats particular statements a certain number of times depending on some condition(s) a. looping C. selection b. branching d. sequence 2. What is the output of the following CH code? count = 1; num - 25; while (count < 25) numnum - 1: count++; cout << count << " " << num << endl;...

  • 1. What is the result of 79%7? a) 11 b) 2 c) 11.286 d) None of...

    1. What is the result of 79%7? a) 11 b) 2 c) 11.286 d) None of the above. 2. Which of the following statements is incorrect? a) a l=b+3; b) x = principal * (1+ (rate * time)); c) sum += number, d) final amount = x * (y + 1); 3. What will be the value of i, ifi is an integer variable after the operation, i = 11/2? 4. The statement m = 5; is equivalent to: 5....

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