1.

What is the correct execution process of an Arduino code.(a) Editor->Compiler->Preprocessor(b) Editor->Preprocessor->Compiler(c) Preprocessor->Editor->Compiler(d) Compiler->Preprocessor->EditorThis question was posed to me in an interview.Question is taken from Preprocessing topic in chapter Arduino Programming of Arduino

Answer»

Right choice is (B) Editor->Preprocessor->Compiler

The best I can explain: The code that is written is FIRST DONE so with the help of the editor. WITHOUT the editor there will be no place where the programmer can write his or her code. After that the code is handed over to the preprocessor and finally the compiler which translates the code into the ARDUINO’s Assembly Instruction Set.



Discussion

No Comment Found

Related InterviewSolutions