CUET-UG SERIES Computer-science
Programming In C
2 previous year questions.
Volume: 2 Ques
Yield: Medium
High-Yield Trend
2
2023 Chapter Questions 2 MCQs
01
PYQ 2023
medium
computer-science ID: cuet-ug-
A table student has two text fields defined as below:
Name_1 varchar(20),
Name2 char(20)
If Name_1 stores value as βAna' and Name2 stores value as βAnuj', then Name_1 will consume characters space and Name2 will consume characters space.
Name_1 varchar(20),
Name2 char(20)
If Name_1 stores value as βAna' and Name2 stores value as βAnuj', then Name_1 will consume characters space and Name2 will consume characters space.
1
3, 20
2
20, 4
3
20, 20
4
3, 4
02
PYQ 2023
medium
computer-science ID: cuet-ug-
Select mid("Computerscience",8); returns the output:
1
Computer
2
Computers
3
rscience
4
Compute