Match the following statements with the intended behavior. A…

Match the following statements with the intended behavior. Assume variable num_books exists and it’s value is 40, and all of the following statements are independently executed after this assignment. print(num_books)                     [a] print(num_books // 5)              [b]print(num_books / 0)               [c]print(“num_books”)                  [d]