📄️ A
This Python code determines the largest among three numbers (a, b, and c) provided by user input. It uses if statements to compare the values and displays a message indicating which of the three numbers is the largest.
📄️ B
This Python code determines whether a student has passed or failed an exam based on user-entered exam marks. It uses a conditional if-else statement to check if the marks are greater than or equal to 35 and displays "PASS" or "FAIL" accordingly.
📄️ C
This Python code assesses the sign of a numerical value, 'num,' to determine if it's positive, negative, or zero. It uses conditional statements (if, elif, and else) to classify the number and prints an appropriate message.