Question

Evaluate 20 % 8          - (2, 4, 6, or 8)? valuate 10 % 2          ...

  1. Evaluate 20 % 8          - (2, 4, 6, or 8)?
  1. valuate 10 % 2           - (0, 2, 4, 5)?

  1. Given the line of code: x = 5 + 5 / 5;     what value will be stored in x? - (2, 5, 6, or 10)?

  1. Given the following code:

int a,b=10,c=3;

a = b/c;

what value will be stored in the variable a?         - (0, 3, 3.333333, or 4)?

  1. Given the following code:

            Float a, b = 10.0, c = 3.0;

            A = b/c’

What value will be stored in the variable a?        -(0, 3, 3.333333, or 4)?

0 0
Add a comment Improve this question Transcribed image text
Answer #1

The solution to the above problem is:-

1.) 20 % 8 is 4.

2.)10 % 2 is 0.

3.) x = 6,as 5+ 5/5 i.e, 5+1 = 6.

4.)

int a,b=10,c=3;

a = b/c;

solution to the above code is 3. Because the data type of a is int.

5.)

float a, b = 10.0, c = 3.0;

a = b/c

sol:) as a's data type is float the value is 3.333333 is stored in it.

If any problem in understanding plz comment. I will try to explain. Thank you.

Add a comment
Know the answer?
Add Answer to:
Evaluate 20 % 8          - (2, 4, 6, or 8)? valuate 10 % 2          ...
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
  • Which of the following are valid array declarations? a. int[] array- new int[10]; b. double [array...

    Which of the following are valid array declarations? a. int[] array- new int[10]; b. double [array double[10]; c. charl charArray "Computer Science"; None of the above Analyze the following code: class Test public static void main(Stringl] args) System.out.println(xMethod(10); public static int xMethod(int n) System.out.println("int"); return n; public static long xMethod(long n) System.out.,println("long"); return n The program displays int followed by 10 The program displays long followed by 10. The program does not compile. None of the above. tions 3-4 are...

  • Consider the following code segment. int[]arr={1, 2, 3, 4, 5, 6, 7, 8}; for(int k=3; k<arr.length-1;...

    Consider the following code segment. int[]arr={1, 2, 3, 4, 5, 6, 7, 8}; for(int k=3; k<arr.length-1; R++ arr[k]-arr[k+1]; What are the contents of arr as a result of executing the code segment? a. {1, 2, 3, 5, 6, 7, 8, 8) b. {2, 2, 4, 5, 6, 7, 8, 8} C. {2, 4, 6, 5, 6, 7, 8,8} d. {4, 2, 4, 4, 6, 7, 8, 8) e. {6, 6, 4, 5, 6, 7, 8, 8} int) arr={7, 2.5, 3.0,...

  • 7. What is the value of this expression: 2.5 2/4 A. 2.5 B 3.0 C. 1...

    7. What is the value of this expression: 2.5 2/4 A. 2.5 B 3.0 C. 1 D. 1.125 In the following 4 questions, assume we have the code segment below: int numberl 5 number2 10; double number3 3.0, number4 2.5 8. What is the value of the variable x1 after this statement is executed? double x1-numberl /number2: A. 0.5 B. 1 C. 0 D. 2 What is the value of the variable x2 after this statement is executed? double x2...

  • Question 1 What is the value of x after the following int x = 5; x++;...

    Question 1 What is the value of x after the following int x = 5; x++; x++; x+=x++; A)14 B)10 C)13 D)15 Question 2 The last line in value returning function (before the }) should contain the word return. True False Question 3 This contains three parts: Void or Data Type the name optional parameter list A)Menu System B)Function Header C)Switch Question 4 What is a variable? A)a pointer B)a place in memory to hold data C)int D)a computer programming...

  • Quiz Question 1 (1 point) Saved The maximum value for an int is: Question 1 options:...

    Quiz Question 1 (1 point) Saved The maximum value for an int is: Question 1 options: 2147483647 65535 32767 9223372036854775804 Question 2 (1 point) A float has ____ decimal places of accuracy. Question 2 options: 15 none     7 3 Question 3 (1 point) It is a good practice to compare floats and doubles with ==. Question 3 options: True False Question 4 (1 point) Strings are reference data types. Question 4 options: True False Question 5 (1 point) Value data...

  • 9) 10 pts. What is the final result that will be stored in "a? double a...

    9) 10 pts. What is the final result that will be stored in "a? double a = 3. double b = 12. double c = 4 .; a 3. For 10 & 11 use the following function prototype: void Funl (int a, float c, double d); 10) 5 pts. Write the function call. Include the variable definitions. 11) 5 pts. Write the function header with an empty function body. 12) 5 pts The following code does NOT get a runtime...

  • 1,4,5 Multiple Choice (Find Output or Fix Error) 1. What will be the final value of...

    1,4,5 Multiple Choice (Find Output or Fix Error) 1. What will be the final value of product 7、 inta,b; Given above code, what will be the value of a andb if user types: 31 42 nt producr- 3, product 3 prodct while (product70) a) 81 31 What is the output of the following code? char Grade8 27 8. d) Error in do-while code 2. This loop is a good choice when you know how many times you want the loop...

  • 1. (3% each) Given the following declarations: int a-4 int b-6: float5.0 Evaluate the following Java...

    1. (3% each) Given the following declarations: int a-4 int b-6: float5.0 Evaluate the following Java expressions: a) (5 + a / b) % 2- b) c / (10 % b) C) 5 * 300 7 + 8 / 3-6

  • for C++ 10.) (8) Indicate which of the following assignment statements are legal if x is...

    for C++ 10.) (8) Indicate which of the following assignment statements are legal if x is an int variable and y is a float variable. Show what is stored in the receiving variables if the statement is correct: а, у х: c. y (float) x; d. x (int) y r++ A homeowner would like to calculate the idla of a rectangle

  • Consider the following code: 1. float foo (int a, int b, int c, int d, float...

    Consider the following code: 1. float foo (int a, int b, int c, int d, float e) { 2. float e; 3. if (a == 0) { 4. return 0; 5. } 6. int x = 0; 7. if ((a==b) || ((c == d) && bug(a) )) { 8. x=1; 9. } 10. e = 1/x; 11. return e; 12. } Function bug(a) should return a value of true when passed a value of a=1. Build: • a test suite...

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