CUET-UG SERIES Computer-science
Types Of Functions
3 previous year questions.
Volume: 3 Ques
Yield: Medium
High-Yield Trend
3
2023 Chapter Questions 3 MCQs
01
PYQ 2023
medium
computer-science ID: cuet-ug-
Consider the function header given below and identify the correct call statement(s) to call the below function.
def fun(x, y=10, z=15);
A. fun(30)
B. fun(30, 40)
C. fun()
D. fun(10, 20, 30)
E. fun(10, 20, 30, 40)
Choose the correct answer from the options given below :
def fun(x, y=10, z=15);
A. fun(30)
B. fun(30, 40)
C. fun()
D. fun(10, 20, 30)
E. fun(10, 20, 30, 40)
Choose the correct answer from the options given below :
1
A, B and E
2
A, B and D
3
B, C and D
4
B, D and E
02
PYQ 2023
medium
computer-science ID: cuet-ug-
All aggregate functions ignore Nulls except for________ function.
1
max( )
2
Count( )
3
Avg( )
4
Sum( )
03
PYQ 2023
medium
computer-science ID: cuet-ug-
The max() function of Pandas descriptive statistics axis = 1 gives,
1
Row wise output
2
Column wise output
3
Both column and row wise output
4
Axis is an invalid parameter