Advertisements
Advertisements
Which of the following is not a comparison query?
Concept: undefined >> undefined
How many except statements can a try-except block have?
Concept: undefined >> undefined
Advertisements
When will the else part of try-except-else be executed?
Concept: undefined >> undefined
The design of the database is known as what?
Concept: undefined >> undefined
Which function is used with the ORDER BY clause to custom sort order?
Concept: undefined >> undefined
Can one block of except statements handle multiple exceptions?
Concept: undefined >> undefined
The computer jargon - WWWW, stands for ______.
Concept: undefined >> undefined
What is the full form of DBMS?
Concept: undefined >> undefined
Consider the following SQL.
SELECT ______ FROM Employee WHERE Dept= 'Printing';
Which of the following should be used to find the mean of the salary?
Concept: undefined >> undefined
Which of the following blocks lets you test a block of code for errors?
Concept: undefined >> undefined
Which of the following is true for Exceptions:
- Exceptions disrupt normal flow of the program
- It is common for exceptions to show up before the program is executed
- Runtime errors are known as Exceptions
- Exception is a Python object that represents an error
Concept: undefined >> undefined
What is not true for exception handling?
Concept: undefined >> undefined
In exception handling, what keeps track of exact position where error has occurred?
Concept: undefined >> undefined
While executing the program, if an exception is encountered in try block then execution of the code inside the try block is stopped and:
Concept: undefined >> undefined
The else part of try-except-else executes:
Concept: undefined >> undefined
To protect the computer system against the hacker and different kind of viruses, one must always keep ______ on in the computer system.
Concept: undefined >> undefined
An algorithm is implemented to find if a sequence of parentheses in ((()(())(())) is balanced. What would be the max number of parentheses that can appear on the stack at any one time?
Concept: undefined >> undefined
In infix to postfix conversion algorithm, the operators are associated from:
Concept: undefined >> undefined
Convert (x+y)/(z*8) into postfix expression.
Concept: undefined >> undefined
