Class 6 Computer CH 8 Worksheet
Class 6 Computer CH 8 Worksheet
CLASS: VI
CHAPTER 8
Worksheet 1
1. Fill in the blanks using the given words.
b. An action which repeats again and again till a particular condition is met is called .
d. is the process of giving written commands to a computer, that can be saved and executed.
e. datatype is used to represent the values True and False in a logical expression.
2. State whether the following statements are true (T) or false (F).
d. Operators that work upon two operands are called unary operators.
3. Write the type of operator and the result for the following expression.
a. d = a – b + c → The value of d is .
b. a– = b → The value of a is .
a. x=5 b. x = “my ”
y = 10 y = “country”
a=3
z = “India is ” + x + y
b=x+y–3
b++ m = “Ram ”
a-- a = x + “name is” + m
b+ = a
What will be the final values of a and z?
What will be the final values of a, b, x and y?
Worksheet 2
1. Fill in the blanks using the given words.
d. variable has three main aspects: a name, a value and an in the computer’s memory.
2. State whether the following statements are true (T) or false (F).
c. Operators that work upon single operand are called unary operators.
3. Write the type of operator and the result for the following expression.
a. d = a * b → The datatype of d is .
a. x = 5 b. x = “my ”
y = 10 y = “name ”
a=3 z = “India.”
b=x+3–y m = “Ram ”
b-- a = x + y + “ is ” + m
a++ b = m + “ is living in ” + z
a* = b What will be the final values of a and b?
What will be the final values of a, b, x and y?