Answer:
The answer to this question is given below in the explanation section
Explanation:
The following are the correct match according to the keyboard command with its result.
- Control + End - jumps to the end of a document
- Control + Home - jumps to the beginning of a document
- Page Up - moves backward in a document
- Page Down - moves forward in a document
Are you going into space... if so well... space, that is the big issue
When we do the electronic configuration of the atom we get that on K shell the no. Of atoms is 2 in L shell the no. Of atoms will be 8 and in M shell or the valence shell the no. Of atoms will be 2 so the no. Of valence electrons will be 2.
Answer:
The output of this question is 21. As show in the image
The explanation is given in below
Explanation:
Let first write the question
C=1
sum = 0
while(C<10):
C=C+3
sum=sum + C
print(sum)
Now Focus on
while(C<10):
C=C+3
sum=sum + C
The value of C is initially 1
C=1+3
Sum= 0+4
In second loop the value of C will become 4
c=4+3
sum=4+7
In third loop the value of C will be 7
c=7+3
sum=11+10
so the answer is 11+10=21