
Урок открытый

Flashcard
•
Computers
•
6th Grade
•
Easy
Асия Асия
Used 7+ times
FREE Resource
Student preview

5 questions
Show all answers
1.
FLASHCARD QUESTION
Front
print(Привет, мир!)
Back
print("Привет, мир!")
В коде пропущены кавычки
2.
FLASHCARD QUESTION
Front
print("Мой возраст" 12 "лет")
Back
print("Мой возраст", 12, "лет")
Программа не разделяет слова между собой запятыми
3.
FLASHCARD QUESTION
Front
a = input("Введите число 1: ")
b = input("Введите число 2: ") print("Сумма чисел:", a + b)
Back
a = int(input("Введите число 1: "))
b = int(input("Введите число 2: ")) print("Сумма чисел:", a + b )
функция input() возвращает строку, а не число, поэтому её нужно преобразовать в число с помощью int() или float().
4.
FLASHCARD QUESTION
Front
A = input("Введите число: ") print("Введённое число: ", A)
Back
A = int(input("Введите число: ")) print("Введённое число: ", A)
если мы ожидаем, что пользователь введёт число, его нужно преобразовать в тип int или float.
5.
FLASHCARD QUESTION
Front
a = input("Введите первое число: ")
b = input("Введите второе число: ") print("Произведение чисел:", a * b)
Back
a= int(input("Введите первое число: ")) b = int(input("Введите второе число: ")) print("Произведение чисел:", a * b)
необходимо преобразовать введенные значения в числа (добавить int)
Similar Resources on Wayground
13 questions
Оксиды

Flashcard
•
7th Grade
5 questions
Gmetrix 2019 PPT Simulation Test 1 Q's 16-20

Flashcard
•
6th - 8th Grade
10 questions
Python

Flashcard
•
7th - 8th Grade
9 questions
Java Flashcard 1

Flashcard
•
6th - 8th Grade
5 questions
2 топ

Flashcard
•
6th - 8th Grade
8 questions
Algorithm

Flashcard
•
8th Grade
6 questions
Understanding Python Loops

Flashcard
•
8th Grade
13 questions
Python: Print Function, Data Types, and Variables

Flashcard
•
6th Grade
Popular Resources on Wayground
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
10 questions
Appointment Passes Review

Quiz
•
6th - 8th Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
22 questions
Adding Integers

Quiz
•
6th Grade
15 questions
Subtracting Integers

Quiz
•
7th Grade
20 questions
Grammar Review

Quiz
•
6th - 9th Grade
Discover more resources for Computers
10 questions
Exploring Digital Citizenship Essentials

Interactive video
•
6th - 10th Grade
8 questions
Time Management

Quiz
•
6th Grade
18 questions
Company Logos

Quiz
•
6th - 8th Grade
15 questions
Acceptable Use Policy (Quiz)

Quiz
•
6th - 8th Grade
25 questions
Career Vs. Job

Quiz
•
6th - 8th Grade
10 questions
Networking Devices and Their Functions

Interactive video
•
5th - 8th Grade
20 questions
Binary Numbers Quiz

Quiz
•
6th - 8th Grade