Ruby Interview | Ruby on Rails – Telegram
Ruby Interview | Ruby on Rails
476 subscribers
14 photos
2 links
The Ruby Interview channel is a resource for preparing for Ruby developer interviews.

It features questions, problem-solving solutions, and interview tips.

Contact:
@Connor_1992
Download Telegram
What is the output of the following Ruby code?

If someone has not decided, there will be an explanation in 5 minutes
What is the output of the following Ruby code?
Anonymous Quiz
41%
[2, 3, 4]
52%
[1, 2, 3]
6%
No output, error occurs
1%
[1, 2, 3, 4]
Which method in Ruby is used to join two arrays?
Anonymous Quiz
23%
merge
2%
combine
67%
+
8%
join
Which of the following commands will delete a table permanently?
Anonymous Quiz
9%
DELETE TABLE table_name;
89%
DROP TABLE table_name;
2%
REMOVE TABLE table_name;
0%
CLEAR TABLE table_name;
How do you retrieve all users whose name starts with "A" using ActiveRecord?
Anonymous Quiz
77%
User.where("name LIKE 'A%'")
8%
User.find_by(name: 'A%')
4%
User.get_all(name: /^A/)
10%
User.select("name LIKE 'A%'")
x = 5
y = 10
x, y = y, x
puts "#{x} #{y}"

The quiz will be in 1 minute
👍31
What will be the output of the following code?☝️
Anonymous Quiz
5%
5 10
90%
10 5
3%
Error
2%
10 10
array = [1, 2, 3, 4]
array.each do |num|
next if num.even?
print num
end

The quiz will be in 1 minute
What will be the output? ☝️
Anonymous Quiz
3%
1234
28%
24
67%
13
1%
Error
x = [1, 2, 3]
y = x.map { |n| n * 2 }
x[0] = 10
puts "#{x} #{y}"

The quiz will be in 1 minute
What will be printed when the following code is executed? ☝️
Anonymous Quiz
88%
[10, 2, 3] [2, 4, 6]
3%
[10, 2, 3] [1, 2, 3]
5%
[1, 2, 3] [2, 4, 6]
5%
Error
The quiz will be in 1 minute

A - right answer
👍2👎2