diff --git a/client/i18n/locales/english/intro.json b/client/i18n/locales/english/intro.json index 568f3b3d4bf..014015b39f9 100644 --- a/client/i18n/locales/english/intro.json +++ b/client/i18n/locales/english/intro.json @@ -3781,7 +3781,9 @@ }, "quiz-python-basics": { "title": "Python Basics Quiz", - "intro": ["Learn about Python Basics Quiz in these lectures."] + "intro": [ + "Test what you've learned about Python basics with this quiz." + ] }, "lecture-working-with-loops-and-sequences": { "title": "Working with Loops and Sequences", @@ -3801,7 +3803,9 @@ }, "quiz-loops-and-sequences": { "title": "Loops and Sequences Quiz", - "intro": [""] + "intro": [ + "Test what you've learned about loops and sequences in Python with this quiz." + ] }, "lecture-working-with-dictionaries-and-sets": { "title": "Working with Dictionaries and Sets", @@ -3825,7 +3829,9 @@ }, "quiz-dictionaries-and-sets": { "title": "Dictionaries and Sets Quiz", - "intro": [""] + "intro": [ + "Test what you've learned about dictionaries and sets in Python with this quiz." + ] }, "lecture-understanding-error-handling": { "title": "Understanding Error Handling", @@ -3841,7 +3847,9 @@ }, "quiz-error-handling": { "title": "Error Handling Quiz", - "intro": [""] + "intro": [ + "Test what you've learned about Error Handling in Python with this quiz." + ] }, "lecture-classes-and-objects": { "title": "Classes and Objects", @@ -3851,17 +3859,16 @@ "title": "Placeholder - waiting for title", "intro": [""] }, - "lab-budget-app": { - "title": "Build a Budget App", - "intro": [""] - }, + "lab-budget-app": { "title": "Build a Budget App", "intro": [""] }, "review-classes-and-objects": { "title": "Classes and Objects Review", "intro": [""] }, "quiz-classes-and-objects": { "title": "Classes and Objects Quiz", - "intro": [""] + "intro": [ + "Test what you've learned about classes and objects in Python with this quiz." + ] }, "lecture-understanding-object-oriented-programming-and-encapsulation": { "title": "Understanding Object Oriented Programming and Encapsulation", @@ -3895,17 +3902,16 @@ "title": "Placeholder - Waiting for title", "intro": [""] }, - "lab-placeholder-oop-3": { - "title": "", - "intro": [""] - }, + "lab-placeholder-oop-3": { "title": "", "intro": [""] }, "review-object-oriented-programming": { "title": "Object Oriented Programming Review", "intro": [""] }, "quiz-object-oriented-programming": { "title": "Object Oriented Programming Quiz", - "intro": [""] + "intro": [ + "Test what you've learned about object oriented programming in python with this quiz." + ] }, "lecture-working-with-common-data-structures": { "title": "Working with common data structures", @@ -3925,7 +3931,9 @@ }, "quiz-data-structures": { "title": "Data Structures Quiz", - "intro": [""] + "intro": [ + "Test what you've learned about data structures in Python with this quiz." + ] }, "lecture-searching-and-sorting-algorithms": { "title": "Searching and Sorting Algorithms", @@ -3939,14 +3947,8 @@ "title": "Build a Bisection Method", "intro": [""] }, - "workshop-merge-sort": { - "title": "Build a Merge Sort", - "intro": [""] - }, - "lab-quick-sort": { - "title": "Build a Quick Sort", - "intro": [""] - }, + "workshop-merge-sort": { "title": "Build a Merge Sort", "intro": [""] }, + "lab-quick-sort": { "title": "Build a Quick Sort", "intro": [""] }, "lab-selection-sort": { "title": "Build a Selection Sort", "intro": [""] @@ -3961,7 +3963,9 @@ }, "quiz-searching-and-sorting-algorithms": { "title": "Searching and Sorting Algorithms Quiz", - "intro": [""] + "intro": [ + "Test what you've learned about searching and sorting algorithms in Python with this quiz." + ] }, "lecture-understanding-graphs-and-trees": { "title": "Understanding Graphs and Trees", @@ -3988,8 +3992,10 @@ "intro": [""] }, "quiz-graphs-and-trees": { - "title": "Graphs and Trees Review", - "intro": [""] + "title": "Graphs and Trees Quiz", + "intro": [ + "Test what you've learned about graphs and trees in Python with this quiz." + ] }, "lecture-understanding-dynamic-programming": { "title": "Understanding Dynamic Programming", @@ -4005,12 +4011,11 @@ }, "quiz-dynamic-programming": { "title": "Dynamic Programming Quiz", - "intro": [""] - }, - "review-python": { - "title": "Python Review", - "intro": [""] + "intro": [ + "Test what you've learned about dynamic programming in python with this quiz." + ] }, + "review-python": { "title": "Python Review", "intro": [""] }, "exam-certified-full-stack-developer": { "title": "Certified Full Stack Developer Exam", "intro": ["Pass this exam to become a Certified Full Stack Developer."] diff --git a/client/src/pages/learn/full-stack-developer/quiz-classes-and-objects/index.md b/client/src/pages/learn/full-stack-developer/quiz-classes-and-objects/index.md new file mode 100644 index 00000000000..0bd5df6afe0 --- /dev/null +++ b/client/src/pages/learn/full-stack-developer/quiz-classes-and-objects/index.md @@ -0,0 +1,9 @@ +--- +title: Introduction to the Classes and Objects Quiz +block: quiz-classes-and-objects +superBlock: full-stack-developer +--- + +## Introduction to the Classes and Objects Quiz + +This page is for the Classes and Objects Quiz diff --git a/client/src/pages/learn/full-stack-developer/quiz-data-structures/index.md b/client/src/pages/learn/full-stack-developer/quiz-data-structures/index.md new file mode 100644 index 00000000000..aafab455c1b --- /dev/null +++ b/client/src/pages/learn/full-stack-developer/quiz-data-structures/index.md @@ -0,0 +1,9 @@ +--- +title: Introduction to the Data Structures Quiz +block: quiz-data-structures +superBlock: full-stack-developer +--- + +## Introduction to the Data Structures Quiz + +This page is for the Data Structures Quiz diff --git a/client/src/pages/learn/full-stack-developer/quiz-dictionaries-and-sets/index.md b/client/src/pages/learn/full-stack-developer/quiz-dictionaries-and-sets/index.md new file mode 100644 index 00000000000..3a1b1241139 --- /dev/null +++ b/client/src/pages/learn/full-stack-developer/quiz-dictionaries-and-sets/index.md @@ -0,0 +1,9 @@ +--- +title: Introduction to the Dictionaries and Sets Quiz +block: quiz-dictionaries-and-sets +superBlock: full-stack-developer +--- + +## Introduction to the Dictionaries and Sets Quiz + +This page is for the Dictionaries and Sets Quiz diff --git a/client/src/pages/learn/full-stack-developer/quiz-dynamic-programming/index.md b/client/src/pages/learn/full-stack-developer/quiz-dynamic-programming/index.md new file mode 100644 index 00000000000..bd8f600f789 --- /dev/null +++ b/client/src/pages/learn/full-stack-developer/quiz-dynamic-programming/index.md @@ -0,0 +1,9 @@ +--- +title: Introduction to the Dynamic Programming Quiz +block: quiz-dynamic-programming +superBlock: full-stack-developer +--- + +## Introduction to the Dynamic Programming Quiz + +This page is for the Dynamic Programming Quiz diff --git a/client/src/pages/learn/full-stack-developer/quiz-error-handling/index.md b/client/src/pages/learn/full-stack-developer/quiz-error-handling/index.md new file mode 100644 index 00000000000..b95ea628a9a --- /dev/null +++ b/client/src/pages/learn/full-stack-developer/quiz-error-handling/index.md @@ -0,0 +1,9 @@ +--- +title: Introduction to the Error Handling Quiz +block: quiz-error-handling +superBlock: full-stack-developer +--- + +## Introduction to the Error Handling Quiz + +This page is for the Error Handling Quiz diff --git a/client/src/pages/learn/full-stack-developer/quiz-graphs-and-trees/index.md b/client/src/pages/learn/full-stack-developer/quiz-graphs-and-trees/index.md new file mode 100644 index 00000000000..08f08b8268f --- /dev/null +++ b/client/src/pages/learn/full-stack-developer/quiz-graphs-and-trees/index.md @@ -0,0 +1,9 @@ +--- +title: Introduction to the Graphs and Trees Quiz +block: quiz-graphs-and-trees +superBlock: full-stack-developer +--- + +## Introduction to the Graphs and Trees Quiz + +This page is for the Graphs and Trees Quiz diff --git a/client/src/pages/learn/full-stack-developer/quiz-loops-and-sequences/index.md b/client/src/pages/learn/full-stack-developer/quiz-loops-and-sequences/index.md new file mode 100644 index 00000000000..f99d2e2f04c --- /dev/null +++ b/client/src/pages/learn/full-stack-developer/quiz-loops-and-sequences/index.md @@ -0,0 +1,9 @@ +--- +title: Introduction to the Loops and Sequences Quiz +block: quiz-loops-and-sequences +superBlock: full-stack-developer +--- + +## Introduction to the Loops and Sequences Quiz + +This page is for the Loops and Sequences Quiz diff --git a/client/src/pages/learn/full-stack-developer/quiz-object-oriented-programming/index.md b/client/src/pages/learn/full-stack-developer/quiz-object-oriented-programming/index.md new file mode 100644 index 00000000000..e12d06a986d --- /dev/null +++ b/client/src/pages/learn/full-stack-developer/quiz-object-oriented-programming/index.md @@ -0,0 +1,9 @@ +--- +title: Introduction to the Object Oriented Programming Quiz +block: quiz-object-oriented-programming +superBlock: full-stack-developer +--- + +## Introduction to the Object Oriented Programming Quiz + +This page is for the Object Oriented Programming Quiz diff --git a/client/src/pages/learn/full-stack-developer/quiz-python-basics/index.md b/client/src/pages/learn/full-stack-developer/quiz-python-basics/index.md new file mode 100644 index 00000000000..c3c6810c725 --- /dev/null +++ b/client/src/pages/learn/full-stack-developer/quiz-python-basics/index.md @@ -0,0 +1,9 @@ +--- +title: Introduction to the Python Basics Quiz +block: quiz-python-basics +superBlock: full-stack-developer +--- + +## Introduction to the Python Basics Quiz + +This page is for the Python Basics Quiz diff --git a/client/src/pages/learn/full-stack-developer/quiz-searching-and-sorting-algorithms/index.md b/client/src/pages/learn/full-stack-developer/quiz-searching-and-sorting-algorithms/index.md new file mode 100644 index 00000000000..dfb233848fe --- /dev/null +++ b/client/src/pages/learn/full-stack-developer/quiz-searching-and-sorting-algorithms/index.md @@ -0,0 +1,9 @@ +--- +title: Introduction to the Searching and Sorting Algorithms Quiz +block: quiz-searching-and-sorting-algorithms +superBlock: full-stack-developer +--- + +## Introduction to the Searching and Sorting Algorithms Quiz + +This page is for the Searching and Sorting Algorithms Quiz diff --git a/curriculum/challenges/_meta/quiz-classes-and-objects/meta.json b/curriculum/challenges/_meta/quiz-classes-and-objects/meta.json new file mode 100644 index 00000000000..f79fed145d2 --- /dev/null +++ b/curriculum/challenges/_meta/quiz-classes-and-objects/meta.json @@ -0,0 +1,12 @@ +{ + "name": "Classes and Objects Quiz", + "blockType": "quiz", + "blockLayout": "link", + "isUpcomingChange": true, + "dashedName": "quiz-classes-and-objects", + "superBlock": "full-stack-developer", + "challengeOrder": [ + { "id": "67f413038f0f8c452c660dc5", "title": "Classes and Objects Quiz" } + ], + "helpCategory": "Python" +} diff --git a/curriculum/challenges/_meta/quiz-data-structures/meta.json b/curriculum/challenges/_meta/quiz-data-structures/meta.json new file mode 100644 index 00000000000..0f0d4f29574 --- /dev/null +++ b/curriculum/challenges/_meta/quiz-data-structures/meta.json @@ -0,0 +1,12 @@ +{ + "name": "Data Structures Quiz", + "blockType": "quiz", + "blockLayout": "link", + "isUpcomingChange": true, + "dashedName": "quiz-data-structures", + "superBlock": "full-stack-developer", + "challengeOrder": [ + { "id": "67f41341453c2247fb2828f7", "title": "Data Structures Quiz" } + ], + "helpCategory": "Python" +} diff --git a/curriculum/challenges/_meta/quiz-dictionaries-and-sets/meta.json b/curriculum/challenges/_meta/quiz-dictionaries-and-sets/meta.json new file mode 100644 index 00000000000..f53ffdc33da --- /dev/null +++ b/curriculum/challenges/_meta/quiz-dictionaries-and-sets/meta.json @@ -0,0 +1,12 @@ +{ + "name": "Dictionaries and Sets Quiz", + "blockType": "quiz", + "blockLayout": "link", + "isUpcomingChange": true, + "dashedName": "quiz-dictionaries-and-sets", + "superBlock": "full-stack-developer", + "challengeOrder": [ + { "id": "67f412ac59601c4151b763da", "title": "Dictionaries and Sets Quiz" } + ], + "helpCategory": "Python" +} diff --git a/curriculum/challenges/_meta/quiz-dynamic-programming/meta.json b/curriculum/challenges/_meta/quiz-dynamic-programming/meta.json new file mode 100644 index 00000000000..bcb456458ad --- /dev/null +++ b/curriculum/challenges/_meta/quiz-dynamic-programming/meta.json @@ -0,0 +1,12 @@ +{ + "name": "Dynamic Programming Quiz", + "blockType": "quiz", + "blockLayout": "link", + "isUpcomingChange": true, + "dashedName": "quiz-dynamic-programming", + "superBlock": "full-stack-developer", + "challengeOrder": [ + { "id": "67f413a2abe9894c52e15c6e", "title": "Dynamic Programming Quiz" } + ], + "helpCategory": "Python" +} diff --git a/curriculum/challenges/_meta/quiz-error-handling/meta.json b/curriculum/challenges/_meta/quiz-error-handling/meta.json new file mode 100644 index 00000000000..b58c53afc14 --- /dev/null +++ b/curriculum/challenges/_meta/quiz-error-handling/meta.json @@ -0,0 +1,12 @@ +{ + "name": "Error Handling Quiz", + "blockType": "quiz", + "blockLayout": "link", + "isUpcomingChange": true, + "dashedName": "quiz-error-handling", + "superBlock": "full-stack-developer", + "challengeOrder": [ + { "id": "67f412eaf6e68343aab8ea81", "title": "Error Handling Quiz" } + ], + "helpCategory": "Python" +} diff --git a/curriculum/challenges/_meta/quiz-graphs-and-trees/meta.json b/curriculum/challenges/_meta/quiz-graphs-and-trees/meta.json new file mode 100644 index 00000000000..d18d0b03bc0 --- /dev/null +++ b/curriculum/challenges/_meta/quiz-graphs-and-trees/meta.json @@ -0,0 +1,12 @@ +{ + "name": "Graphs and Trees Quiz", + "blockType": "quiz", + "blockLayout": "link", + "isUpcomingChange": true, + "dashedName": "quiz-graphs-and-trees", + "superBlock": "full-stack-developer", + "challengeOrder": [ + { "id": "67f4138c34cd9c4ac783ceef", "title": "Graphs and Trees Quiz" } + ], + "helpCategory": "Python" +} diff --git a/curriculum/challenges/_meta/quiz-loops-and-sequences/meta.json b/curriculum/challenges/_meta/quiz-loops-and-sequences/meta.json new file mode 100644 index 00000000000..2e586991ae2 --- /dev/null +++ b/curriculum/challenges/_meta/quiz-loops-and-sequences/meta.json @@ -0,0 +1,12 @@ +{ + "name": "Loops and Sequences Quiz", + "blockType": "quiz", + "blockLayout": "link", + "isUpcomingChange": true, + "dashedName": "quiz-loops-and-sequences", + "superBlock": "full-stack-developer", + "challengeOrder": [ + { "id": "67f41268a129e63f8e071736", "title": "Loops and Sequences Quiz" } + ], + "helpCategory": "Python" +} diff --git a/curriculum/challenges/_meta/quiz-object-oriented-programming/meta.json b/curriculum/challenges/_meta/quiz-object-oriented-programming/meta.json new file mode 100644 index 00000000000..2311d54ff48 --- /dev/null +++ b/curriculum/challenges/_meta/quiz-object-oriented-programming/meta.json @@ -0,0 +1,15 @@ +{ + "name": "Object Oriented Programming Quiz", + "blockType": "quiz", + "blockLayout": "link", + "isUpcomingChange": true, + "dashedName": "quiz-object-oriented-programming", + "superBlock": "full-stack-developer", + "challengeOrder": [ + { + "id": "67f4131db7777346b1b3dc6f", + "title": "Object Oriented Programming Quiz" + } + ], + "helpCategory": "Python" +} diff --git a/curriculum/challenges/_meta/quiz-python-basics/meta.json b/curriculum/challenges/_meta/quiz-python-basics/meta.json new file mode 100644 index 00000000000..808ddbf02c1 --- /dev/null +++ b/curriculum/challenges/_meta/quiz-python-basics/meta.json @@ -0,0 +1,12 @@ +{ + "name": "Python Basics Quiz", + "blockType": "quiz", + "blockLayout": "link", + "isUpcomingChange": true, + "dashedName": "quiz-python-basics", + "superBlock": "full-stack-developer", + "challengeOrder": [ + { "id": "67f41242431cbf3db8ca79c7", "title": "Python Basics Quiz" } + ], + "helpCategory": "Python" +} diff --git a/curriculum/challenges/_meta/quiz-searching-and-sorting-algorithms/meta.json b/curriculum/challenges/_meta/quiz-searching-and-sorting-algorithms/meta.json new file mode 100644 index 00000000000..31d551ddca8 --- /dev/null +++ b/curriculum/challenges/_meta/quiz-searching-and-sorting-algorithms/meta.json @@ -0,0 +1,15 @@ +{ + "name": "Searching and Sorting Algorithms Quiz", + "blockType": "quiz", + "blockLayout": "link", + "isUpcomingChange": true, + "dashedName": "quiz-searching-and-sorting-algorithms", + "superBlock": "full-stack-developer", + "challengeOrder": [ + { + "id": "67f4136110dddb491be2e90a", + "title": "Searching and Sorting Algorithms Quiz" + } + ], + "helpCategory": "Python" +} diff --git a/curriculum/challenges/english/25-front-end-development/quiz-classes-and-objects/67f413038f0f8c452c660dc5.md b/curriculum/challenges/english/25-front-end-development/quiz-classes-and-objects/67f413038f0f8c452c660dc5.md new file mode 100644 index 00000000000..2e9af0cb0d8 --- /dev/null +++ b/curriculum/challenges/english/25-front-end-development/quiz-classes-and-objects/67f413038f0f8c452c660dc5.md @@ -0,0 +1,455 @@ +--- +id: 67f413038f0f8c452c660dc5 +title: Classes and Objects Quiz +challengeType: 8 +dashedName: quiz-classes-and-objects +--- + +# --description-- + +To pass the quiz, you must correctly answer at least 18 of the 20 questions below. + +# --quizzes-- + +## --quiz-- + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + diff --git a/curriculum/challenges/english/25-front-end-development/quiz-data-structures/67f41341453c2247fb2828f7.md b/curriculum/challenges/english/25-front-end-development/quiz-data-structures/67f41341453c2247fb2828f7.md new file mode 100644 index 00000000000..b9e385f019e --- /dev/null +++ b/curriculum/challenges/english/25-front-end-development/quiz-data-structures/67f41341453c2247fb2828f7.md @@ -0,0 +1,455 @@ +--- +id: 67f41341453c2247fb2828f7 +title: Data Structures Quiz +challengeType: 8 +dashedName: quiz-data-structures +--- + +# --description-- + +To pass the quiz, you must correctly answer at least 18 of the 20 questions below. + +# --quizzes-- + +## --quiz-- + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + diff --git a/curriculum/challenges/english/25-front-end-development/quiz-dictionaries-and-sets/67f412ac59601c4151b763da.md b/curriculum/challenges/english/25-front-end-development/quiz-dictionaries-and-sets/67f412ac59601c4151b763da.md new file mode 100644 index 00000000000..303c506599f --- /dev/null +++ b/curriculum/challenges/english/25-front-end-development/quiz-dictionaries-and-sets/67f412ac59601c4151b763da.md @@ -0,0 +1,455 @@ +--- +id: 67f412ac59601c4151b763da +title: Dictionaries and Sets Quiz +challengeType: 8 +dashedName: quiz-dictionaries-and-sets +--- + +# --description-- + +To pass the quiz, you must correctly answer at least 18 of the 20 questions below. + +# --quizzes-- + +## --quiz-- + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + diff --git a/curriculum/challenges/english/25-front-end-development/quiz-dynamic-programming/67f413a2abe9894c52e15c6e.md b/curriculum/challenges/english/25-front-end-development/quiz-dynamic-programming/67f413a2abe9894c52e15c6e.md new file mode 100644 index 00000000000..0ef664ae59d --- /dev/null +++ b/curriculum/challenges/english/25-front-end-development/quiz-dynamic-programming/67f413a2abe9894c52e15c6e.md @@ -0,0 +1,455 @@ +--- +id: 67f413a2abe9894c52e15c6e +title: Dynamic Programming Quiz +challengeType: 8 +dashedName: quiz-dynamic-programming +--- + +# --description-- + +To pass the quiz, you must correctly answer at least 18 of the 20 questions below. + +# --quizzes-- + +## --quiz-- + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + diff --git a/curriculum/challenges/english/25-front-end-development/quiz-error-handling/67f412eaf6e68343aab8ea81.md b/curriculum/challenges/english/25-front-end-development/quiz-error-handling/67f412eaf6e68343aab8ea81.md new file mode 100644 index 00000000000..f5117fb44bf --- /dev/null +++ b/curriculum/challenges/english/25-front-end-development/quiz-error-handling/67f412eaf6e68343aab8ea81.md @@ -0,0 +1,455 @@ +--- +id: 67f412eaf6e68343aab8ea81 +title: Error Handling Quiz +challengeType: 8 +dashedName: quiz-error-handling +--- + +# --description-- + +To pass the quiz, you must correctly answer at least 18 of the 20 questions below. + +# --quizzes-- + +## --quiz-- + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + diff --git a/curriculum/challenges/english/25-front-end-development/quiz-graphs-and-trees/67f4138c34cd9c4ac783ceef.md b/curriculum/challenges/english/25-front-end-development/quiz-graphs-and-trees/67f4138c34cd9c4ac783ceef.md new file mode 100644 index 00000000000..15ca7638e4d --- /dev/null +++ b/curriculum/challenges/english/25-front-end-development/quiz-graphs-and-trees/67f4138c34cd9c4ac783ceef.md @@ -0,0 +1,455 @@ +--- +id: 67f4138c34cd9c4ac783ceef +title: Graphs and Trees Quiz +challengeType: 8 +dashedName: quiz-graphs-and-trees +--- + +# --description-- + +To pass the quiz, you must correctly answer at least 18 of the 20 questions below. + +# --quizzes-- + +## --quiz-- + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + diff --git a/curriculum/challenges/english/25-front-end-development/quiz-loops-and-sequences/67f41268a129e63f8e071736.md b/curriculum/challenges/english/25-front-end-development/quiz-loops-and-sequences/67f41268a129e63f8e071736.md new file mode 100644 index 00000000000..5ebce9d0867 --- /dev/null +++ b/curriculum/challenges/english/25-front-end-development/quiz-loops-and-sequences/67f41268a129e63f8e071736.md @@ -0,0 +1,455 @@ +--- +id: 67f41268a129e63f8e071736 +title: Loops and Sequences Quiz +challengeType: 8 +dashedName: quiz-loops-and-sequences +--- + +# --description-- + +To pass the quiz, you must correctly answer at least 18 of the 20 questions below. + +# --quizzes-- + +## --quiz-- + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + diff --git a/curriculum/challenges/english/25-front-end-development/quiz-object-oriented-programming/67f4131db7777346b1b3dc6f.md b/curriculum/challenges/english/25-front-end-development/quiz-object-oriented-programming/67f4131db7777346b1b3dc6f.md new file mode 100644 index 00000000000..80ba8fa0f14 --- /dev/null +++ b/curriculum/challenges/english/25-front-end-development/quiz-object-oriented-programming/67f4131db7777346b1b3dc6f.md @@ -0,0 +1,455 @@ +--- +id: 67f4131db7777346b1b3dc6f +title: Object Oriented Programming Quiz +challengeType: 8 +dashedName: quiz-object-oriented-programming +--- + +# --description-- + +To pass the quiz, you must correctly answer at least 18 of the 20 questions below. + +# --quizzes-- + +## --quiz-- + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + diff --git a/curriculum/challenges/english/25-front-end-development/quiz-python-basics/67f41242431cbf3db8ca79c7.md b/curriculum/challenges/english/25-front-end-development/quiz-python-basics/67f41242431cbf3db8ca79c7.md new file mode 100644 index 00000000000..2d4df2c8d93 --- /dev/null +++ b/curriculum/challenges/english/25-front-end-development/quiz-python-basics/67f41242431cbf3db8ca79c7.md @@ -0,0 +1,455 @@ +--- +id: 67f41242431cbf3db8ca79c7 +title: Python Basics Quiz +challengeType: 8 +dashedName: quiz-python-basics +--- + +# --description-- + +To pass the quiz, you must correctly answer at least 18 of the 20 questions below. + +# --quizzes-- + +## --quiz-- + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + diff --git a/curriculum/challenges/english/25-front-end-development/quiz-searching-and-sorting-algorithms/67f4136110dddb491be2e90a.md b/curriculum/challenges/english/25-front-end-development/quiz-searching-and-sorting-algorithms/67f4136110dddb491be2e90a.md new file mode 100644 index 00000000000..dc51ae71cbe --- /dev/null +++ b/curriculum/challenges/english/25-front-end-development/quiz-searching-and-sorting-algorithms/67f4136110dddb491be2e90a.md @@ -0,0 +1,455 @@ +--- +id: 67f4136110dddb491be2e90a +title: Searching and Sorting Algorithms Quiz +challengeType: 8 +dashedName: quiz-searching-and-sorting-algorithms +--- + +# --description-- + +To pass the quiz, you must correctly answer at least 18 of the 20 questions below. + +# --quizzes-- + +## --quiz-- + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer + +### --question-- + +#### --text-- + +Placeholder question + +#### --distractors-- + +Placeholder distractor 1 + +--- + +Placeholder distractor 2 + +--- + +Placeholder distractor 3 + +#### --answer-- + +Placeholder answer +