NEW
Font size
WorksheetsQuiz on SDGs, Entrepreneurship, and Python
Total questions: 50
Worksheet time: 25mins
In which year were the UN Sustainable Development Goals (SDGs) adopted?
2005
2010
2015
2020
How many SDGs are there?
15
16
17
18
By which year do the SDGs aim to be achieved?
2025
2030
2035
2040
SDG 2 stands for:
No Poverty
Zero Hunger
Good Health and Well-being
Clean Water and Sanitation
Which SDG focuses on climate action?
SDG 7
SDG 10
SDG 13
SDG 15
AI-based mobile apps that detect malnutrition - supports which SDG?
SDG 1
SDG 2
SDG 3
SDG 4
Which SDG is related to education?
SDG 3
SDG 4
SDG 5
SDG 6
A chatbot for mental health awareness supports:
SDG 2
SDG 3
SDG 4
SDG 8
Which of these is NOT a challenge in achieving SDGs?
Lack of awareness
Political instability
Environmental disasters
Abundant resources
SDG 5 aims at:
Gender Equality
Industry & Innovation
Responsible Consumption
Sustainable Cities
AI can help reduce carbon emissions by:
Deforestation
Predicting weather and optimizing renewable energy
Increasing energy wastage
None of these
Which organization adopted SDGs?
WHO
UNESCO
UN
UNICEF
SDG 6 is related to:
Quality Education
Clean Water and Sanitation
Gender Equality
Climate Action
SDG 7 is about:
Clean Energy
Life Below Water
Peace and Justice
Responsible Consumption
Which SDG ensures "Peace, Justice and Strong Institutions"?
SDG 15
SDG 16
SDG 17
SDG 11
SDG 14 focuses on:
Life on Land
Life Below Water
Industry and Innovation
Sustainable Cities
Which SDG promotes partnerships among countries?
SDG 12
SDG 15
SDG 17
SDG 10
An entrepreneur is a person who:
Only works for salary
Runs a business and takes risks
Avoids risks completely
Is born with special powers
Entrepreneurship is mainly about:
Government jobs
Self-employment
Teaching
Import/Export only
Which of the following is NOT an activity of entrepreneurs?
Fulfil customer needs
Create jobs
Spread wealth
Ignore society
Using local resources for production helps to:
Increase costs
Lower costs
Stop business growth
Waste resources
Which quality is important for a successful entrepreneur?
Giving up easily
Laziness
Creativity
Over-dependence on others
Entrepreneurs contribute positively to society by:
Polluting the environment
Saving the environment
Ignoring customers
Avoiding innovation
One of the myths of entrepreneurship is:
Entrepreneurs are born, not made
Entrepreneurs create jobs
Entrepreneurs help society
Entrepreneurs innovate
Increased competition among entrepreneurs leads to:
Higher prices
Lower prices
Less innovation
Reduced quality of life
Which is true about entrepreneurship?
Only big businesses are entrepreneurs
One needs a lot of money to start
Entrepreneurs must know everything
Entrepreneurs can start small and grow
Which of these is NOT a quality of a successful entrepreneur?
Confidence
Patience
Responsibility
Carelessness
Which of these is a benefit of entrepreneurship?
Creates jobs
Spreads wealth
Improves living standards
All of these
Entrepreneurs take decisions after:
Thinking carefully
Guessing randomly
Following others blindly
Ignoring facts
Which of these is a false belief?
Entrepreneurs must take extreme risks
Entrepreneurs can start with small capital
Entrepreneurs can help society
Entrepreneurs can learn skills
Successful entrepreneurs are usually:
Hardworking
Patient
Confident
All of these
Which of these is an example of social entrepreneurship?
Building schools in rural areas
Ignoring community needs
Raising product prices unfairly
Copying others' businesses
Which of the following is the correct way to display output in Python?
echo("Hello")
print("Hello")
output("Hello")
display("Hello")
Python was designed to be:
Complex and lengthy
Simple and easy to learn
Hardware-dependent
Useless for beginners
Which symbol is used for concatenation in Python?
*
+
-
&
What will be the output of: print("AI" + "Class")
AI Class
AIClass
Error
AI+Class
What is the output of: print("3" + "5")
8
35
Error
53
Which operator is used for addition of numbers in Python?
*
+
-
/
What will be the output of: print(3 + 5)
35
8
Error
53
Which of these is a valid string in Python?
"AI"
'AI'
"""AI"""
All of these
What is the output of: print("AI" * 3)
AI 3
AI AI AI
AIAIAI
Error
What is an IDE?
Integrated Development Environment
Intelligent Debugging Editor
Internal Data Execution
None
Which of these is NOT a Python IDE?
IDLE
PyCharm
Thonny
MS Word
Which mode of Python IDE executes code line by line?
Script Mode
Interactive Mode
Debug Mode
Compile Mode
Which mode is used for saving programs as .py files?
Script Mode
Interactive Mode
Debug Mode
Output Mode
Which function is used to take user input in Python?
read()
input()
get()
scan()
If user enters "5" and "6" as input (both strings), what will be the output of: print(a + b) where a="5", b="6"
11
56
Error
None
What in the Meaning of "Type" - when it shows "TypeError" in Python ?
Typing Error
Error in Type of Font
Error in Type of Data
None of these
Which function is used to check the data type of a variable?
data()
type()
var()
check()
Which of these is used to go to next line (New Line Character) Python?
#
\n
+
//
