🟢 PART A – 30 MCQs (with Answers)
1. Which cloud is owned by one organization?
👉 Private
2. Google Drive is a type of:
👉 Cloud storage
3. Which keyword defines function?
👉 def
4. Which loop runs till condition becomes false?
👉 while
5. Which operator checks membership?
👉 in
6. Which app runs in browser?
👉 Web app
7. Which statement skips iteration?
👉 continue
8. Which statement exits loop?
👉 break
9. WhatsApp is:
👉 Mobile app
10. Which cloud combines public & private?
👉 Hybrid
11. Which function prints output?
👉 print()
12. Collection of values is called:
👉 List
13. AWS stands for:
👉 Amazon Web Services
14. Loop inside loop is called:
👉 Nested loop
15. Which is NOT cloud storage?
👉 Pen drive
16. Which loop used when iterations known?
👉 for
17. Which operator checks NOT present?
👉 not in
18. Which reduces hardware cost?
👉 Cloud computing
19. Which block starts function?
👉 def
20. Online apps are:
👉 Web apps
21. Infinite loop means:
👉 Never ends
22. Zoom is used for:
👉 Video calling
23. Which repeats code?
👉 Loop
24. Which takes input?
👉 input()
25. Group of statements performing task:
👉 Function
26. Dropbox is:
👉 Cloud provider
27. Which app type runs on PC?
👉 Desktop app
28. Which cloud is shared by similar org?
👉 Community
29. Python uses ____ for blocks
👉 Indentation
30. Which is cloud benefit?
👉 Backup
🟢 PART B – 30 Fill in the Blanks
1. Google Drive is __________ storage.
👉 cloud
2. Python uses __________.
👉 indentation
3. AWS means __________.
👉 Amazon Web Services
4. WhatsApp is __________ app.
👉 mobile
5. Loop inside loop = __________ loop.
👉 nested
6. break stops the __________.
👉 loop
7. input() takes __________.
👉 input
8. not in checks __________.
👉 absence
9. A group of values is __________.
👉 list
10. Cloud reduces hardware __________.
👉 cost
11. Function starts with __________.
👉 def
12. Zoom is __________ app.
👉 video calling
13. continue skips __________ iteration.
👉 current
14. Public cloud is for __________.
👉 everyone
15. Infinite loop runs __________.
👉 forever
16. Collection of statements is __________.
👉 function
17. Online apps are __________ apps.
👉 web
18. Data saved on internet is __________.
👉 cloud storage
19. Mobile apps run on __________.
👉 phone
20. Hybrid cloud combines __________ and __________.
👉 public, private
21. Loop repeats __________.
👉 code
22. Dropbox is __________ provider.
👉 cloud
23. Python output uses __________.
👉 print()
24. A program flow controller is __________.
👉 control structure
25. Shopping app is __________ app.
👉 mobile
26. Gmail is __________ app.
👉 web
27. Private cloud is for __________ org.
👉 single
28. For loop uses __________.
👉 range
29. List written using __________.
👉 brackets
30. Cloud provides __________ backup.
👉 automatic
🟢 PART C – 15 Very Short Answers
1. Cloud computing → Internet data storage
2. Two cloud providers → Google Drive, Dropbox
3. Infinite loop → Never ending loop
4. App → Software program
5. Membership operator → in / not in
6. Hybrid cloud → Public + Private
7. break → Stops loop
8. continue → Skips iteration
9. Function → Block of code
10. Mobile app example → WhatsApp
11. Web app example → Gmail
12. Loop → Repeats code
13. input() → Takes input
14. print() → Shows output
15. AWS → Amazon Web Services
🟢 PART D – 15 Short Questions (with Answers)
1. Types of cloud
👉 Public, Private, Hybrid, Community
2. What is loop?
👉 Repeats statements
3. Cloud benefits
👉 Backup, low cost
4. Mobile vs Web app
👉 Mobile installed, Web browser based
5. Control structures
👉 Sequential, Selection, Iteration
6. Membership operators
👉 in, not in
7. Cloud storage
👉 Online data saving
8. Function
👉 Group of statements
9. for loop use
👉 Known iterations
10. while loop use
👉 Condition based
11. App uses
👉 Shopping, learning
12. break vs continue
👉 break exits, continue skips
13. List
👉 Collection of values
14. Nested loop
👉 Loop inside loop
15. App development steps
👉 Plan, Design, Code, Test, Deploy
🟢 PART E – 15 Long Questions (Exam Ready)
1. Explain Cloud Computing
Cloud computing stores data on internet servers.
Advantages:
• Anywhere access
• Backup
• Low cost
Challenges:
• Internet needed
• Security issues
2. Types of Cloud
Public – everyone
Private – one org
Hybrid – mix
Community – shared
3. for vs while loop
for while
Fixed Condition
4. App Development Cycle
Idea → Design → Coding → Testing → Deployment → Maintenance
5. Membership operators with example
L=[1,2,3]
print(2 in L)
6. Python even numbers
for i in range(1,21):
if i%2==0:
print(i)
7. Sum of list
L=[10,20,30]
s=0
for i in L:
s+=i
print(s)
8. break & continue program
for i in range(5):
if i==2:
continue
print(i)
9. Cloud storage examples
Google Drive, Dropbox
10. Shopping app features
Cart, payment
11. Control Structures
Sequential, Selection, Iteration
12. Function example
def show():
print("Hello")
13. Even/Odd with count
e=o=0
for i in range(1,11):
if i%2==0:
e+=1
else:
o+=1
print(e,o)
14. Web vs Mobile apps
Browser vs Installed
15. Hybrid Cloud explanation
Uses both public & private cloud
📕 CHAPTER 1 – CLOUD COMPUTING
🔹 What is Cloud Computing?
Cloud computing means storing data and using software over the internet instead of local
computer storage.
Examples:
• Google Drive
• Dropbox
• OneDrive
🔹 Cloud Storage
Saving files on online servers.
Advantages:
✅ Anywhere access
✅ Automatic backup
✅ Less hardware cost
Challenges:
❌ Needs internet
❌ Data security risk
🔹 Types of Cloud
Type Meaning
Public Used by everyone
Private One organization
Hybrid Public + Private
Community Similar organizations
🔹 Cloud Providers
Google Drive, AWS, Dropbox, OneDrive
📕 CHAPTER 2 – PYTHON BASICS & LOOPS
🔹 What is Python?
Python is a high-level programming language used to create programs.
🔹 List
Collection of values.
Example:
L = [10,20,30]
🔹 Membership Operators
Operator Meaning
in Present
not in Not present
🔹 Loops
for loop
Used when repetitions known.
for i in range(5):
print(i)
while loop
Runs while condition true.
i=0
while i<5:
print(i)
i+=1
🔹 break & continue
break → stops loop
continue → skips iteration
🔹 Functions
Group of statements performing task.
def show():
print("Hello")
📕 CHAPTER 3 – APP DEVELOPMENT
🔹 What is App?
Software used to perform tasks.
🔹 Types of Apps
Type Example
Mobile WhatsApp
Web Gmail
Desktop Paint
🔹 App Development Cycle
1. Idea
2. Design
3. Coding
4. Testing
5. Deployment
6. Maintenance
🟢 100 MCQ PRACTICE (With Answers)
🟢 CLOUD COMPUTING (1–35)
1. Cloud stores data on:
A) HDD B) RAM C) Internet D) Pen drive
👉C
2. Google Drive is:
👉 Cloud storage
3. AWS stands for?
👉 Amazon Web Services
4. Private cloud is for:
👉 One organization
5. Hybrid cloud is:
👉 Public + Private
6. Dropbox is:
👉 Cloud provider
7. Cloud reduces:
👉 Hardware cost
8. Public cloud used by:
👉 Everyone
9. Community cloud shared by:
👉 Similar orgs
10. Data online called:
👉 Cloud storage
11. OneDrive is:
👉 Cloud
12. Cloud backup is:
👉 Automatic
13. Internet required for cloud:
👉 Yes
14. Security risk exists in:
👉 Cloud
15. Zoom used for:
👉 Video calls
16. Example cloud app:
👉 Gmail
17. Cloud benefit:
👉 Anywhere access
18. Storage on server:
👉 Cloud
19. Not cloud storage:
👉 Pen drive
20. Cloud saves:
👉 Space
21. Cloud example:
👉 Dropbox
22. Hardware cost reduced by:
👉 Cloud
23. Cloud sharing is:
👉 Easy
24. AWS is by:
👉 Amazon
25. Cloud storage accessed via:
👉 Internet
26. Cloud data safe with:
👉 Backup
27. Gmail is:
👉 Web app
28. WhatsApp is:
👉 Mobile app
29. Cloud servers located:
👉 Remote
30. Cloud used in schools for:
👉 Data storage
31. Example hybrid cloud:
👉 Mix cloud
32. Cloud removes need of:
👉 Physical storage
33. Cloud provider:
👉 Google
34. Cloud gives:
👉 Flexibility
35. Cloud storage example:
👉 OneDrive
🟢 PYTHON (36–75)
36. Python is:
👉 Programming language
37. Output function:
👉 print()
38. Input function:
👉 input()
39. Collection of values:
👉 List
40. List written in:
👉[]
41. Operator to check presence:
👉 in
42. Loop repeats:
👉 Code
43. for loop used when:
👉 Known times
44. while loop used when:
👉 Condition based
45. Infinite loop:
👉 Never ends
46. break does:
👉 Exit loop
47. continue does:
👉 Skip iteration
48. Function defined by:
👉 def
49. Nested loop:
👉 Loop inside loop
50. Python blocks use:
👉 Indentation
51. Example list:
👉 [1,2,3]
52. Membership operator:
👉 not in
53. Even number check:
👉%
54. range() used in:
👉 for loop
55. Function example:
👉 def show():
56. Variable stores:
👉 Value
57. % is:
👉 Modulus
58. Loop control:
👉 break
59. Loop skip:
👉 continue
60. Python is:
👉 High level
61. Count values using:
👉 Loop
62. Print 1–10:
👉 for loop
63. Check list:
👉 in
64. Infinite loop cause:
👉 Always true
65. Sum list:
👉 Loop
66. Syntax blocks by:
👉 Indentation
67. Input stored in:
👉 Variable
68. Range gives:
👉 Numbers
69. Nested loop used for:
👉 Pattern
70. Python function:
👉 Reusable
71. Odd even using:
👉 if
72. List index starts:
👉0
73. Python file extension:
👉 .py
74. break exits:
👉 Loop
75. continue skips:
👉 Current
🟢 APP DEVELOPMENT (76–100)
76. App means:
👉 Application
77. WhatsApp is:
👉 Mobile app
78. Gmail is:
👉 Web app
79. Paint is:
👉 Desktop app
80. Shopping app type:
👉 Mobile
81. First app step:
👉 Idea
82. Layout stage:
👉 Design
83. Writing code:
👉 Coding
84. Checking errors:
👉 Testing
85. Launch app:
👉 Deployment
86. Fixing bugs:
👉 Maintenance
87. App used for shopping:
👉 Flipkart
88. Video call app:
👉 Zoom
89. Web app runs in:
👉 Browser
90. Mobile app runs on:
👉 Phone
91. Desktop app runs on:
👉 PC
92. Cart feature in:
👉 Shopping app
93. Chat feature in:
👉 WhatsApp
94. Learning apps:
👉 Byju’s
95. App improves:
👉 Productivity
96. Online class app:
👉 Zoom
97. App features:
👉 Payment
98. App development cycle ends with:
👉 Maintenance
99. App sharing via:
👉 Play Store
100. App means:
👉 Software
50 Fill in the Blanks (with Answers)
1. Google Drive is a __________ storage service.
👉 cloud
2. AWS stands for __________.
👉 Amazon Web Services
3. Python uses __________ to define blocks.
👉 indentation
4. A loop that never ends is called __________ loop.
👉 infinite
5. The __________ operator checks membership.
👉 in
6. WhatsApp is a __________ app.
👉 mobile
7. Gmail is a __________ app.
👉 web
8. The __________ statement stops a loop.
👉 break
9. The __________ statement skips current iteration.
👉 continue
10. A group of statements performing a task is called __________.
👉 function
11. Cloud computing reduces __________ cost.
👉 hardware
12. Dropbox is a __________ provider.
👉 cloud
13. Hybrid cloud is combination of __________ and __________ cloud.
👉 public, private
14. Collection of values in Python is called __________.
👉 list
15. The function used to display output is __________.
👉 print()
16. The function used to take input is __________.
👉 input()
17. A loop inside another loop is called __________ loop.
👉 nested
18. Python files are saved with __________ extension.
👉 .py
19. Online applications are called __________ apps.
👉 web
20. Mobile apps run on __________.
👉 smartphones
21. The keyword used to define function is __________.
👉 def
22. The __________ loop is used when number of iterations is known.
👉 for
23. The __________ loop runs until condition becomes false.
👉 while
24. not in operator checks __________.
👉 absence
25. Zoom is used for __________ calls.
👉 video
26. Public cloud is accessible to __________.
👉 everyone
27. Private cloud is owned by __________ organization.
👉 one
28. Community cloud is shared by __________ organizations.
👉 similar
29. Data stored on internet is called __________ storage.
👉 cloud
30. The modulus operator is represented by __________.
👉%
31. break statement completely __________ the loop.
👉 exits
32. continue statement __________ current iteration.
👉 skips
33. The range() function generates __________.
👉 numbers
34. Shopping app is an example of __________ app.
👉 mobile
35. Gmail works through __________.
👉 browser
36. App development starts with __________.
👉 idea
37. Writing program is called __________.
👉 coding
38. Finding errors is called __________.
👉 testing
39. Releasing app to users is called __________.
👉 deployment
40. Maintaining app after release is called __________.
👉 maintenance
41. A Python list is written inside __________ brackets.
👉 square
42. Control structure manages program __________.
👉 flow
43. for and while are types of __________.
👉 loops
44. AWS is provided by __________.
👉 Amazon
45. Cloud provides automatic __________.
👉 backup
46. The operator used for equality is __________.
👉 ==
47. Variables store __________.
👉 values
48. Even numbers are divisible by __________.
👉2
49. Desktop apps run on __________.
👉 computer
50. Flipkart is an example of __________ app.
👉 shopping
🖥️ MODEL QUESTION PAPER – SET A
Class VIII – Computer
Time: 3 Hours M.M.: 80
Q1. Multiple Choice Questions (10 × 1 = 10)
1. Which is an example of web app?
a) WhatsApp b) Paint c) Gmail d) Calculator
2. Which cloud is accessible by everyone?
a) Private b) Hybrid c) Public d) Community
3. Which keyword is used to create function?
a) func b) define c) def d) fun
4. Which loop runs based on condition?
a) for b) while c) nested d) repeat
5. Which operator checks presence?
a) == b) in c) % d) +
6. Which app is used for online classes?
a) Zoom b) Paint c) Notepad d) Camera
7. Which statement exits loop?
a) continue b) stop c) break d) pass
8. A list is written using:
a) {} b) () c) [] d) <>
9. Which is NOT cloud storage?
a) OneDrive b) Dropbox c) Google Drive d) Hard disk
10. Which app runs on computer?
a) Mobile app b) Web app c) Desktop app d) System
Q2. Fill in the blanks (10 × 1 = 10)
1. Python uses __________ for blocks.
2. AWS means __________.
3. WhatsApp is a __________ app.
4. Cloud reduces __________ cost.
5. A loop inside loop is called __________ loop.
6. input() takes __________.
7. Hybrid cloud combines __________ and __________.
8. break stops the __________.
9. Online apps are called __________ apps.
10. Collection of values is called __________.
Q3. Very Short Answer (5 × 2 = 10)
1. Define cloud storage.
2. Write two cloud providers.
3. What is loop?
4. Define app.
5. Write one benefit of cloud computing.
Q4. Short Answer (5 × 4 = 20)
1. Explain types of cloud.
2. Difference between for and while loop.
3. Explain membership operators with example.
4. Explain types of apps.
5. What is Python function?
Q5. Application Based (4 × 5 = 20)
1. Your school wants to save marks online.
a) Which technology?
b) Two platforms
c) Two benefits
2. Write Python program to print numbers 1 to 10.
3. Online shopping app is created.
a) App type
b) Two features
c) Two uses
4. Write Python program to check if a number exists in list.
Q6. Long Answer (2 × 5 = 10)
1. Explain cloud computing with advantages.
OR
Explain for loop with example.
2. Explain app development cycle.
OR
Write program to print even numbers from 1–20.
🖥️ MODEL QUESTION PAPER – SET B
Class VIII – Computer
Time: 3 Hours M.M.: 80
Q1. MCQs (10 × 1 = 10)
1. Which cloud is used by one organization?
a) Public b) Private c) Hybrid d) Community
2. Which function displays output?
a) input() b) print() c) show() d) display()
3. Which loop is used when repetitions known?
a) while b) infinite c) for d) nested
4. Which operator checks absence?
a) in b) == c) not in d) %
5. Zoom is used for:
a) Drawing b) Gaming c) Video calls d) Editing
6. Which statement skips iteration?
a) break b) continue c) stop d) pass
7. Gmail is:
a) Desktop app b) Mobile app c) Web app d) System app
8. Which symbol represents list?
a) () b) {} c) [] d) <>
9. AWS is provided by:
a) Google b) Microsoft c) Amazon d) Apple
10. Which is NOT app type?
a) Web b) Mobile c) Desktop d) Hardware
Q2. Fill in the blanks (10 × 1 = 10)
1. Python file extension is __________.
2. Dropbox is __________ provider.
3. continue __________ current loop.
4. Public cloud is used by __________.
5. Shopping app is __________ app.
6. Group of statements is called __________.
7. % is __________ operator.
8. Data stored online is __________ storage.
9. First step of app development is __________.
10. Nested loop means __________ inside loop.
Q3. Very Short (5 × 2 = 10)
1. Define hybrid cloud.
2. Write two uses of apps.
3. What is infinite loop?
4. Define membership operator.
5. Write one example of web app.
Q4. Short Answer (5 × 4 = 20)
1. Explain cloud storage.
2. What is control structure?
3. Explain break and continue.
4. Difference between mobile & web app.
5. Explain Python list.
Q5. Application Based (4 × 5 = 20)
1. Teacher shares notes online.
a) Technology
b) Two platforms
c) Two benefits
2. Python program to print odd numbers 1–20.
3. Online class app created.
a) App type
b) Two uses
c) Two features
4. Write Python program to find sum of list.
Q6. Long Answer (2 × 5 = 10)
1. Explain types of cloud computing.
OR
Explain while loop with example.
2. Explain app development process.
OR
Write program using for and while loop.
✅ MODEL PAPER – SET A (ANSWERS)
Q1. MCQs
1. c) Gmail
2. c) Public
3. c) def
4. b) while
5. b) in
6. a) Zoom
7. c) break
8. c) []
9. d) Hard disk
10. c) Desktop app
Q2. Fill in the blanks
1. indentation
2. Amazon Web Services
3. mobile
4. hardware
5. nested
6. input
7. public, private
8. loop
9. web
10. list
Q3. Very Short Answer
1. Cloud storage means saving data on internet servers.
2. Google Drive, Dropbox
3. Loop repeats statements.
4. App is a software application used to perform tasks.
5. Anywhere access (or backup / low cost).
Q4. Short Answer
1. Types of Cloud
• Public – everyone
• Private – one organization
• Hybrid – public + private
• Community – similar organizations
2. for vs while
for while
Fixed repetitions Condition based
3. Membership operators
in, not in
Example:
L=[1,2,3]
print(2 in L)
4. Types of apps
• Mobile (WhatsApp)
• Web (Gmail)
• Desktop (Paint)
5. Python Function
A function is a block of code performing a task.
def show():
print("Hello")
Q5. Application Based
1.
a) Cloud computing
b) Google Drive, Dropbox
c) Easy sharing, backup
2.
for i in range(1,11):
print(i)
3.
a) Mobile app
b) Cart, payment
c) Buy products, track orders
4.
L=[10,20,30]
n=int(input("Enter number:"))
if n in L:
print("Found")
else:
print("Not found")
Q6. Long Answer
1. Cloud Computing
Storing data on internet.
Advantages:
• Anywhere access
• Backup
• Low cost
OR
for i in range(5):
print(i)
2. App Development Cycle
Idea → Design → Coding → Testing → Deployment → Maintenance
OR
for i in range(1,21):
if i%2==0:
print(i)
✅ MODEL PAPER – SET B (ANSWERS)
Q1. MCQs
1. b) Private
2. b) print()
3. c) for
4. c) not in
5. c) Video calls
6. b) continue
7. c) Web app
8. c) []
9. c) Amazon
10. d) Hardware
Q2. Fill in the blanks
1. .py
2. cloud
3. skips
4. everyone
5. mobile
6. function
7. modulus
8. cloud
9. idea
10. loop
Q3. Very Short
1. Hybrid cloud = Public + Private
2. Shopping, learning
3. Loop that never ends
4. Operator checking presence (in / not in)
5. Gmail
Q4. Short Answer
1. Cloud Storage
Saving data online (Google Drive, Dropbox).
2. Control Structure
Controls program flow.
Types:
Sequential, Selection, Iteration
3. break & continue
break → exits loop
continue → skips iteration
4. Mobile vs Web
Mobile – installed
Web – browser based
5. Python List
Collection of values.
L=[10,20,30]
Q5. Application Based
1.
a) Cloud computing
b) Google Drive, Dropbox
c) Easy sharing, safe storage
2.
for i in range(1,21):
if i%2!=0:
print(i)
3.
a) Mobile / Web app
b) Attend class, share notes
c) Video call, chat
4.
L=[10,20,30]
s=0
for i in L:
s+=i
print("Sum =",s)
Q6. Long Answer
1. Types of Cloud
Public, Private, Hybrid, Community
OR
i=0
while i<5:
print(i)
i+=1
2. App Development Process
Idea → Design → Coding → Testing → Deployment → Maintenance
OR
for i in range(3):
print("For",i)
j=0
while j<3:
print("While",j)
j+=1