Python training exercice

Python training exercice

Professional Development

6 Qs

quiz-placeholder

Similar activities

Soal SKD

Soal SKD

University - Professional Development

10 Qs

Python Quiz

Python Quiz

Professional Development

10 Qs

PYTHON QUIZ3

PYTHON QUIZ3

University - Professional Development

10 Qs

Kuis Online - Komputer

Kuis Online - Komputer

10th Grade - Professional Development

10 Qs

Demo C programming

Demo C programming

Professional Development

10 Qs

Excel Data Validation

Excel Data Validation

6th Grade - Professional Development

10 Qs

Scratch!

Scratch!

4th Grade - Professional Development

8 Qs

Codingnest C++ : Introduction to flowcharts quiz

Codingnest C++ : Introduction to flowcharts quiz

Professional Development

10 Qs

Python training exercice

Python training exercice

Assessment

Quiz

Computers

Professional Development

Easy

Created by

sara souna

Used 3+ times

FREE Resource

6 questions

Show all answers

1.

OPEN ENDED QUESTION

5 mins • 1 pt

Media Image

Average of Numbers: Write a program that takes a list of numbers as input and calculates the average. Create a function called calculate_average that accepts a list of numbers and returns the average.

Evaluate responses using AI:

OFF

2.

OPEN ENDED QUESTION

10 mins • 1 pt

Media Image

List Filtering

Write a program that takes a list of numbers as input and prints only the even numbers.

Evaluate responses using AI:

OFF

3.

OPEN ENDED QUESTION

10 mins • 1 pt

Media Image

Simple Calculator

Write a program that takes two numbers and an operator (+, -, *, /) as input and performs the corresponding operation.

Evaluate responses using AI:

OFF

4.

OPEN ENDED QUESTION

15 mins • 1 pt

Media Image

Palindrome Checker

Write a program that takes a string as input and checks whether it is a palindrome (reads the same backward as forward) or not. Create a function called is_palindrome to perform the palindrome check.

Evaluate responses using AI:

OFF

5.

OPEN ENDED QUESTION

15 mins • 1 pt

Media Image

Password Checker

Write a program that takes a password as input and checks if it meets the following criteria:

  • At least 8 characters long

  • Contains both uppercase and lowercase letters

  • Contains at least one digit

  • Note : use any() function in Python, it is a built-in function that returns True if at least one element of an iterable is true. If the iterable is empty, it returns False. Here are a couple of examples:

Evaluate responses using AI:

OFF

6.

OPEN ENDED QUESTION

15 mins • 1 pt

Media Image

Number Guessing Game

Create a number-guessing game where the program randomly generates a number between 1 and 100, and the user has to guess the number. Provide hints such as "Too high" or "Too low" after each guess. Use functions to organize your code.

Note: use this function to generate a random number between 1 and 100.

Evaluate responses using AI:

OFF