Computer Science, asked by rajushande148, 9 months ago

If the variable count exceeds 100, a single
statement that prints "Too many" is
यदि चर संख्या 100 से अधिक हो, तो "Too
marg" प्रिंट करने वाला एक एकल कथन
Select one:
Q. if (count>100) cout >>
"Too many" ;
if (count> 100 ) cout >&gt: "Too
many":
6. if (count> 100 ) cout < < "T
many" ;
if (count> 100 ) cout < < "Too
many" ;
c. None
कोई नहीं
d. if (count< 100 ) cout < < "Tt​

Answers

Answered by sakshisahu765
5

Answer:

what means the count 100

Answered by dreamrob
0

If the variable count exceeds 100, a single statement that prints "Too many" is: if (count> 100 ) cout < < "Too many" ; ( Option if (count> 100 ) cout < < "Too many" ; is the correct answer)

  • Information that needs to be accessed and changed by a computer programme is stored in variables. In order to make our programmes more understandable to ourselves and the reader, they also offer a mechanism to label data with a descriptive name.
  • To understand variables better, consider of them as data storage units. Labeling and archiving data in memory is their only function. When used across your software, this data will be useful.
  • One of the most challenging aspects of computer programming is naming variables. Be very careful while choosing names for your variables.
  • Make every effort to label your variable something that is both correct and clear to another reader. When you review a programme you written months or even years earlier, you may find that the other reader is you.
  • The = symbol is utilised when assigning a variable. The variable's name should be on the left and the value you wish to save there should be on the right.

Hence, If the variable count exceeds 100, a single statement that prints "Too many" is: if (count> 100 ) cout < < "Too many" ; ( Option if (count> 100 ) cout < < "Too many" ; is the correct answer)

#SPJ3

For more information about Variable, you can refer to the following questions

what are variables

https://brainly.in/question/22962073

What is a variable?

https://brainly.in/question/3016346

Similar questions