Which variable assignment method is useful when you need information from the user to complete the script?

A. Conditional
B. Direct assignment
C. Prompt
D. Positional parameter

Answer: C

Computer Science & Information Technology

You might also like to view...

Which of the following authentication services combines authentication and authorization in a use profile and use UDP?

A. LDAP B. Kerberos C. TACACS+ D. RADIUS

Computer Science & Information Technology

What would display if the following statements are coded and executed and the user enters 3 twice at the prompts?

``` Display "Enter your age:" Input age Do Display "Impossible! Enter an age greater than 0:" Input age While age <=0 Display "Thank you." ``` a. Thank you. b. Impossible! Enter an age greater than 0: c. Thank you. Impossible! Enter an age greater than 0: d. Impossible! Enter an age greater than 0: Thank you.

Computer Science & Information Technology