Two statements are given below:
Statement I: A primary key in DBMS is a field that uniquely identifies each record in a table and can be Null.
Statement II: A foreign key in DBMS is a field that contains unique values and is used to link related tables together.
Which of the following statements is/are correct for variable names in python language?
1 Crore+ students have signed up on EduRev. Have you? Download the App |
Which of the following provides a command for defining relation schema?
In RDBMS, data is presented as a collection of ______.
Directions: Match the contents under List I with those under List II.
Two statements are given below:
Statement I: Bubble Sort has a worst-case time complexity of O(n2), making it inefficient for large collections.
Statement II: Merge Sort has a worst-case time complexity of O(n log n), making it efficient for large collections.
Python strings are also called the collection of:
What is term used for when one tries to pop/delete an item from an empty stack?
Directions: Match the contents under List I with those under List II.
What is the output of following code:
T=(100)
print(T*2)
______ act as a central transmitter and receiver in wireless local area network.
Which of the following statements is/are true?
Which of the following is not a function of csv module?
Syntax for opening Student.csv file in write mode is myfile = open ("Student.csv","w",newline='').
What is the importance of newline=''?
Which of the following is not a keyword in python language?
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.