Arduino Tinkercad

Arduino Tinkercad

3rd Grade

10 Qs

quiz-placeholder

Similar activities

Contact sensors

Contact sensors

KG - Professional Development

6 Qs

G9 cp1 Review

G9 cp1 Review

1st Grade - University

11 Qs

computers

computers

3rd Grade

15 Qs

Arduino

Arduino

KG - University

8 Qs

Robótica y Emprendimiento 5

Robótica y Emprendimiento 5

3rd Grade - University

13 Qs

Snap Circuits 1

Snap Circuits 1

2nd - 3rd Grade

11 Qs

Day#7

Day#7

1st Grade - University

12 Qs

Understanding Computers

Understanding Computers

3rd - 4th Grade

14 Qs

Arduino Tinkercad

Arduino Tinkercad

Assessment

Quiz

Computers

3rd Grade

Medium

Created by

Damilola Jimoh

Used 2+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does LED stand for?

Laser Emitting Diode

Light Emitting Device

Light Emitting Diode

Light Emitting Display

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the purpose of an LED in a circuit?

The purpose of an LED in a circuit is to emit light.

To increase the voltage in a circuit.

To store electrical energy.

To act as a resistor in the circuit.

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you connect an LED to an Arduino?

Connect the cathode of the LED to a digital pin and the anode to ground.

Connect the LED directly to the power supply without a resistor.

Connect the anode of the LED to a digital pin and the cathode to ground through a resistor.

Connect both the anode and cathode of the LED to the same digital pin.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is Tinkercad used for?

Tinkercad is used for web development.

Tinkercad is used for graphic design.

Tinkercad is used for video editing.

Tinkercad is used for 3D design, modeling, and electronics simulation.

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you simulate a circuit in Tinkercad?

Add components only without connecting them.

Create a new circuit, add components, connect them, and start the simulation.

Start the simulation without creating a circuit.

Use only one component to simulate the circuit.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the function of a resistor in an LED circuit?

The function of a resistor in an LED circuit is to limit the current flowing through the LED.

To change the color of the LED.

To store energy for the LED.

To increase the voltage across the LED.

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What code is used to make an LED blink on Arduino?

void setup() { pinMode(LED_BUILTIN, OUTPUT); } void loop() { digitalWrite(LED_BUILTIN, HIGH); delay(1000); digitalWrite(LED_BUILTIN, LOW); delay(1000); }

void setup() { pinMode(LED_BUILTIN, OUTPUT); } void loop() { digitalWrite(LED_BUILTIN, HIGH); delay(2000); digitalWrite(LED_BUILTIN, LOW); delay(500); }

void setup() { pinMode(LED_BUILTIN, OUTPUT); } void loop() { analogWrite(LED_BUILTIN, 128); delay(1000); }

void setup() { pinMode(LED_BUILTIN, INPUT); } void loop() { digitalWrite(LED_BUILTIN, LOW); delay(500); }

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?