Skip to content

Commit 06dbbab

Browse files
authored
Merge pull request #230 from Namanv0509/storage-quiz
intro storage quiz
2 parents 5f7de3d + d137c93 commit 06dbbab

File tree

7 files changed

+396
-0
lines changed
  • content/learning-paths/98e16360-a366-4b78-8e0a-031da07fdacb/cloud-fundamentals/intro-storage
    • block-storage/knowledge-check
    • file-storage/knowledge-check
    • object-storage/knowledge-check
    • object-vs-block/knowledge-check
    • what-types-of-storage/knowledge-check
    • why-cloud-storage/knowledge-check
    • why-storage/knowledge-check

7 files changed

+396
-0
lines changed
Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,57 @@
1+
---
2+
title: "Knowledge Check"
3+
id: "block-storage"
4+
passing_percentage: 75
5+
questions:
6+
- id: "q1"
7+
text: "For which scenarios is block storage considered an ideal choice?"
8+
type: "mcq"
9+
multiple_answers: true
10+
marks: 2
11+
options:
12+
- id: "a"
13+
text: "Databases requiring high-performance storage"
14+
is_correct: true
15+
- id: "b"
16+
text: "Virtual machines needing rapid data access"
17+
is_correct: true
18+
- id: "c"
19+
text: "Simple data retrieval that doesnt require high I/O performance"
20+
- id: "d"
21+
text: "Storage of unstructured data like photos and videos"
22+
- id: "q2"
23+
text: "Which of the following statements correctly describe the advantages of block storage?"
24+
type: "mcq"
25+
multiple_answers: true
26+
marks: 2
27+
options:
28+
- id: "a"
29+
text: "Block storage provides direct access to data blocks, which is beneficial for applications needing low latency"
30+
is_correct: true
31+
- id: "b"
32+
text: "Block storage is not suitable for applications that require high IOPS"
33+
- id: "c"
34+
text: "Block storage systems can be scaled both vertically and horizontally"
35+
is_correct: true
36+
- id: "d"
37+
text: "Block storage performs poorly in virtualized enviornments"
38+
- id: "q3"
39+
text: "What roles does block storage play in data management and IT infrastructures?"
40+
type: "mcq"
41+
multiple_answers: true
42+
marks: 2
43+
options:
44+
- id: "a"
45+
text: "It is used for efficient data access and retrieval in database storage"
46+
is_correct: true
47+
- id: "b"
48+
text: "It provides scalable storage solutions for big data analytics enviornments"
49+
- id: "c"
50+
text: "It is utilized for persistent storage in various applications"
51+
is_correct: true
52+
- id: "d"
53+
text: "It is mainly used for temporary data caching that requires frequent deletion"
54+
layout: "quiz"
55+
type: "quiz"
56+
---
57+
This knowledge check section allows you to review your educational progress. It's not a test or an exam; it's a location determination in your learning journey. Give it a try!
Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
---
2+
title: "Knowledge Check"
3+
id: "file-storage"
4+
passing_percentage: 75
5+
questions:
6+
- id: "q1"
7+
text: "What types of cloud file storage delivery methods are available?"
8+
type: "mcq"
9+
multiple_answers: true
10+
marks: 2
11+
options:
12+
- id: "a"
13+
text: "Fully managed solutions"
14+
is_correct: true
15+
- id: "b"
16+
text: "Peer-to-peer file storage configurations"
17+
- id: "c"
18+
text: "Do-it-yourself solutions with separate compute and storage"
19+
is_correct: true
20+
- id: "d"
21+
text: "Localized physical server arrays that sync with the cloud"
22+
is_correct: true
23+
- id: "e"
24+
text: "CLoud file storage that operates exclusively offline"
25+
- id: "q2"
26+
text: "What advantages does cloud-based file storage provide?"
27+
type: "mcq"
28+
multiple_answers: true
29+
marks: 2
30+
options:
31+
- id: "a"
32+
text: "Accessiblity from anywhere with an internet connection"
33+
is_correct: true
34+
- id: "b"
35+
text: "Scalability of storage capacity"
36+
is_correct: true
37+
- id: "c"
38+
text: "Built-in data backup and recovery features"
39+
is_correct: true
40+
- id: "d"
41+
text: "Lowered accessibility for users with different devices"
42+
layout: "quiz"
43+
type: "quiz"
44+
---
45+
This knowledge check section allows you to review your educational progress. It's not a test or an exam; it's a location determination in your learning journey. Give it a try!
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
---
2+
title: "Knowledge Check"
3+
id: "object-storage"
4+
passing_percentage: 75
5+
questions:
6+
- id: "q1"
7+
text: "How do object storage systems handle data storage and manipulation?"
8+
type: "mcq"
9+
multiple_answers: true
10+
marks: 2
11+
options:
12+
- id: "a"
13+
text: "They manage data as distinct uits called objects, which contain the data, metadata, and a unique identifier"
14+
is_correct: true
15+
- id: "b"
16+
text: "They organize data in a hierarchical structure with nesed folders and files"
17+
- id: "c"
18+
text: "They require a relational database management system to store and access objects"
19+
- id: "d"
20+
text: "They typically use RESTful APIs for smooth integrations with applications for storing and retrieving data"
21+
is_correct: true
22+
- id: "q2"
23+
text: "Which features of object storage contribute to its scalability and reliability?"
24+
type: "mcq"
25+
multiple_answers: true
26+
marks: 2
27+
options:
28+
- id: "a"
29+
text: "It can handle petabytes or exabytes of data"
30+
is_correct: true
31+
- id: "b"
32+
text: "Object storage uses data replication and error correction techniques"
33+
is_correct: true
34+
- id: "c"
35+
text: "Object storage requires complex storage architectures to scale"
36+
- id: "d"
37+
text: "It is limited to a specific file system hierarchy for data organization"
38+
layout: "quiz"
39+
type: "quiz"
40+
---
41+
This knowledge check section allows you to review your educational progress. It's not a test or an exam; it's a location determination in your learning journey. Give it a try!
Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
---
2+
title: "Knowledge Check"
3+
id: "object-vs-block"
4+
passing_percentage: 75
5+
questions:
6+
- id: "q1"
7+
text: "Which statements accurately describe cost considerations for object and block storage?"
8+
type: "mcq"
9+
multiple_answers: true
10+
marks: 2
11+
options:
12+
- id: "a"
13+
text: "Object storage is generally more cost-efficient than block storage, especially at scale"
14+
is_correct: true
15+
- id: "b"
16+
text: "Block storage is consistently cheaper than object storage due to lower hardware costs"
17+
- id: "c"
18+
text: "Retrieving data from block storage is typically more expensive than from object storage"
19+
is_correct: true
20+
- id: "d"
21+
text: "Object storage can use commodity hardware, which may reduce hardware costs compared to block storage"
22+
is_correct: true
23+
- id: "q2"
24+
text: "When should you consider using object storage over block storage?"
25+
type: "mcq"
26+
multiple_answers: true
27+
marks: 2
28+
options:
29+
- id: "a"
30+
text: "When you need to store unstructured data such as multimedia files and backups"
31+
is_correct: true
32+
- id: "b"
33+
text: "For applications that require the lowest possible latency in data access"
34+
- id: "c"
35+
text: "When using databases and applications that need high throughput and low latency"
36+
- id: "d"
37+
text: "If you require a storage solution that can easily scale and handle petabytes-scale data volumes"
38+
is_correct: true
39+
- id: "q3"
40+
text: "What are the key performance characteristics of object and block storage?"
41+
type: "mcq"
42+
multiple_answers: true
43+
marks: 2
44+
options:
45+
- id: "a"
46+
text: "Block storage typically provides lower latency, suitable for databases and virtual machines"
47+
is_correct: true
48+
- id: "b"
49+
text: "Object storage offers the best performance for all types of workfloads due to its scalability"
50+
- id: "c"
51+
text: "Object storage can deliver higher throughput for large data access requests, thanks to parallel data access"
52+
is_correct: true
53+
- id: "d"
54+
text: "Block storage surpasses object storage in scalability and is better suited for distributed data storage"
55+
layout: "quiz"
56+
type: "quiz"
57+
---
58+
This knowledge check section allows you to review your educational progress. It's not a test or an exam; it's a location determination in your learning journey. Give it a try!
Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
---
2+
title: "Knowledge Check"
3+
id: "what-types-of-storage"
4+
passing_percentage: 75
5+
questions:
6+
- id: "q1"
7+
text: "Which storage type is specifically designed for high-performance applications that require low-level access to storage?"
8+
type: "mcq"
9+
multiple_answers: true
10+
marks: 2
11+
options:
12+
- id: "a"
13+
text: "File Storage"
14+
- id: "b"
15+
text: "Object Storage"
16+
- id: "c"
17+
text: "Block Storage"
18+
is_correct: true
19+
- id: "q2"
20+
text: "Which of these storage types manage data in a flat structure with no directories or folders?"
21+
type: "mcq"
22+
multiple_answers: true
23+
marks: 2
24+
options:
25+
- id: "a"
26+
text: "File Storage"
27+
- id: "b"
28+
text: "Object Storage"
29+
is_correct: true
30+
- id: "c"
31+
text: "Block Storage"
32+
- id: "q3"
33+
text: "Which storage types require a file system to manage and organize data"
34+
type: "mcq"
35+
multiple_answers: true
36+
marks: 2
37+
options:
38+
- id: "a"
39+
text: "File Storage"
40+
is_correct: true
41+
- id: "b"
42+
text: "Object Storage"
43+
- id: "c"
44+
text: "Block Storage"
45+
is_correct: true
46+
- id: "d"
47+
text: "All of the above"
48+
- id: "q4"
49+
text: "What are the elements that typically constitute an object in Object Storage?"
50+
type: "mcq"
51+
multiple_answers: true
52+
marks: 2
53+
options:
54+
- id: "a"
55+
text: "Data"
56+
is_correct: true
57+
- id: "b"
58+
text: "Metadata"
59+
is_correct: true
60+
- id: "c"
61+
text: "Unique identifier"
62+
is_correct: true
63+
- id: "d"
64+
text: "File system hierarchy"
65+
layout: "quiz"
66+
type: "quiz"
67+
---
68+
This knowledge check section allows you to review your educational progress. It's not a test or an exam; it's a location determination in your learning journey. Give it a try!
Lines changed: 66 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
---
2+
title: "Knowledge Check"
3+
id: "why-cloud-storage"
4+
passing_percentage: 75
5+
questions:
6+
- id: "q1"
7+
text: "What features of cloud storage contribute to its cost-effectiveness?"
8+
type: "mcq"
9+
multiple_answers: true
10+
marks: 2
11+
options:
12+
- id: "a"
13+
text: "Reduce on-premises hardware investment"
14+
is_correct: true
15+
- id: "b"
16+
text: "Higher maintenance costs for users"
17+
- id: "c"
18+
text: "Subscription-based payment models"
19+
is_correct: true
20+
- id: "d"
21+
text: "Limited storage capacity options"
22+
- id: "e"
23+
text: "Elimnates the need to invest in physical storage infrastructure"
24+
is_correct: true
25+
- id: "q2"
26+
text: "Which of the following are benefits of cloud storage?"
27+
type: "mcq"
28+
multiple_answers: true
29+
marks: 2
30+
options:
31+
- id: "a"
32+
text: "Scalability"
33+
is_correct: true
34+
- id: "b"
35+
text: "Inflexible in changing storage requirements"
36+
- id: "c"
37+
text: "Accessibility from multiple devices"
38+
is_correct: true
39+
- id: "d"
40+
text: "Higher inital costs for physical infrastructure"
41+
- id: "e"
42+
text: "Enchanced collaboration opportunites"
43+
is_correct: true
44+
- id: "q3"
45+
text: "How does cloud storage facilitate collaboration and data management?"
46+
type: "mcq"
47+
multiple_answers: true
48+
marks: 2
49+
options:
50+
- id: "a"
51+
text: "It requires files to be manually synchronized among users"
52+
- id: "b"
53+
text: "Allows multiple users to access and work on the same files simultaneously"
54+
is_correct: true
55+
- id: "c"
56+
text: "Makes it easier to share documents among team members"
57+
is_correct: true
58+
- id: "d"
59+
text: "Accessible from anywhere with an internet connection"
60+
is_correct: true
61+
- id: "e"
62+
text: "Users need specialized software for every different platform they access"
63+
layout: "quiz"
64+
type: "quiz"
65+
---
66+
This knowledge check section allows you to review your educational progress. It's not a test or an exam; it's a location determination in your learning journey. Give it a try!

0 commit comments

Comments
 (0)