InterviewSolution
Saved Bookmarks
| 1. |
What is the recipe for compiling Assembly Source Code in the Arduino IDE?(a) recipe.S.o.pattern(b) recipe.A.n.pattern(c) recipe.S.b.pattern(d) recipe.S.i.patternI have been asked this question at a job interview.I would like to ask this question from Uploading topic in section Arduino Programming of Arduino |
|
Answer» CORRECT option is (a) recipe.S.o.pattern For explanation I would say: A recipe in Computer Science is the steps involved in creating something. Here the compiler has a predetermined “Recipe” or way to deal with Assembly Source Codes when the need ARISES. Now since the Arduino IDE can also COMPILE C and C++ source files, it also has a predetermined way to deal with those file types as WELL. |
|