Answer:
1, 4, 7
Explanation:
The instruction in the question can be represented as:
for i in range(1,10,3):
print i
What the above code does is that:
It starts printing the value of i from 1
Increment by 3
Then stop printing at 9 (i.e.. 10 - 1)
So: The sequence is as follows
Print 1
Add 3, to give 4
Print 4
Add 3, to give 7
Print 7
Add 3, to give 10 (10 > 10 - 1).
So, it stops execution.
Answer:
Binary is made up of only 2 digits: a one and a zero. 1011 is eleven in our counting system.
So 10 in binary = 2 in our counting system.
Read the joke as follows. There are 2 types of people in the world: those who understand binary and those who do not.
I guess it's not really that funny, but computer programmers like it.
Answer:
The right answer is: Option A. h3
Explanation:
The purpose of using selectors in CSS is to find the elements in the HTML page to which the formatting will be applied.
Different type of selectors are used in CSS.
In the given code, h3 is the selector.
All the <h3> elements on the page will be of orange color and will have font size 12.
Hence,
The right answer is: Option A. h3
Answer:
e means we don't know so I can't tell the answer
Answer:
The instructions in a program can only be expressed using a programming language