Infytq Python Solve
Which of the following functions call will execute successfully?Choose two correct optionsa. display_cat_details(“Black”,”Roger”,”Snow”)b. display_cat_details(“white”)c. display_cat_details(“Grey”, pet_name=”Grey)d. display_cat_details(“Brown”,”Nelly”) Answer a, d Explanation In this function, there are three parameters among them the last parameter is optional. In option b only one parameter is passed so it will not be a proper call. And in option c […]