Aspire's Library

A Place for Latest Exam wise Questions, Videos, Previous Year Papers,
Study Stuff for MCA Examinations

CUET UG Computer Science Information Practices Previous Year Questions (PYQs)

CUET UG Computer Science Information Practices Python Programming PYQ


CUET UG Computer Science Information Practices PYQ
Considering the given statement in Python: Print("Hello world") 
What type of error will be generated?





Go to Discussion

CUET UG Computer Science Information Practices CUET UG PYQ CUET UG Computer Science Information Practices COMPUTER SCIENCE INFORMATICS PRACTICES 2022 PYQ

Solution

In Python, function names are case-sensitive. The correct function is print(), not Print().
When you write Print("Hello world"), Python tries to find a variable or function named Print, which doesn’t exist — hence it raises a NameError.

Example Output:

NameError: name 'Print' is not defined

✔️ Key Point:
Always remember that Python is case-sensitive, so print() must be written in all lowercase.


CUET UG Computer Science Information Practices PYQ

Read the following statements and arrange them in the correct order.

A. Exception is raised
B. Executes exception
C. Program searches for exception handler
D. Create exception object
E. An error encountered

Choose the correct answer from the options given below:






Go to Discussion

CUET UG Computer Science Information Practices CUET UG PYQ CUET UG Computer Science Information Practices COMPUTER SCIENCE INFORMATICS PRACTICES 2022 PYQ

Solution

When an exception occurs in a program, the sequence is as follows:

  1. E → An error is encountered

  2. D → An exception object is created

  3. A → The exception is raised (thrown)

  4. C → The program searches for an appropriate exception handler

  5. B → If found, the exception handler (catch block) is executed

Hence, the correct order is E → D → A → C → B.



CUET UG Computer Science Information Practices


Online Test Series,
Information About Examination,
Syllabus, Notification
and More.

Click Here to
View More

CUET UG Computer Science Information Practices


Online Test Series,
Information About Examination,
Syllabus, Notification
and More.

Click Here to
View More

Ask Your Question or Put Your Review.

loading...