Advertisements
Advertisements
Janish Khanna used a pen drive to copy files from his friend's laptop to his office computer. Soon his computer started abnormal functioning. Sometimes it would restart by itself and sometimes it would stop different applications running on it. Which of the following options out ·of (i) to (iv), would have caused the malfunctioning of the computer? Justify the reason for your chosen option:
1) Computer Virus
2)Spain Mail
3) Computer Bacteria
4) Trojan Horse
Concept: undefined > undefined
Advertisements
Identify data required to be maintained to perform the following service:
Declare exam results and print e-certificates.
Concept: undefined > undefined
Identify data required to be maintained to perform the following service:
Register participants in an exhibition and issue biometric ID cards.
Concept: undefined > undefined
Identify data required to be maintained to perform the following service:
To search for an image by a search engine.
Concept: undefined > undefined
Identify data required to be maintained to perform the following service:
To book an OPD appointment with a hospital in a specific department.
Concept: undefined > undefined
Give the term for the following:
Collection of logically related records.
Concept: undefined > undefined
Define RDBMS. Name any two RDBMS software.
Concept: undefined > undefined
What do you understand by the term network?
Concept: undefined > undefined
Which of the following is an invalid datatype in Python?
Concept: undefined > undefined
Which of the following operators will return either True or False?
Concept: undefined > undefined
“Every syntax error is an exception but every exception cannot be a syntax error.” Justify the statement.
Concept: undefined > undefined
Differentiate between text file and binary file.
Concept: undefined > undefined
Write the file mode that will be used for opening the following file. Also, write the Python statement to open the following file:
a text file “example.txt” in both read and write mode
Concept: undefined > undefined
Write the file mode that will be used for opening the following file. Also, write the Python statement to open the following file:
a binary file “bfile.dat” in write mode.
Concept: undefined > undefined
Write the file mode that will be used for opening the following file. Also, write the Python statement to open the following file:
a text file “try.txt” in append and read mode.
Concept: undefined > undefined
Write the file mode that will be used for opening the following file. Also, write the Python statement to open the following file:
a binary file “btry.dat” in read only mode.
Concept: undefined > undefined
Write a program to enter the following records in a binary file:
Item No | integer |
Item_Name | string |
Qty | integer |
Price | float |
Number of records to be entered should be accepted from the user. Read the file to display the records in the following format:
Item No:
Item Name :
Quantity:
Price per item:
Amount: (to be calculated as Price * Qty)
Concept: undefined > undefined
Consider a list of 10 elements:
numList = [7, 11, 3, 10, 17, 23, 1, 4, 21, 5].
Display the partially sorted list after three complete passes of Bubble sort.
Concept: undefined > undefined
Identify the number of swaps required for sorting the following list using selection sort and bubble sort and identify which is the better sorting technique with respect to the number of comparisons.
List 1:
63 | 42 | 21 | 9 |
Concept: undefined > undefined