What will be the output?☝️
Anonymous Quiz
70%
Rescued: Oops\nFrom ensure
16%
Rescued: Oops
10%
From ensure
5%
Error
👎11🤯6
👎12
Forwarded from Ruby Interview | Ruby on Rails
🤯7🤔1
What does the << operator do with strings?
Anonymous Quiz
18%
HelloWorld
71%
Hello World
10%
Error
1%
nil
How do you correctly create an empty array?
Anonymous Quiz
24%
arr = []
6%
arr = Array.new
71%
Both options
0%
nil
What is the default return value of a method in Ruby if no explicit return is used?
Anonymous Quiz
44%
nil
1%
undefined
53%
The value of the last executed expression
2%
Error
🥱5
Which of the following is NOT a valid way to define a method in Ruby?
Anonymous Quiz
2%
def my_method; end
2%
def my_method(); end
0%
def my_method(param1, param2 = 5); end
96%
function my_method() {}
🤡3🤔2
Which SQL command is used to remove all records from a table without deleting the table itself?
Anonymous Quiz
56%
TRUNCATE
35%
DELETE
6%
DROP
4%
REMOVE
🤔2💊2
What is the default sorting order in SQL if ORDER BY is used without specifying ASC or DESC?
Anonymous Quiz
19%
DESC (Descending)
62%
ASC (Ascending)
9%
Depends on the database
9%
No default order
What is the difference between LEFT JOIN and INNER JOIN? #sql
Anonymous Quiz
16%
LEFT JOIN returns only matching rows, while INNER JOIN returns all rows
4%
LEFT JOIN returns only unmatched rows, while INNER JOIN returns all rows
77%
LEFT JOIN returns all rows from the left table, even if there's no match in the right table
3%
There is no difference
What is the main advantage of the CQRS (Command Query Responsibility Segregation) pattern in SQL databases?
Anonymous Quiz
4%
Reduces database size
73%
Separates read and write operations for better scalability
10%
Prevents deadlocks
12%
Ensures strict ACID compliance
Which pattern is used to wrap an object and add new behaviors dynamically at runtime?
Anonymous Quiz
12%
Adapter
10%
Proxy
72%
Decorator
5%
Bridge
Which pattern is used to allow incompatible interfaces to work together?
Anonymous Quiz
78%
Adapter
8%
Strategy
8%
Observer
7%
Factory
Which pattern allows an object to change its behavior dynamically depending on its state?
Anonymous Quiz
24%
Strategy
41%
State
27%
Observer
8%
Factory Method
Which component in MVC is responsible for updating the user interface?
Anonymous Quiz
10%
Model
16%
Controller
1%
Router
73%
View
Which HTTP method is typically used to create a new resource?
Anonymous Quiz
6%
GET
88%
POST
6%
PUT
0%
DELETE