First AVR Microcontroller Quiz

First AVR Microcontroller Quiz

University

7 Qs

quiz-placeholder

Similar activities

Analog and Digital Transmission

Analog and Digital Transmission

University

10 Qs

Portas Lógicas

Portas Lógicas

University

10 Qs

Portas Lógicas

Portas Lógicas

University

10 Qs

Quizz3 Ciencia de Datos

Quizz3 Ciencia de Datos

University

10 Qs

HTML Basics

HTML Basics

University

11 Qs

Tidyverse style guide: good and bad coding examples

Tidyverse style guide: good and bad coding examples

University - Professional Development

11 Qs

Flip - Flops

Flip - Flops

University

12 Qs

Gaming 2023

Gaming 2023

1st Grade - Professional Development

12 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