Exam 4: Implementing Conditional Logic
Exam 1: Ruby Basics45 Questions
Exam 2: Interacting With Ruby55 Questions
Exam 3: Working With Strings, Objects, and Variables50 Questions
Exam 4: Implementing Conditional Logic49 Questions
Exam 5: Working With Loops50 Questions
Exam 6: Working With Collections of Data46 Questions
Exam 7: Working With Regular Expressions50 Questions
Exam 8: Object-Oriented Programming50 Questions
Exam 9: File and Folder Administration49 Questions
Exam 10: Debugging50 Questions
Exam 11: Ruby on Rails Web Development51 Questions
Select questions type
Conditional expressions provide the ability to append a conditional check to the beginning of Ruby statements in order to control the conditional execution of the statement.
(True/False)
4.8/5
(34)
Like other modern programming languages, Ruby provides programmers with access to a range of comparison operators, not including ____.
(Multiple Choice)
4.8/5
(40)
Ruby provides programmers with access to several ways of applying conditional logic, including all of the following except ____.
(Multiple Choice)
4.8/5
(36)
The following example is an example of what type of conditional evaluation? print "Enter your age and press Enter: " answer = STDIN.gets answer.chop! puts "You must be 18 or older to play this game!" if answer.to_i
(Multiple Choice)
4.8/5
(37)
Some situations require a more complicated analysis than can be accomplished using an single conditional modifier or expression. One way of performing more complex conditional testing is through a processing called ____.
(Multiple Choice)
4.9/5
(39)
Flowcharts are often used in large projects in order to ____.
(Multiple Choice)
4.9/5
(40)
Using Ruby, you can create scripts that consist of a series of statements that are executed in sequential order. However, these scripts are often not suited to complex tasks.
(True/False)
4.8/5
(30)
Showing 41 - 49 of 49
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)