MCQOPTIONS
Saved Bookmarks
This section includes 657 Mcqs, each offering curated multiple-choice questions to sharpen your Testing Subject knowledge and support exam preparation. Choose a topic below to get started.
| 1. |
first_name,Last_name=gets.chomp,gets.chomp is the correct way to get the input from the user. |
| A. | True |
| B. | False |
| Answer» B. False | |
| 2. |
Why is gets not preferred instead of gets.chomp? |
| A. | Gets add an extra new line while chomp removes it |
| B. | Gets remove an extra new line |
| C. | Chomp erases the value stored in the variable |
| D. | All of the mentioned |
| Answer» B. Gets remove an extra new line | |
| 3. |
Why is the library function puts used for? |
| A. | Prints whatever is given and print it to the screen |
| B. | Prints whatever is given and insert a new(blank) line |
| C. | Gets input from the user |
| D. | None of the mentioned |
| Answer» C. Gets input from the user | |