Question.6
What will happen after we try writing to EEPROM as follows
EEPROM.put(1023, 0xFFFFH)
Select Answer
The write operation will fail silently.
It will write the first byte to address 1023 and the second byte to address 0.
It will cause the Arduino to reset.
It will only write the first byte to 1023 and then overflow causing the address out of the limit.
The program will compile but will throw an error at runtime.