Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

Question 1 What is the output of the code corresponding to the following pseudoc

ID: 3712033 • Letter: Q

Question

Question 1

What is the output of the code corresponding to the following pseudocode? (In the answer options, new lines are separated by commas.)

Declare X As Integer

Declare Y As Integer

For (X = 1; X <=2; X++)

For (Y = 3; Y <= 4; Y++)

Write X * Y

End For(Y)

End For(X)

Question 2

Which of the following loops cannot be nested in a For loop?

Question 3

What is the output of the code corresponding to the pseudocode shown?

Declare G As Integer

Declare H As Integer

Set G = 7

While G <= 8

Set H = 6

While H <= 7

Write G + H

Set H = H + 1

End While(H)

Set G = G + 1

End While(G)

Question 4

What will be displayed after code corresponding to the following pseudocode is run?

Declare A As Integer

Declare B As Integer

Declare C As Integer

Set A = 3

While A <= 6

Set B = (2 * A) – 1

Write B

Set C = A

While C <= (A+1)

        Write C

        Set C = C + 1

End While(C)

Set A = A + 2

End While(A)

Question 5

What is the output of code corresponding to the following pseudocode? (In the answer options, new lines are separated by commas.)

Declare A As Integer

Declare B As Float

Set A = 2

While A <= 3

Set B = 2.5 * A

Write B

Set B = Int(B)

Write B

Set A = A + 1

End While

Question 6

If MyNumber = 7.82, what is the value of Int(MyNumber/2)+ 0.5?

Question 7

What is wrong with the following pseudocode?

  Declare Count As Integer

Declare TheNumber As Integer

Set TheNumber = 12

For (Count = 10; Count>TheNumber; Count--)

      Write TheNumber + Count

End For

Question 8

Which statement would produce an output of one of the following numbers:

               5, 6, 7, 8, 9, 10

Question 9

What is the output of the code corresponding to the following pseudocode? (In the answer options, new lines are separated by commas.)

Declare Y As Integer

Declare X As Integer

For (Y = 1; Y <=2; Y++)

For (X = 1; X <= 2; X++)

Write Y * X

End For(X)

End For(Y)

Question 10

What does the following program segment do?

Declare Count As Integer

Declare Sum As Integer

Set Sum = 0

For (Count = 1; Count < 50; Count++)

      Set Sum = Sum + Count

End For

Question 11

What is the first and last output corresponding to the following pseudocode? (Note, this question has 2 parts; you must answer each part correctly to receive full marks. Enter only the numbers in the space provided.)

The first iteration displays the value  .

The last iteration displays the value   .

For (N = 4; N <= 9; N + 4)

Set X = 10/N

Write X

Set X = Int(X)

Write X

End For

Question 12

Complete the test condition for the following pseudocode that simulates flipping a coin 25 times by generating displaying 25 random integers, each of which is either 1 or 2. (Note, this question has 2 parts; you must answer each part correctly to receive full marks. Enter only the numbers in the space provided.)

Declare Coin As Integer

Declare X As Integer

For (X =  ; X <=  ; X++)

     Set Coin = Floor(Random() * 2) + 1

     Select Case Of Coin

          Case 1:

               Write “Heads”

               Break

          Case 2:

               Write “Tails”

               Break

          Default: Break

     End Case

End For

Question 13

Complete the test condition for the following pseudocode that validates the input data.

Declare Number As Float

Repeat

     Write “Enter a negative number: “

     Input Number

Until Number __________

Question 14

If a counter named MyCount in a For loop has the initial value of 5 on the first pass and we want it to go through 4 iterations, increasing its value by 5 on each pass, the test condition would be written as __________.

Question 15

Complete the random generator code for the following pseudocode that simulates rolling a die 10 times by generating and displaying 10 random integers, with a range of 1 to 6. (Note, this question has 2 parts; you must answer each part correctly to receive full marks. Enter only the numbers in the space provided.)

Declare Die, X As Integer

For (X = 1; X <= 10; X++)

     Set Die = Floor(Random()*  )+

     Write “Die face: “ + Die

End For

Question 16

When one loop is contained within another loop, we say these are __________ loops.

Flag this Question

Question 171 pts

What is the first output corresponding to the following pseudocode? (Note, this question has 2 parts; you must answer each part correctly to receive full marks. Enter only the numbers in the space provided.)

The first iteration displays the value   and  

   Declare M As Integer

   Declare P As Integer

   Repeat

        Set P = 1

        While P < 4

             Write M + “ and “ + P

             Set P = P + 1

        End While(P)

        Set M = M + 1

   Until M = 3

Question 18

What is the first and second output corresponding to the following pseudocode?

(Note, this question has 2 parts; you must answer each part correctly to receive full marks. Enter only the numbers in the space provided.)

The first iteration displays the value   .

The second iteration displays the value  .

Declare I, J as Integer

For (I = 1; I <= 3; I++)

For (J = 4; J <= 5; J++)

Write I * J

End For (J)

End For (I)

Question 19

If a counter named MyCount in a For loop has the value of 5 on the first pass, 10 on the second pass, 15 on the third pass, and so on, the increment would be written as __________. (Do not include spaces in your answer).

Question 20

The ____________ statement and <NL> indicator are used to control when output should be displayed on a new line.

Question 21

How many times will the Write statement be executed based on the following pseudocode?

Declare HelloCount As Integer

Set HelloCount = 1

Repeat

Repeat

Write "Hello"

Set HelloCount = HelloCount = HelloCount + 1

Until HelloCount <=1

Until HelloCount == 2

Question 22

The statement

                    If Int(Number) != Number Then...

checks to see if the value of Number is a(n) _________.

Question 23

Complete the test condition to allow the following pseudocode that validates the input data.

Declare Number As Float

While Number ______ Int(Number)

     Write “Enter an integer: “

     Input Number

End While

Question 24

In a program with nested loops, the outer loop is completed __________  (before/after) the inner loop.

Question 25

The function that returns the number of characters in a string is the __________ function. (For your answer, enter only the function, not any parameters that the function can carry.)

3, 4, 6, 8

Explanation / Answer

As per Chegg policy, I am answering only first 4 questions. In order to get the solution of remaining questions, please upload them again.

Q1.) Option a is the correct option. As x iterates from 1 to 2 and value of Y varies from 3 to 4 which gives output of

3, 4, 6, 8.

Q2.) As per my understanding, all of these loops can be nested in a for loop. Hence option d is the correct oprion

Q3.) Option b is the correct option. It results in 13, 14, 14, 15

Q4.) It resutls in 5, 3, 4, 9, 5, 6. Hence option b is the correct option.

Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
Chat Now And Get Quote