Arduino Tinkercad

Arduino Tinkercad

3rd Grade

10 Qs

quiz-placeholder

Similar activities

Programming

Programming

1st - 10th Grade

10 Qs

rebotica

rebotica

KG - 12th Grade

13 Qs

average quizziz

average quizziz

3rd Grade

5 Qs

ECA quiz exam

ECA quiz exam

1st - 5th Grade

10 Qs

Tinkercad Tools

Tinkercad Tools

1st - 5th Grade

15 Qs

Repaso General

Repaso General

3rd Grade

8 Qs

Repaso de contenidos. Secuencia 15

Repaso de contenidos. Secuencia 15

3rd Grade

10 Qs

TINKERKAD BASICO

TINKERKAD BASICO

1st - 5th Grade

10 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?