First AVR Microcontroller Quiz

First AVR Microcontroller Quiz

University

7 Qs

quiz-placeholder

Similar activities

JSPS Competition Hackathon - HTML Language Grade 4 & 5

JSPS Competition Hackathon - HTML Language Grade 4 & 5

4th Grade - University

10 Qs

Portas Lógicas

Portas Lógicas

University

10 Qs

Basic HTML & HTML5

Basic HTML & HTML5

University

11 Qs

HTML

HTML

12th Grade - University

11 Qs

Programacion Extrema XP

Programacion Extrema XP

University

9 Qs

G5 HTML

G5 HTML

5th Grade - University

10 Qs

Kisi-Kisi IT SH-12

Kisi-Kisi IT SH-12

University

10 Qs

Test Form HTML 2

Test Form HTML 2

University

10 Qs

First AVR Microcontroller Quiz

First AVR Microcontroller Quiz

Assessment

Quiz

Computers

University

Hard

Created by

Ansgar Meroth

Used 3+ times

FREE Resource

AI

Enhance your content

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which is the prohibited state/ condition in S-R latch and needs to be avoided due to unpredictable nature of output?

a. S = R = 0

b. S = 0, R = 1

c. S = 1, R = 0

d. S = R = 1

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The truth table for an S-R flip-flop has how many VALID entries?

a) 1

b) 2

c) 3

d) 4

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What do you write if you want to set only PA3 in PORTA to 1?

PORTA = PA3;

PA3=PORTA;

PORTA |= (1<<PA3);

PORTA = (1<<PA3);

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What do you write if you want to set only PA3 in PORTA to 0?

PORTA = 0;

PA3=0;

PORTA |= (0<<PA3);

PORTA &= ~(1<<PA3);

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which register determines whether PORTB Pin 3 is an output or an input?

DDRB

PORTB

PINB

DPB

6.

MULTIPLE SELECT QUESTION

20 sec • 1 pt

Which are Registers for Digital IO of the Port B?

PORTB

PINB

DB

DDRB

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

On a positive edge-triggered S-R flip-flop, the outputs reflect the input condition when ________

a) The clock pulse is LOW

b) The clock pulse is HIGH

c) The clock pulse transitions from LOW to HIGH

d) The clock pulse transitions from HIGH to LOW