You never said what language so I used C
#include <stdio.h>
<span>int main () { </span>
<span> int a; </span>
<span> for( a = 3; a > 0; a-- ){ </span>
<span> printf("%i \n", a); }</span>
<span> printf(" Blast OFF !!!\n"); </span>
<span>return 0; </span>
<span>}</span>
Answer: Somewhat.
Explanation: Try refreshing your pages, or reopening your browser.
Answer:
B
Explanation:
c. CPU
user_age = int(input())
if user_age > 17 and user_age != 25:
print("Eligible")
else:
print("Not eligible")