0% found this document useful (0 votes)
258 views4 pages

Program Enrollment Test Quiz _ WorldQuant University

The document is a quiz for Computer Vision Admissions at WorldQuant University, containing questions related to Python programming, machine learning concepts, and coding practices. It includes multiple-choice questions on topics such as methods in classes, function syntax, clustering problems, model evaluation metrics, and overfitting. The quiz aims to assess knowledge in applied AI and programming skills.

Uploaded by

medafhd
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
258 views4 pages

Program Enrollment Test Quiz _ WorldQuant University

The document is a quiz for Computer Vision Admissions at WorldQuant University, containing questions related to Python programming, machine learning concepts, and coding practices. It includes multiple-choice questions on topics such as methods in classes, function syntax, clustering problems, model evaluation metrics, and overfitting. The quiz aims to assess knowledge in applied AI and programming skills.

Uploaded by

medafhd
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 4

1/5/25, 9:42 PM Program Enrollment Test Quiz | WorldQuant University

Computer Vision Admissions

Question 1 In Python programming, what represents a method in a


class?

A decorator used in the class

The title or name given to the class

A function initialized within the class structure

A constant value used within the class

Question 2 Which of the following is the answerType syntax for


defining a Python function that calculates the area of a
rectangle?

def rectangle_area(length, width):

def rectangle_area length, width:

rectangle_area(length, width):

function rectangle_area(length, width):

Question 3 Which of the following is an example of a clustering


problem in machine learning?

Segmenting customers based on purchasing behavior

Predicting crop yields from weather data

https://learn.wqu.edu/programs/enroll/applied-ai-lab/test/quiz 1/4
1/5/25, 9:42 PM Program Enrollment Test Quiz | WorldQuant University

Forecasting the number of sales in a retail store

Determining if a transaction is fraudulent

Question 4 In the context of machine learning, which metric would


you use to evaluate the accuracy of a regression model?

Adjusted R-squared

Area under the Curve

Specificity

Sensitivity

Question 5

fruit_colors = {
'Apple': 'Red',
'Banana': 'Yellow',
'Grape': 'Purple'
}

new_fruit = 'Orange'

fruit_colors[new_fruit] = 'Orange'

In the above code snippet, which of the following is a


value?

'Red'

fruit_colors

'Apple'

https://learn.wqu.edu/programs/enroll/applied-ai-lab/test/quiz 2/4
1/5/25, 9:42 PM Program Enrollment Test Quiz | WorldQuant University

new_fruit

Question 6

fruits = ['apple', 'banana', 'cherry']

In the above code snippet, how would you append


'dragonfruit' to the list fruits?

fruits += 'dragonfruit'

fruits.append('dragonfruit')

fruits.add('dragonfruit')

fruits.insert('dragonfruit')

Question 7 Distinguish between the validation set and test set used in
creating models in AI development?

Both validation set and test set are used


interchangeably in AI model development.

Validation set is for final model testing, while the test


set is used during the initial phases for configuring
model settings.

These terms are relevant only to database


management systems, not AI model development.

Validation set helps in tuning model parameters, and


test set assesses the overall model effectiveness.

https://learn.wqu.edu/programs/enroll/applied-ai-lab/test/quiz 3/4
1/5/25, 9:42 PM Program Enrollment Test Quiz | WorldQuant University

Question 8 How would you compute the product of a 1x2 matrix and a
2x2 matrix? For instance, consider the following examples:

Multiplying these matrices is not feasible

The result is a 1x2 matrix: [53, 26]

The result is a 2x2 matrix: [35, 14; 42, 12]

The result is a 1x2 matrix: [5, 6]

Time left:
Question 9 What describes overfitting in machine learning? 21:20

When a model does not fit the training data closely QUESTIONS
enough
1 2 3 4 5
A technique used to increase model accuracy
6 7 8 9

When a model follows training data too closely,


capturing noise instead of the underlying pattern

Another name for highly accurate machine learning


models

SUBMIT

https://learn.wqu.edu/programs/enroll/applied-ai-lab/test/quiz 4/4

You might also like