Question: What two delimiters are used for blocks?
Answer: Curly braces {…} and “do”…”end” Bonus: coding convention is to use curly braces if the code will fit on one line and “do”…”end” syntax if the block contains multiple lines.
Question:
What two delimiters are used for blocks? Answer:
Curly braces {…} and “do”…”end” Bonus: coding convention is to use curly braces if the code will fit on one line and “do”…”end” syntax if the block contains multiple lines. Source: CoolInterview.com
If you have the better answer, then send it to us. We will display your answer after the approval.
Rules to Post Answers in CoolInterview.com:-
There should not be any Spelling Mistakes.
There should not be any Gramatical Errors.
Answers must not contain any bad words.
Answers should not be the repeat of same answer, already approved.
Answer should be complete in itself.
Related Questions
View Answer
What’s the difference in scope for these two variables: @name and @@name?