EXAM PAPER 2026 QUESTIONS WITH
SOLUTIONS GRADED A+
◉ !=. Answer: a comparison operator used to compare if one operator is
not equal to another
◉ %. Answer: modulo operator, outputs the remainder of dividing the
first number by the second
◉ *. Answer: multiplication operator, outputs the product of the two
input numbers
◉ **. Answer: exponentiation operator, outputs the result of multiplying
<base> by itself <power> number of times
◉ /. Answer: division operator, outputs the result of dividing the first
number by the second
◉ +. Answer: addition operator, outputs the sum of the two input
numbers OR concatenation operator, joins two values together
, ◉ <. Answer: a comparison operator used to compare if one operator is
less than another
◉ <. Answer: a comparison operator used to compare if one operator is
less than another
◉ <=. Answer: a comparison operator used to compare if one operator is
less than or equal to another
◉ =. Answer: assignment operator, assigns a value
◉ ==. Answer: a comparison operator used to compare if one operator is
equal to another
◉ >. Answer: a comparison operator used to compare if one operator is
greater than another
◉ >=. Answer: a comparison operator used to compare if one operator is
greater than or equal to another
◉ abstraction. Answer: Focus on the essential qualities of something
rather than one specific example.