Write assignment statements that perform the following operations with the variables a, b, and c.
A) Adds 2 to a and stores the result in b.
B) Multiplies b times 4 and stores the result in a.
C) Divides a by 3.14 and stores the result in b.
D) Subtracts 8 from b and stores the result in a.
E) Stores the value 27 in a.
F) Stores the character ‘K’ in c.
G) Stores the ASCII code for ‘B’ in c.