('Yellow', 237, 250, 68).push_Clr(ClrStack, new_Clr): This function takes the stack ClrStack and a new record new_Clr as arguments and pushes this new record onto the stack.pop_Clr(ClrStack): This function pops the topmost record from the stack and returns it. If the stack is already empty, the function should display the message "Underflow".isEmpty(ClrStack): This function checks whether the stack is empty. If the stack is empty, the function should return True, otherwise the function should return False.
def push_Clr(ClrStack, new_Clr):
ClrStack.append(new_Clr)
print("New color record pushed to stack.")
This function uses the append() method
def pop_Clr(ClrStack):
if len(ClrStack) == 0:
print("Underflow")
return None
else:
return ClrStack.pop()
This function first checks if ClrStack is empty
def isEmpty(ClrStack):
if len(ClrStack) == 0:
return True
else:
return False
This function checks if the length of ClrStack is zero.fruits = ['apple','banana','cherry'] print(fruits[0])
def sayHello():
print("Hello World")
sayHello()
sayHello()
A racing track is built around an elliptical ground whose equation is given by \[ 9x^2 + 16y^2 = 144 \] The width of the track is \(3\) m as shown. Based on the given information answer the following: 
(i) Express \(y\) as a function of \(x\) from the given equation of ellipse.
(ii) Integrate the function obtained in (i) with respect to \(x\).
(iii)(a) Find the area of the region enclosed within the elliptical ground excluding the track using integration.
OR
(iii)(b) Write the coordinates of the points \(P\) and \(Q\) where the outer edge of the track cuts \(x\)-axis and \(y\)-axis in first quadrant and find the area of triangle formed by points \(P,O,Q\).