Answer:
Definitely D
Explanation:
When you flip a coin it’s a 50/50 chance. Meaning it’s equal.
I'm guessing 8? But I'm not 100% positive
Answer:
C. &&
Explanation:
Of the options provided:
A) ++ : increment operator. For example : ++1 = 2
B) || : Logical OR operator. A || B is true if any one of A or B is true.
C) && : Logical AND operator. A && B is true if both A and B are true.
A B A && B
False False False
False True False
True False False
True True True
D) @ : Ampersand character (commonly used in email addresses) e.g, [email protected]
If you are just starting go on khan academy and go to the computing section and they will start you out on the basics on code devoloping.