In: Computer Science
_______ are small central processing units chips.
in the expression 12.45 + 3.6, the values to the right and left of the + symbol are the______
python uses______ to categorize values in memory.
the% symbol is the remainder operator. also known as the______ operator.
when applying the .3f formatting specifier er to the number 76.15854, the result is____.
_______ are small central processing units chips.
Answer: Microprocessor
Central processing unit is the brain of the computer where
most of the calculations take place. It is packed in a tiny
chip
called "microprocessor"
--------------------------------
in the expression 12.45 + 3.6, the values to the right and left of the + symbol are the______
Answer: operands
12.45, 3.6 are called as operand
+ is called as operator
---------------------------------------------
python uses______ to categorize values in memory.
Answer: data types
when a program receives data, it usually performing some
operation
with it. variable is used to store that data. Variable is a name
that represents a
value stored in the computer memory.Type of variable differs
depends on the
data it holds.
---------------------------------------------
the% symbol is the remainder operator. also known as the______ operator.
Answer: Modulo operator(%)
Modulo operator gives the remainder of the division
operation.
For e.g: 5%3 = 2
---------------------------------------------
when applying the .3f formatting specifier to the number 76.15854, the result is____.
Answer: 76.158
.3f specifies the 3 fractions digits in the given floating point number