23. What is the value of 3 - (4 + 2 *3)/(8-2) + 7 * 2+4
a) 30
b) 23
c) 28
d) 47
24. Givenc-("Asia":"China", "India", "Indonesia", "Japan"), "Africa":["Nigeria":"Egypt", "Kenya", "South Africa"]}
#How to print "Japan and Egypt" ???
a) print(c["Asia"][4) ." and " + c("Africa")[2])
b) print(cll'Asia")(3) + " and " + ("Africa")[1]])
c) print(c["Asia")(3) "and" + c("Africa")[1])
d) print("Asla" (3) "and" "Africa" (11)
25. What is the difference between a class and an object in Python?
a) There is no difference between a class and an object
b) Classes are made from iterations while objects are not.
c) Objects are not able to be called
d) Objects are created from classes.

Relax