The average age of a father, mother, and their daughter 4 years ago was 30 years, and that of the mother and daughter 6 years ago was 25 years. What is the present age of the father?
Anonymous Quiz
12%
20
46%
40
38%
60
3%
80
In the first 12 overs of a cricket match, the run rate was 5.5. What should be the run rate in the remaining 38 overs to reach the target of 300 runs?
Anonymous Quiz
23%
7 run per over
34%
9 run per over
27%
20 run per over
16%
None of these
A baker has sales of Rs. 7800, Rs. 8200, Rs. 7900, Rs. 8600, and Rs. 8100 for 5 consecutive months. How much sale must he have in the sixth month to achieve an average sale of Rs. 8000?
Anonymous Quiz
9%
2000
32%
6000
39%
8000
20%
10000
A student's score was incorrectly recorded as 75 instead of 65. Because of this error, the class average increased by 0.4 marks. What is the total number of students in the class?
Anonymous Quiz
12%
10
28%
15
33%
20
27%
25
👍1
A grocery store purchases flour at Rs. 12, Rs. 15, and Rs. 18 per kilogram in three consecutive months. If the store spends Rs. 6000 each month, what is the average cost per kilogram of flour after the three months?
Anonymous Quiz
12%
12
57%
15
27%
17
4%
19
If the average score of four groups of 30, 40, 35, and 50 students is 70, 75, 80, and 65 respectively, what is the overall average score of all the students combined?
Anonymous Quiz
12%
20
39%
60
39%
72
11%
80
20 IMP QUESTIONS OF CUET COMPUTER SCIENCE BASED ON PYQ
2. Which of the following is not a built-in exception in Python?
Anonymous Quiz
16%
1. SyntaxError
16%
2. ValueError
45%
3. IOError
23%
4. RuntimeError
3. Which function is used to count the number of values in the specified column ignoring null values?
Anonymous Quiz
41%
1. count(*)
34%
2. count(column)
18%
3. count(column)
7%
4. sum(column)
4. ____ is a unique address that can be used to uniquely identify each node in a network.
Anonymous Quiz
26%
1. MAC address
69%
2. IP address
4%
3. TCP
1%
4. NIC
5. Write the Python statement to open a text file "notes.txt" in both read and write mode.
Anonymous Quiz
18%
1. f = open ("notes.txt", "r")
54%
2. f = open ("notes.txt", "r+")
9%
3. f = open ("notes", "r")
19%
4. f = open ("notes.txt")
10. Which of the following functions returns an integer that specifies the current position of the file object in the file?
Anonymous Quiz
18%
1. tell()
40%
2. seek()
33%
3. find()
9%
4. read()
11. The number of tuples in a relation is called:
Anonymous Quiz
17%
Degree
38%
Cardinality
23%
Domain
23%
4. Attribute
12. ____ is a useful technique that helps in capturing runtime errors and handling them so as to avoid the program getting terminated abruptly.
Anonymous Quiz
25%
1. Error Handling
24%
2. Try Catch
46%
3. Exception Handling
5%
4. Error exception
13. How to remove the primary key constraint from the table? Syntax: ALTER table table_name ____ primary key:
Anonymous Quiz
30%
Delete
32%
Drop
25%
Modify
13%
Alter
14. In DBMS, the file system suffers from:
* A. Data Dependence
* B. Data Redundancy * C. Data Isolation * D. Data Inconsistency Choose the most appropriate answer:
* A. Data Dependence
* B. Data Redundancy * C. Data Isolation * D. Data Inconsistency Choose the most appropriate answer:
Anonymous Quiz
22%
1. B, C, and D only
30%
2. A and D only
31%
3. A, B, C, and D
18%
4. A, B, and C only
15. In SQL, to increase the salary by 10% of employees from the Employee Table, select the correct query.
Anonymous Quiz
16%
1. alter table Employee add salary = 10/100 * salary;
32%
2. update salary set salary = salary * 10/100;
24%
3. update salary set salary = salary + 10/100 salary;
29%
4. update Employee set salary = salary + 10/100 * salary;
Which of the following sorting algorithms is known for its efficiency in average and worst-case scenarios with a time complexity of O(n log n)?
Anonymous Quiz
31%
1. Bubble Sort
41%
2. Insertion Sort
19%
3. Merge Sort
9%
4. Selection Sort
22. In object-oriented programming, the mechanism of deriving a new class from an old one is called:
Anonymous Quiz
13%
1. Polymorphism
66%
2. Inheritance
16%
3. Abstraction
5%
Encapsulation
👍1
23. Which SQL statement is used to retrieve data from a database?
Anonymous Quiz
20%
1. INSERT
27%
2. UPDATE
51%
3. SELECT
3%
4. DELETE