1/3
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
What does INPUT() and DISPLAY() do?
On the AP exam, INPUT()
is used to accept a value from the user and DISPLAY()
is used to display a value. Values that are displayed are NOT started on a new line but do contain a space following the value printed.
What is the MOD operator?
It is a remainder (%)
-
On the AP Exam, the modulus operator is denoted by MOD. The MOD operator has the same precedence as the * and / operators.
What comparison operators are used on the AP Exam?
=, ≠, >, <, ≥, and ≤.
As well, AND, OR and NOT are used instead of and
, or
and not
.
What are these the AP Exam alternatives for?
for loops and while loops