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

```Main
Declare A As Float
Declare B As Float
Set A = 4
Set B = 20
Call Math(A, B)
Write B + “ divided by “ + A + “ = “ + B/A
End Program
Subprogram Math(Float Num1 As Ref, Float Num2)
Set Num1 = 5
Set Num2 = 25
End Subprogram```

a. 20 divided by 4 = 5 b. 20 divided by 5 = 4
c. 25 divided by 5 = 5 d. 25 divided by 4 = 6.25

B

Computer Science & Information Technology

You might also like to view...

Log file analysis on a router reveals several unsuccessful telnet attempts to the virtual terminal (VTY) lines. Which of the following represents the BEST configuration used in order to prevent unauthorized remote access while maintaining secure availability for legitimate users?

A. Disable telnet access to the VTY lines, enable SHH access to the VTY lines with RSA encryption B. Disable both telnet and SSH access to the VTY lines, requiring users to log in using HTTP C. Disable telnet access to the VTY lines, enable SHH access to the VTY lines with PSK encryption D. Disable telnet access to the VTY lines, enable SSL access to the VTY lines with RSA encryption

Computer Science & Information Technology

A variable that will be used to hold only True or False values should be declared as a(n) ____ data type.

A. Boolean B. Decimal C. Integer D. Single

Computer Science & Information Technology