Python

[Solved] Chocolate Game with Python

[Solved] Chocolate Game with Python

Chocolate Game: It was Christmas Eve and the celebrations remembering the birth of Jesus were going on in full swing at the Catheral Chapel. The Event Management Team had arranged for some exciting games after the mass worship and feast,…

[Solved] Calendar Quiz with Python

[Solved] Calendar Quiz with Python

Calendar Quiz: Super Quiz Bee is a famous quiz Competition that tests students on a wide variety of academic subjects. This week’s participants were kids of age 12 to 15 and the quiz questions were based on Gregorian calendar. In the…

[Solved] Transceiver Communication with Python

[Solved] Transceiver Communication with Python

Transceiver Communication: The ExCon Fair is the region’s largest trade fair on Construction Equipments & Technology. The Event is targeted to be attended by approx. 30 million visitors. To ensure the smooth functioning of the event and the safety of…

[Solved] Minimum and Maximum with Python

[Solved] Minimum and Maximum with Python

Minimum and Maximum: The ExConFair is the region’s largest trade fair on Construction Equipments & Technology. The Event organizers hired college students as volunteers to work at the fair as the event is targeted to be attended by approx. 30…

[Solved] Grades of Rides with Python

[Solved] Grades of Rides with Python

Grades of Rides: “AquaticaCarnival” is the most successful event dedicated to children and families. The Event has more than 20 rides for children and adults and the organizers always ensure not to compromise on the safety of the visitors.To ensure…

[Solved] WonderWorks Magic Show with Python

[Solved] WonderWorks Magic Show with Python

WonderWorks Magic Show: The Magic Castle, the home of the Academy of Magical Arts at California has organized the great ‘WonderWorks Magic Show’. 3 renowned magicians were invited to mystify and thrill the crowd with their world’s spectacular magic tricks.…

MCQs Python Programming 60+

MCQs Python Programming 60+

1. What will be the output of the following python code? a=2 def fun(a=3): global a a+=5 fun() print(a) Ans: Error 2. consider the following statement and choose the correct option: a=[10, 4, 1, 50, 8, 2] b=sorted(a, reverse=’No’) print(b)…

[Solved] Weak Password Problem with Python

[Solved] Weak Password Problem with Python

Weak Password: Write a program to obtain user details in CSV format. If the password entered by the user satisfies the following constraints, print the user details, else raise an exception “Your password is weak”.    A password is said…