Free Ruby Association Ruby-Programmer-Gold Exam Questions

Become Ruby Association Certified with updated Ruby-Programmer-Gold exam questions and correct answers

Page:    1 / 32      
Total 160 Questions | Updated On: Jul 01, 2025
Add To Cart
Question 1

Review the following Ruby code snippet:def execute_operations(operations) operations.each do |operation| result = send(operation) break result if result == :error endend def operation1 :successend def operation2 :errorend def operation3 :successend result = execute_operations([:operation1, :operation2, :operation3]) What will be the value of result after executing this code?


Answer: B
Question 2

In Ruby, the use of blocks is a fundamental concept for iterating over collections and executing code repeatedly. Examine the following Ruby code snippet:numbers = [1, 2, 3, 4, 5]sum = 0numbers.each { |number| sum += number }doubled = numbers.map { |number| number * 2 } Based on this code, which two of the following statements are true regarding the use and functionality of blocks?


Answer: C,E
Question 3

Consider the following Ruby code snippet involving the implementation and usage of the Comparable module:class TimeRange include Comparable  attr_reader :start_time, :end_time  def initialize(start_time, end_time) @start_time = start_time @end_time = end_time end  def (other) return nil unless other.is_a?(TimeRange) [start_time, end_time] [other.start_time, other.end_time] endend time_range1 = TimeRange.new(10, 20)time_range2 = TimeRange.new(15, 25)time_range3 = TimeRange.new(10, 20) result1 = time_range1 time_range3  What will be the values of result1, result2, and result3, respectively?


Answer: B
Question 4

Review the following Ruby code snippet in the context of class inheritance and method access control:class Product  def initialize(name, price)    @name = name    @price = price  end  private  def price    @price  endendclass Electronic < Product  def discount_amount(discount_percentage)    price * discount_percentage / 100.0  end  def discounted_price(discount_percentage)    price - discount_amount(discount_percentage)  endendelectronic_item = Electronic.new("Laptop", 1000)result = electronic_item.discounted_price(20)What will be the value of result?


Answer: B
Question 5

Analyze the following Ruby code snippet that utilizes regular expressions for string processing:class EmailExtractor EMAIL_REGEX = /(\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b)/  def self.extract_from(text) text.scan(EMAIL_REGEX).flatten endend text1 = "Contact us at support@example.com for assistance"text2 = "Send your feedback to: feedback@example.co.uk and admin@example.com"text3 = "No emails here!" result1 = EmailExtractor.extract_from(text1)result2 = EmailExtractor.extract_from(text2)result3 = EmailExtractor.extract_from(text3) What will be the values of result1, result2, and result3, respectively?


Answer: A
Page:    1 / 32      
Total 160 Questions | Updated On: Jul 01, 2025
Add To Cart

© Copyrights DumpsCertify 2025. All Rights Reserved

We use cookies to ensure your best experience. So we hope you are happy to receive all cookies on the DumpsCertify.