Consider the following python program segment:
d1 = “(1,2,3)” d2 = (1,2,3) d3 = [1,2, (1,2)]

What would be the types of variable d1, d2 and d3 respectively after the execution of the program segment ?

 

Which of the following Python code segments is syntactically incorrect ?

 

Which of the following is correct with respect to the term ‘domain’ in a relational database ?

 

Consider the following relation to answer question 37

book (BN, title,publisher,version, author 1, author 2, author3)
Where BN is a unique code:

Which of the following can be a candidate key of the above relation?

 

Consider the following relation to answer question 36

book (BN, title,publisher,version, author 1, author 2, author3)
Where BN is a unique code:

Which of the following statements is correct with respect to the above relation?

 

Which of the following statements is correct with respect to a scanner?

 

Which of the following high- level data flow diagrams is correct with respect to the rules on data flow modelling ?

 

Which of the following is the most appropriate example for a manual temporary data store?

 

Which of the following statement is an example for an essential non-functional requirement of an Internet banking system?

 

Consider the following python statement:
temp = [23, 45, 2, -2, 0][:2:]
What would be the value of the variable temp after executing the above statement?