#Import the NumPy library import numpy as np #Initiating NumPy array a = np.array([1.234, 2.345, 3.456]) #Applying ceiling function b = np.ceil(a) #Displaying results print(b)