An unhandled error has occurred. Reload X
मुख्य सामग्री पर जाएं

Ruby Association Certified Ruby Programmer (Silver) Practice Test

112 प्रश्न उपलब्ध

Ruby programming certification covering Ruby syntax, data structures, object-oriented programming, blocks, iterators, and standard library usage. Administered by Ruby Association. Key domains include Built-in libraries, Object orientation and Syntax. The exam consists of 50 questions over 90 minutes.

सर्टिफिकेशन परीक्षा
50 परीक्षा प्रश्न
1 घंटा 30 मिनट समय सीमा
अभ्यास बैंक
112 अभ्यास प्रश्न
1 घंटा 52 मिनट अभ्यास समय
अभ्यास शुरू करें
प्रश्न बैंक 112 आधिकारिक उद्देश्यों के विरुद्ध जाँचे गए अभ्यास प्रश्न.
qf-import112 अभ्यास प्रश्नब्लूप्रिंट 1.0बैंक 2026-05-04 को अपडेट हुआ

नमूना प्रश्न

पूरी परीक्षा कैसी है देखने के लिए कुछ प्रश्न आज़माएं।

Syntax

A library maintainer is reviewing guard clauses in a Ruby 3.1.x script for a CSV cleanup gem. The code treats only false and nil as falsey: values = ["", 0, false, nil] kept = values.select { |value| value } p kept Which result should the reviewer expect?

Object orientation

A bootcamp team is deciding whether a module method should become an instance method or a singleton method in Ruby 3.1.x: module Auditable def audit_tag = "ok" end class Invoice include Auditable end p [Invoice.respond_to?(:audit_tag), Invoice.new.respond_to?(:audit_tag)] What is printed?

Syntax

A bootcamp team is checking constant behavior in Ruby 3.1.x: NAME = "ruby" NAME.upcase! p NAME What is printed?

Built-in libraries

A library maintainer is sorting records in Ruby 3.1.x and needs stable intent, not string comparison: rows = [{name: "b", score: 7}, {name: "a", score: 9}, {name: "c", score: 5}] p rows.sort_by { |row| [row[:score], row[:name]] }.map { |row| row[:name] } What is printed?

Syntax

A payments team uses parallel assignment to split a small Ruby 3.1.x tuple: first, *middle, last = [2, 4, 6, 8] p [first, middle, last] What is printed?

करियर के अवसर और वेतन
मध्य वेतन: $135,980US मार्केट– Software Developers

स्रोत: BLS Occupational Employment and Wage Statistics, May 2025 -- Software Developers (SOC 15-1252), US national. Occupation median, not a certification salary. (2025)

Software Developers

जब तक लोकल रेंज न दिखे, ये US मार्केट के आंकड़े हैं।

परीक्षा ब्लूप्रिंट

01Built-in libraries
02Object orientation
03Syntax

परीक्षा विवरण RUBY-SILVER | 1 घंटा 30 मिनट

अक्सर पूछे जाने वाले प्रश्न

मैंने एक साल से Ruby on Rails का उपयोग किया है। क्या यह परीक्षा मेरे लिए है?

क्या मुझे Silver परीक्षा में प्रयास करने से पहले कितनी हाथों-हाथ कोडिंग अनुभव होना चाहिए?

क्या इसमें चालाक प्रश्न हैं?

क्या Ruby API दस्तावेज़ को याद करना आवश्यक है?

किस एकल सबसे महत्वपूर्ण क्षेत्र पर ध्यान केंद्रित करना चाहिए?