31. What is the output of the folowing code? int count; int num = 2; for (count = 1; count < 2; count++) { num = num + 3; System.out.print (num + " "); } System.out.println(); %3D 11 a. 5 C. 258 b. 5 8 d. 5 8 11 32. What is value of x after the following code executes? int x = 0; int i; for (i = 0; i < 5; i++) x = 3 * x + i: a. 18 C. 179 58

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter11: Inheritance And Composition
Section: Chapter Questions
Problem 28SA
icon
Related questions
Question
31. What is the output of the folowing code?
int count;
int num 2;
for (count - 1; count < 2; count++)
num = num + 3;
System.out.print (num + " ");
{
System.out.println();
C. 2 5 8
d. 5 8 11
a. 5
b. 5 8
32. What is value of x after the following code executes?
int i;
for (i = 0; i < 5; i++)
x = 3 * x + 主;
%3D
a. 18
b. 58
d. None of these
33. What is the output of the following Java code?
int x = 3;
op
System.out.print (x + " ");
{
while (x >= 1);
System.out.printin ();
a. 3
b. 3 1
C. 3 1 -1
d. None of these
34. Which modifier is used to specify that a method cannot be used outside a class?
a. public
b. abstract
c. static
d. private
public static char methodHeading (int n, double num)
35. Based on the method heading above, what is the return type of the value returmed?
a.
static
int
c.
d. num
b. char
Transcribed Image Text:31. What is the output of the folowing code? int count; int num 2; for (count - 1; count < 2; count++) num = num + 3; System.out.print (num + " "); { System.out.println(); C. 2 5 8 d. 5 8 11 a. 5 b. 5 8 32. What is value of x after the following code executes? int i; for (i = 0; i < 5; i++) x = 3 * x + 主; %3D a. 18 b. 58 d. None of these 33. What is the output of the following Java code? int x = 3; op System.out.print (x + " "); { while (x >= 1); System.out.printin (); a. 3 b. 3 1 C. 3 1 -1 d. None of these 34. Which modifier is used to specify that a method cannot be used outside a class? a. public b. abstract c. static d. private public static char methodHeading (int n, double num) 35. Based on the method heading above, what is the return type of the value returmed? a. static int c. d. num b. char
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
InputStream
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning