Kode apa yang digunakan untuk membuat teks bergerak ke arah kiri dalam LCD?
Quizizz SIOTICS #3

Quiz
•
Information Technology (IT)
•
10th Grade
•
Hard
Siotics Content
FREE Resource
15 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 6 pts
slideScreenLeft()
lcd.left()
slideScreenRight()
scrollDisplayRight()
scrollDisplayLeft()
2.
MULTIPLE CHOICE QUESTION
30 sec • 6 pts
#include <LiquidCrystal_I2C.h>
#include <Wire.h>
String text = "Hello World";
LiquidCrystal_I2C lcd(0x27, 16, 2);
void setup() {
lcd.init();
lcd.start(16, 2);
lcd.backlight();
lcd.print(text);
}
void loop() {
}
Dimanakah letak kesalahan pada program tersebut?
lcd.start() diganti dengan lcd.begin()
Tidak ada tanda titik koma pada include library
lcd.print seharusnya menggunakan tanda string ("
Variabel text seharusnya menggunakan tipe data int
void loop harus diisi
3.
MULTIPLE CHOICE QUESTION
30 sec • 6 pts
void loop () {
lcd.init();
lcd.begin(16, 2);
lcd.backlight();
lcd.setCursor(12, 1);
lcd.print("Hello World!");
}
Teks Hello World akan di print di lcd pada kolom dan baris ke berapa?
Kolom ke-2 dan Baris ke-13
Kolom ke-13 dan Baris ke-2
Kolom ke-12 dan Baris ke-1
Kolom ke-1 dan Baris ke-12
Hello World tidak akan diprint karna error
4.
MULTIPLE CHOICE QUESTION
30 sec • 6 pts
void setup() {
Serial.begin(9600);
Serial.print("Hello World/n");
}
Apa print yang muncul di Serial Monitor?
Hello World
9600
Tidak ada print karena error
Serial
Hello World/n
5.
MULTIPLE CHOICE QUESTION
30 sec • 6 pts
Serial yang dipakai di Arduino melewati kabel USB, yaitu dari tipe ... ke ...?
B mini ke A
C ke B
C mini ke A
A ke B
A mini ke B
6.
MULTIPLE CHOICE QUESTION
30 sec • 6 pts
void setup() {
Serial.begin(9600);
}
void loop() {
for (int i=1; i<=9; i++) {
Serial.println("Hello World");
delay(100);
}
}
Berapa kali Hello World akan diprint dalam Serial Monitor?
7 kali
Print dilakukan terus menerus tanpa akhir
8 kali
9 kali
Print error
7.
MULTIPLE CHOICE QUESTION
30 sec • 6 pts
int led = 3;
void setup() {
pinMode(led, OUTPUT);
for(int f=3; f<7; f++) {
digitalWrite(led, HIGH);
delay(100);
digitalWrite(led, LOW);
delay(100);
}
}
Berapa kali led akan berkedip?
3
Led tidak berkedip
6
4
7
Create a free account and access millions of resources
Similar Resources on Quizizz
10 questions
Struktur Pemrograman Arduino

Quiz
•
11th Grade
10 questions
formativa robótica

Quiz
•
9th - 12th Grade
20 questions
Debugging Neopixel Programming

Quiz
•
12th Grade
10 questions
Pemrograman & Aplikasi Mikrokontroler (Pengenalan IDE)

Quiz
•
11th Grade - University
13 questions
2.2 Method of Data Transmission

Quiz
•
University
15 questions
KOMPONEN CPU

Quiz
•
11th Grade - University
10 questions
Post Test Perangkat Keras (Hardware)

Quiz
•
10th Grade
20 questions
Algoritma Struktur Data

Quiz
•
University
Popular Resources on Quizizz
15 questions
Character Analysis

Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
10 questions
American Flag

Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension

Quiz
•
5th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25

Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade
Discover more resources for Information Technology (IT)
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Taxes

Quiz
•
9th - 12th Grade
17 questions
Parts of Speech

Quiz
•
7th - 12th Grade
20 questions
Chapter 3 - Making a Good Impression

Quiz
•
9th - 12th Grade
20 questions
Inequalities Graphing

Quiz
•
9th - 12th Grade
10 questions
Identifying equations

Quiz
•
KG - University