To be honest I feel like it’s B that’s looks and seems the most correct to me
Answer:
Nothing will happen.
Explanation:
The rules written between /* and */ will be ignored because /* and */ are the standard way of writing comment in a style sheet code. So, whatever fall in between them will be ignored during rendering of the page.
Answer:
ooh I have a I phone computer
Answer:
that's muddled up I can't make out the question
IsTeenager = ( ( kidAge >= 13 ) && ( kidAge <= 19 ) ) ? true : false;
Another way:
if( ( kidAge >= 13 ) && ( kidAge <= 19 ) )
isTeenager = true;
else
isTeenager = false;