Card 6 / 43: What symbol(s) allows for assignment of variables?
A)
==
B)
=
C)
<=
D)
>=
Answer:
B) =
Previous Card | ← Previous Card Button |
Next Card | → Next Card Button |
Flip Card | Space-Bar |
int x;
x=0; //This means the integer variable x is now assigned a value of 0
if (x==2) //Things such as ==, <=,>= all check whether x is related to 2
{ etc}
![]() |