Answer:
Music suggetions: Lil peep (all of his music) A kiss (the driver era) Da baby is pretty good so is travis scott :)
Explanation:
Have a good day
Answer: B.
Explanation:
Because I just took the test and got it right
I’m not 100% but I think the answer is C I hope I helped you and good luck
// A single if statement
if (boolean expression)
Do statement;
// Or a single if with {}
if (boolean expression)
{
Do statement;
}
// A block if statement: { } required
if (boolean expression)
{
Do Statement1;
Do Statement2;
...
Do StatementN;
}
Note