⟩ Tell me how many HTML tags are should be used for the most simple of web pages?
8 total. 4 pairs of tags.
<HTML>
<HEAD>
<TITLE>Simplest page ever!</TITLE>
</HEAD>
<BODY>
Doesn’t get simpler than this.
</BODY>
</HTML>
8 total. 4 pairs of tags.
<HTML>
<HEAD>
<TITLE>Simplest page ever!</TITLE>
</HEAD>
<BODY>
Doesn’t get simpler than this.
</BODY>
</HTML>
As you know ruby provides four types of variables. List them and provide a brief explanation for each?
Please explain what is MVC and why do we use it?
Tell me an array [1,2,34,5,6,7,8,9], product it using a method?
Please explain each of the following operators and how and when they should be used ==, ===, eql?, equal?
Explain me what is the difference between Symbol and String?
Explain me what is the naming convention in Rails?
Can you explain me how Rails implements Ajax?
Tell me what is the difference between the Observers and Callbacks in Ruby on Rails?
Explain me what are the limits of Ruby on Rails?
Tell us in Ruby, it explains about the defined operator?