1-2 GB
I had hard time finding the answer to this, but the correct answer on my test was 1-2 GB
Answer:
return a specific value, calculation or message if certain condition met
Explanation:
"if" is used for conditional statements that means, do some work if the condition is met against that logic.
e.g.
If (a > 5)
{
Show "a is greater than 5"
}
so if we put a= 6 than condition met and given statement will be shown on out put as "a is greater than 5".
CLIs are often used by programmers and system administrators, in engineering and scientific environments, and by technically advanced personal computer users.
Which programming language are you working in?
Here is how you could achieve this in Python:
establish a counter, starting at 1.
While your counter is 10 or less, do two things:
print the counter,
and increase the counter by 1.
code:
counter = 1
while counter <= 10:
print(counter)
counter = counter + 1
Those last two lines should be indented.
Answer:
A
Explanation:
The answer is A because, to be novice at something that means one is new to and is inexperienced at said activity.