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
Answer:
that is so long i just want points
Explanation:
<span>The answer is False. When declaring an array, we use 1 set of square brackets.</span>
The symbol that we do use to assign a value to a variable or constant in algorithms is =.
<h3>What is used to assign a constant to a variable?</h3>
The const keyword is known to be one that tends to specifies a variable or object value that is known to be constant.
In computing and computer programming, there are different kinds of variables as well as symbols that are used for different purposes.
Note that if you assign a variable, you need to use the = symbol and thus The symbol that we do use to assign a value to a variable or constant in algorithms is =.
Learn more about algorithms from
brainly.com/question/13800096
#SPJ1