Arduino Debug

Arduino Debug

11th Grade

15 Qs

quiz-placeholder

Similar activities

ARDUINO

ARDUINO

9th - 12th Grade

10 Qs

Scientific Notation and Sig Figs

Scientific Notation and Sig Figs

10th - 12th Grade

10 Qs

Input/Output, Analog/Digital

Input/Output, Analog/Digital

9th - 12th Grade

20 Qs

Ethical Principles in Health Science Vocabulary Practice

Ethical Principles in Health Science Vocabulary Practice

9th - 12th Grade

16 Qs

Psychology: Cognition

Psychology: Cognition

10th - 12th Grade

12 Qs

Java Основи

Java Основи

11th Grade - University

16 Qs

Blood Spatter Quiz Review

Blood Spatter Quiz Review

11th - 12th Grade

20 Qs

Serial Killer Quiz

Serial Killer Quiz

9th - 12th Grade

20 Qs

Arduino Debug

Arduino Debug

Assessment

Quiz

Science

11th Grade

Hard

Created by

ZAINAL ARIFIN

Used 5+ times

FREE Resource

15 questions

Show all answers

1.

FILL IN THE BLANK QUESTION

1 min • 1 pt

void setup()

{

  // put your setup code here, to run once:

 ...

  Serial.print("Hello World");

}

void loop()

{

  // put your main code here, to run repeatedly:

}

2.

FILL IN THE BLANK QUESTION

1 min • 1 pt

void setup()

{

  // put your setup code here, to run once:

  Serial.begin(9600);

  ...("Hello World");

}

void loop()

{

  // put your main code here, to run repeatedly:

}

3.

FILL IN THE BLANK QUESTION

1 min • 1 pt

void setup()

{

  // put your setup code here, to run once:

  Serial.begin(9600);

  //Serial.print("Hello World");

 ... x;

  x=10;

  Serial.print(x);

}

void loop()

{

  // put your main code here, to run repeatedly:

}

4.

FILL IN THE BLANK QUESTION

1 min • 1 pt

void setup()

{

  // put your setup code here, to run once:

  Serial.begin(9600);

  //Serial.print("Hello World");

  ... x;

  x=10.5;

  Serial.print(x);

}

void loop()

{

  // put your main code here, to run repeatedly:

}

5.

FILL IN THE BLANK QUESTION

1 min • 1 pt

void setup()

{

  // put your setup code here, to run once:

  Serial.begin(9600);

  //Serial.print("Hello World");

  ... x;

  x="abc";

  Serial.print(x);

}

void loop()

{

  // put your main code here, to run repeatedly:

}

6.

FILL IN THE BLANK QUESTION

1 min • 1 pt

void setup()

{

  // put your setup code here, to run once:

  Serial.begin(9600);

  //Serial.print("Hello World");

  ... x;

  x='a';

  Serial.print(x);

}

void loop()

{

  // put your main code here, to run repeatedly:

}

7.

FILL IN THE BLANK QUESTION

1 min • 1 pt

void setup()

{

  // put your setup code here, to run once:

  Serial.begin(9600);

  int a;  

  for (...)

  {

    Serial.print(a);

    Serial.print(" ");

  }

}

void loop()

{

  // put your main code here, to run repeatedly:

}

OUTPUT :

0 1 2 3 4 5

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?