M2 Quiz

M2 Quiz

8th Grade

9 Qs

quiz-placeholder

Similar activities

KÜÇÜK YAZILIMCILAR ST

KÜÇÜK YAZILIMCILAR ST

5th - 8th Grade

10 Qs

What's the Code?

What's the Code?

4th Grade - Professional Development

10 Qs

Comp8 code.org Unit 6A L3 Quiz

Comp8 code.org Unit 6A L3 Quiz

8th Grade

10 Qs

Recap Beeping Sound

Recap Beeping Sound

5th - 10th Grade

13 Qs

Day#7

Day#7

1st Grade - University

12 Qs

Review 3002 - The Lab Coder

Review 3002 - The Lab Coder

5th - 10th Grade

10 Qs

PLTW Quiz over Innovators and Makers

PLTW Quiz over Innovators and Makers

8th Grade

10 Qs

Fidget Cubes (More on Maker Unit 2)

Fidget Cubes (More on Maker Unit 2)

8th - 9th Grade

7 Qs

M2 Quiz

M2 Quiz

Assessment

Quiz

Computers

8th Grade

Hard

Created by

Neil Rusia

Used 14+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

[2points] Which has a lower music frequency for coding music?

#define NOTE_AS7 3729

#define NOTE_AS6 1865

2.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

[2 points] In programming, what do you call a list or collection of elements of the same data type?

loop

variable

array

setup

3.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

[2 points] In coding, how will you access NOTE_D5 in this array?

int melody[ ]={

NOTE_D5, NOTE_G3, NOTE_D5, NOTE_A3, NOTE_G3, 0, NOTE_B3, NOTE_C4

};

tone(8, melody[3], noteDurations[3]);

tone(8, melody[1], noteDurations[1]);

tone(8, melody[0], noteDurations[0]);

tone(8, melody[2], noteDurations[2]);

4.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

[2 points] What does this code mean?

tone(8);

Buzzer to connect should be 8 pieces

Buzzer is going to play sound for 8 times

Buzzer is connected to pin number 8

Buzzer will rotate in 8 degrees angle

5.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

[2 points] How will you access the number/digit 8 in this array?

int noteDurations[ ]={

4,8,4,4,4,4,4,4

};

tone(8, melody[0], noteDurations[0]);

tone(8, melody[1], noteDurations[1]);

tone(8, melody[2], noteDurations[2]);

tone(8, melody[3], noteDurations[3]);

6.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

[4 points] What is the bug in this code?

in melody[ ]={

NOTE_A6, NOTE_B6, NOTE_C7

};

in should be written as int

in should be written as intl

missing semi-colon symbol

missing comma symbol

7.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

[2 points] What do you call a useful component that allows the programmer to give a name to a constant value before the program is compiled?

var

int

#define

#arduino

8.

MULTIPLE CHOICE QUESTION

5 mins • 1 pt

[2 points] This code has a bug. How will you fix and rewrite the correct code?

tone(8 melody[4] noteDurations[4]);

tone(8, melody[4] noteDurations[4]);

tone(8 melody[0] noteDurations[0]);

tone(8, melody[4], noteDurations[4]);

tone(8 melody[4] noteDurations[0]);

9.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

[2 points] In this code, what does the digit 0 mean?

int melody[]={

NOTE_D5, 0, NOTE_B3, NOTE_C4

};

It means the buzzer will be disconnected

It means the buzzer sound will play 1 time

It means the buzzer sound will pause the note

It means the buzzer will rotate 0 degrees angle