Which character is used in Python to make a single line comment?
Which of the following is the correct extension of the Python file?
1 Crore+ students have signed up on EduRev. Have you? Download the App |
Two statements are given below, one is Assertion (A) and the other is Reason (R). Read the statements carefully and choose the correct answer.
Assertion (A): Linear search is an efficient searching algorithm for large arrays.
Reason (R): Linear search has a time complexity of O(n).
Which language is used to access and manipulate databases?
Directions: Match the contents under List I with those under List II.
A node that forwards data packets from one network to their destination in another network is called:
Which of the following options can be used to read the first line of a text file Myfile.txt?
If we want to add more contents in an existing file, file must be opened in ____ mode.
Two statements are given below:
Statement I: ALTER TABLE statement is used to add a new column to an existing table in SQL.
Statement II: INSERT Row statement is used to insert the Row to an existing table in SQL.
It is possible to create a loop using goto statement in python?
What will be the output of following Python code?
str1="Information"
print(str1[2:8])
The process of identifying a slot for the second and further items in the hash table in the event of collision, is called _______.
Which of the following is/are the advantage(s) of a database management system?
Directions: Match the contents under List I with those under List II.
What is the output of the following if statement
a, b = 12, 5
if a + b:
print('True')
else:
print('False')
A DNS __________ server gets its data from another DNS server.
Binary search takes a sorted/ordered list and divides it in the _______.
Which of the following is an invalid variable?
Consider a declaration L = (1, 'Python', '3.14'). Which of the following represents the data type of L?
What is the output of the following program?
L1=[ ]
L1.append([1,[2,3],4])
L1.extend([7,8,9])
print(L1[0][1][1]+L1[2])
Two statements are given below:
Statement I: Normalization is the process of organizing data in a database into tables to reduce redundancy.
Statement II: Normalization is the process of organizing data in a database into tables to reduce dependancy.
A repeater is a device which operates only in the:
Which of the following string functions in 'C' converts lowercase input string into uppercase?
What is the fundamental unit of data transport on computer networks?
172.16.122.204 IP address belongs to which IP addresses class?
Two statements are given below:
Statement I: Hashing technique is very fast and efficient for large collections, but requires additional memory to store the hash table.
Statement II: Binary search technique is suitable for small collections but can be slow for larger collections.
Directions: Match the contents under List I with those under List II.