Which of the following is not a keyword in python language?
Match List I with List II
Choose the correct answer from the options given below:
Which of the following is the correct way to call a function?
What is the syntax to work with the database?
Which of the following components is/are part(s) of a function header in python?
What is the global system of interconnected computer networks called?
Syntax of the seek function in python is myfile.seek(offset, reference_point) where myfile is the file object. What is the default value of reference_point?
Read the statements given below and choose the correct answer:
Statement A: It is very difficult to organize unstructured data.
Statement B: CSV helps into organize a huge amount of data in a proper and systematic way.
Two statements are given below:
Statement I: The order of items in the output of the map() method in Python is same as the order in the input iterable.
Statement II: The order of items in the output of the map() method in Python is sorted in ascending order.
Directions: Match the contents under List I with those under List II.
In a relational schema, each tuple is divided into fields called
A ________ computer is a large and expensive computer capable of simultaneously processing data for hundreds or thousands of-users.
Assume that the position of the file pointer is at the beginning of 3rd line in a text file. Which of the following option can be used to read all the remaining lines?
Which of the following items are present in the function header?
Given Tuple: tup1= (10, 20, 30, 40, 50, 60, 70, 80, 90)
What will be the output of print (tup1 [3:7:2])?
Identify the output of the following Python statements.
x = [[10.0, 11.0, 12.0],[13.0, 14.0, 15.0]]
y = x[1][2] print(y)
8 docs|148 tests
|