Consider the following code:
int Num1 = 5.2;
int Num2 = 3;
int Result;
void setup() {
// put your setup code here to run once:
Serial.begin(9600);
Result = Num1 * Num2;
}
void loop() {
// put your main code here to run repeatedly:
}
What is the result value after executing the code? Is it correct? Justify your answer.