Solved

Suppose That You Have the Declaration: Int Num = 94;

Question 5

Multiple Choice

Suppose that you have the declaration: int num = 94; double x = 73.92; String str = "Programming"; What is the output of the following statements? System.out.println("123456789012345678901234567890") ; System.out.printf("%5d%6.2f %15s%n", num, x, str) ;


A) 123456789012345678901234567890.
B) 123456789012345678901234567890.0
C) 1234567890123456789012345678900
D) 1234567890123456789012345678904

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions