First AVR Microcontroller Quiz

First AVR Microcontroller Quiz

University

7 Qs

quiz-placeholder

Similar activities

Camada de Transporte

Camada de Transporte

University

9 Qs

IoT - Internet das Coisas

IoT - Internet das Coisas

University

12 Qs

R. 15. Просте програмування

R. 15. Просте програмування

University

10 Qs

RegEx in Python

RegEx in Python

University

10 Qs

Microcontroller module2

Microcontroller module2

University

10 Qs

Embedded Security Quiz No 1A (Bit Masking Fundas)

Embedded Security Quiz No 1A (Bit Masking Fundas)

University

10 Qs

Programação Web - PHP

Programação Web - PHP

University

12 Qs

Arduino Interface

Arduino Interface

University

9 Qs

First AVR Microcontroller Quiz

First AVR Microcontroller Quiz

Assessment

Quiz

Computers

University

Hard

Created by

Ansgar Meroth

Used 3+ times

FREE Resource

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