chore: cleanup old assets from curriculum (#37164)

This commit is contained in:
mrugesh
2019-10-10 00:06:21 -07:00
committed by GitHub
parent 6cb72ef02e
commit 06b950fdae
313 changed files with 0 additions and 65968 deletions

View File

@ -1,127 +0,0 @@
{
"name": "Open Source for Good",
"order": 22,
"time": "",
"message": "Once you feel ready, you can get real-world experience by contributing to these open source tools used by nonprofits.",
"challenges": [
{
"title": "Mail for Good",
"id": "5a1879ed19a2ae635c8afa76",
"description": [
[
"",
"",
"Mail for Good is an open source email campaign management tool for nonprofits.",
"https://github.com/freeCodeCamp/mail-for-good"
]
],
"challengeSeed": [],
"tests": [],
"type": "Waypoint",
"challengeType": 7,
"isRequired": false
},
{
"title": "Pantry for Good",
"id": "5a1879f119a2ae635c8afa7b",
"description": [
[
"",
"",
"Pantry for Good is an open source food bank logistics and inventory management tool.",
"https://github.com/freeCodeCamp/pantry-for-good"
]
],
"challengeSeed": [],
"tests": [],
"type": "Waypoint",
"challengeType": 7,
"isRequired": false
},
{
"title": "Meeting for Good",
"id": "5a1879f019a2ae635c8afa7a",
"description": [
[
"",
"",
"Meeting for Good is an open source meeting coordination app for nonprofit teams.",
"https://github.com/freeCodeCamp/meeting-for-good"
]
],
"challengeSeed": [],
"tests": [],
"type": "Waypoint",
"challengeType": 7,
"isRequired": false
},
{
"title": "League for Good",
"id": "5a1879ef19a2ae635c8afa79",
"description": [
[
"",
"",
"League for Good is an open source sports league management tool.",
"https://github.com/freeCodeCamp/league-for-good"
]
],
"challengeSeed": [],
"tests": [],
"type": "Waypoint",
"challengeType": 7,
"isRequired": false
},
{
"title": "Conference for Good",
"id": "5a1879ef19a2ae635c8afa78",
"description": [
[
"",
"",
"Conference for Good is an open source conference management tool.",
"https://github.com/freeCodeCamp/conference-for-good"
]
],
"challengeSeed": [],
"tests": [],
"type": "Waypoint",
"challengeType": 7,
"isRequired": false
},
{
"title": "The freeCodeCamp Core Platform",
"id": "5a1879ee19a2ae635c8afa77",
"description": [
[
"",
"",
"The freeCodeCamp core platform is the learning resource you are using right now at this exact moment ;)",
"https://github.com/freeCodeCamp/freeCodeCamp"
]
],
"challengeSeed": [],
"tests": [],
"type": "Waypoint",
"challengeType": 7,
"isRequired": false
},
{
"title": "The freeCodeCamp Guide",
"id": "5a187d4019a2ae635c8afa7c",
"description": [
[
"",
"",
"The freeCodeCamp Guide is a collection of easy-to-understand guides to programming tools.",
"https://github.com/freeCodeCamp/guides"
]
],
"challengeSeed": [],
"tests": [],
"type": "Waypoint",
"challengeType": 7,
"isRequired": false
}
]
}

View File

@ -1,973 +0,0 @@
{
"name": "System Design and Concept Questions",
"order": 3,
"time": "",
"helpRoom": "HelpJavaScript",
"challenges": [
{
"id": "59874fc749228906236a3275",
"title": "Array.prototype.map",
"description": [
{
"subtitle": "Flooring an Array",
"question": "What will the following code print out?\n<pre><code class='language-javascript'>const results = [1.32, 2.43, 3.9]\n .map(Math.floor);\nconsole.log(results);</code></pre>",
"choices": [
"<pre><code class='language-javascript'>1.32 2.43 3.9</code></pre>",
"<pre><code class='language-javascript'>['1.32', '2.43', '3.9']</code></pre>",
"<pre><code class='language-javascript'>[1, 2, 3]</code></pre>",
"<pre><code class='language-javascript'>'1 2 3'</code></pre>"
],
"answer": 2,
"explanation": "The map function takes a callback function as it's first parameter and applies that function against every value inside the array. In this example, our callback function is the <code>Math.floor</code> function which will truncate the decimal points of all the numbers and convert them to integers."
},
{
"subtitle": "Custom Map Functions",
"question": "What will the following code print out?\n<pre><code class='language-javascript'>const results = ['a', 'b', 'c']\n .map(a => [a.toUpperCase()]);\nconsole.log(results);</code></pre>",
"choices": [
"<pre><code class='language-javascript'>[['A'], ['B'], ['C']]</code></pre>",
"<pre><code class='language-javascript'>['A', 'B', 'C']</code></pre>",
"<pre><code class='language-javascript'>['a', 'b', 'c]</code></pre>",
"<pre><code class='language-javascript'>'ABC'</code></pre>"
],
"answer": 0,
"explanation": "The map function will return a new array with each element equal to the old element ran through a callback function. Our callback function takes our original element, changes it to a upper case, and then wraps it in an array; thus, leaving us with <code>[['A'], ['B'], ['C']]</code>"
},
{
"subtitle": "Maps on Maps",
"question": "What will the following code print out?\n<pre><code class='language-javascript'>const results = [[4, 1], [2, 0], [3, 3]]\n .map(a => \n a.map(b => b % 2)[0] + a.map(b => b - 1)[1]\n )\nconsole.log(results);</code></pre>",
"choices": [
"<pre><code class='language-javascript'>[[0, 1], [0, 0], [1, 1]]</code></pre>",
"<pre><code class='language-javascript'>[[0, 0], [0, -1], [1, 2]]</code></pre>",
"<pre><code class='language-javascript'>[1, 1, 2]</code></pre>",
"<pre><code class='language-javascript'>[0, -1, 3]</code></pre>"
],
"answer": 3,
"explanation": "This answer can be explained by first looking at the example of what happens with the first element in our array, <code>[4, 1]</code>. Our first map callback will run a mod 2 map function over <code>[4, 1]</code> leaving us with a new array of <code>[0, 1]</code>. The second map call which is inside our callback will subtract 1 from every element, leaving us with <code>[3, 0]</code>. Last, we take element at index 0, <code>0</code>, and add it to element of index 1 from our second map function, <code>0</code>, leaving us with 0; thus, after the first iteration of the top level map function, we are left with an array that looks like so: <code>[1, [2, 0], [3, 3]]</code>. We simply keep doing that logic for the other elements until we finish: <code>[1, -1, [3, 3]]</code>, and <code>[1, -1, 3]</code>"
},
{
"subtitle": "Words Containing 'a'",
"question": "What will the following code print out?\n<pre><code class='language-javascript'>const results = ['apple', 'dog', 'cat']\n .map((a, i) => \n a.indexOf('a') !== -1 ? i : null)\nconsole.log(results);</code></pre>",
"choices": [
"<pre><code class='language-javascript'>[0, -1, 1]</code></pre>",
"<pre><code class='language-javascript'>[0, null, 2]</code></pre>",
"<pre><code class='language-javascript'>[null, null, null]</code></pre>",
"<pre><code class='language-javascript'>[-1, null, 2]</code></pre>"
],
"answer": 1,
"explanation": "This map example will return an array where each elements of the new array is either the original array index when the element contains the character 'a'; otherwise, an element of null for any words that do not have the character 'a'."
},
{
"subtitle": "Accessing the Original Array Elements",
"question": "What will the following code print out?\n<pre><code class='language-javascript'>const results = [1, 2, 3]\n .map((a, _, o) => a + o[0])\nconsole.log(results);</code></pre>",
"choices": [
"<pre><code class='language-javascript'>[1, 2, 3]</code></pre>",
"<pre><code class='language-javascript'>[0, 0, 0]</code></pre>",
"<pre><code class='language-javascript'>[3, 2, 1]</code></pre>",
"<pre><code class='language-javascript'>[2, 3, 4]</code></pre>"
],
"answer": 3,
"explanation": "This map example will add the value of the first element in the original array to all the other elements in the array."
},
{
"subtitle": "More Map Hacking",
"question": "What will the following code print out?\n<pre><code class='language-javascript'>const results = [8, 5, 3]\n .map((a, i, o) => o[o.length - i - 1])\nconsole.log(results);</code></pre>",
"choices": [
"<pre><code class='language-javascript'>[3, 5, 8]</code></pre>",
"<pre><code class='language-javascript'>[5, 3, 8]</code></pre>",
"<pre><code class='language-javascript'>[8, 5, 3]</code></pre>",
"<pre><code class='language-javascript'>[3, 8, 5]</code></pre>"
],
"answer": 0,
"explanation": "This map example will reverse the array. The third argument to the map callback function is the original array; therefore, we can use the current index in the map function, and work our way backwards from the end of the array using the o.length."
},
{
"subtitle": "Custom Scoping",
"question": "What will the following code print out?\n<pre><code class='language-javascript'>const results = ['a', 'b', 'c']\n .map(function(a) { return this[a]; }, {a: 9, b: 3, c: 1})\nconsole.log(results);</code></pre>",
"choices": [
"<pre><code class='language-javascript'>['a', 'b', 'c']</code></pre>",
"<pre><code class='language-javascript'>[9, 3, 1]</code></pre>",
"<pre><code class='language-javascript'>[3, 9, 1]</code></pre>",
"<pre><code class='language-javascript'>[{a: 9}, {b: 3}, {c: 1}]</code></pre>"
],
"answer": 1,
"explanation": "This map example will reverse the array. The third argument to the map callback function is the original array; therefore, we can use the current index in the map function, and work our way backwards from the end of the array using the o.length."
},
{
"subtitle": "Reversing in Map, Just Because",
"question": "What will the following code print out?\n<pre><code class='language-javascript'>const results = [1, 2, 3, 4, 5]\n .map((a, _, o) => o.reverse() && a)\nconsole.log(results);</code></pre>",
"choices": [
"<pre><code class='language-javascript'>[5, 4, 3, 2, 1]</code></pre>",
"<pre><code class='language-javascript'>[5, 2, 3, 5, 1]</code></pre>",
"<pre><code class='language-javascript'>[1, 2, 3, 4, 5]</code></pre>",
"<pre><code class='language-javascript'>[1, 4, 3, 2, 5]</code></pre>"
],
"answer": 3,
"explanation": "This map example will reverse the array. The third argument to the map callback function is the original array; therefore, we can use the current index in the map function, and work our way backwards from the end of the array using the o.length."
}
],
"tests": [],
"challengeType": 8
},
{
"id": "5a916843a9178457a6f1281f",
"title": "General questions",
"description": [
{
"subtitle": "Data structure stack",
"question": "A stack data structure obeys the principles of Last in First Out (LIFO)? True or false.",
"choices": [
"<pre><code class='language-javascript'>true</code></pre>",
"<pre><code class='language-javascript'>false</code></pre>"
],
"answer": 0,
"explanation": "true"
},
{
"subtitle": "Sorting algorithm",
"question": "Which of the following is not a common sorting algorithm?",
"choices": [
"<pre><code class='language-javascript'>Bubble Sort</code></pre>",
"<pre><code class='language-javascript'>QuickSort</code></pre>",
"<pre><code class='language-javascript'>HeapSort</code></pre>",
"<pre><code class='language-javascript'>Branch Sort</code></pre>"
],
"answer": 3,
"explanation": "Branch sort is not a sorting algorithm"
},
{
"subtitle": "Persistent storage",
"question": "CRUD operation stand for ?",
"choices": [
"<pre><code class='language-javascript'>Create, Read, Update, Delete</code></pre>",
"<pre><code class='language-javascript'>Copy, Reduce, Update, Define</code></pre>",
"<pre><code class='language-javascript'>Create, Rich, Unique, Document</code></pre>",
"<pre><code class='language-javascript'>Cancel, Reduce, Unify, Dispose</code></pre>"
],
"answer": 0,
"explanation": "CRUD stands for Create - Read - Update and Delete and are the four basic operations of persistent storage"
},
{
"subtitle": "Numeric types",
"question": "Match the correct numeric types to their correct size.",
"choices": [
"<pre><code class='language-javascript'>Byte - 8 bits, long - 64 bits,int - 32 bits, short - 16 bits.</code></pre>",
"<pre><code class='language-javascript'>Byte - 8 bits, long - 32 bits ,int - 64 bits, short - 16 bits.</code></pre>",
"<pre><code class='language-javascript'>Byte - 8 bits, long - 16 bits ,int - 32 bits, short - 64 bits.</code></pre>",
"<pre><code class='language-javascript'>Byte - 32 bits, long - 8 bits ,int - 64 bits, short - 16 bits.</code></pre>"
],
"answer": 0,
"explanation": "byte 8 bits, short 16 bits, int 32 bits, long 64 bits."
},
{
"subtitle": "Software architecture pattern",
"question": "The MVC software architectural pattern stands for ?",
"choices": [
"<pre><code class='language-javascript'>MeanStack - View - Class</code></pre>",
"<pre><code class='language-javascript'>Modal - Vector - Control</code></pre>",
"<pre><code class='language-javascript'>Model - View - Controller</code></pre>",
"<pre><code class='language-javascript'>Mapped - Volume - Content</code></pre>"
],
"answer": 2,
"explanation": "The MVC pattern is used to keep separate three main components of an application, the idea being for example the data or 'Model' does not need to know what the 'View' or presentation of that data is doing and vice versa, with the 'Controller' handling any logic or input from the user to manipulate the 'Model'."
},
{
"subtitle": "XPath navigation",
"question": "The XPath syntax is used to traverse data stored in which format?",
"choices": [
"<pre><code class='language-javascript'>XML</code></pre>",
"<pre><code class='language-javascript'>JSON</code></pre>",
"<pre><code class='language-javascript'>Xtend</code></pre>",
"<pre><code class='language-javascript'>Text</code></pre>"
],
"answer": 0,
"explanation": "is used to navigate nodes and attributes within an XML document and stands for XML Path Language."
},
{
"subtitle": "Functions and side effects",
"question": "If a function is said to have side-effects it is expected to ?",
"choices": [
"<pre><code class='language-javascript'>Only return after an enclosed inner function has returned</code></pre>",
"<pre><code class='language-javascript'>Contain 'Blocking' code which can affect the stability of the program</code></pre>",
"<pre><code class='language-javascript'>Modify some kind of state outside of its own scope such as a global variable or change the value of its own arguments.</code></pre>",
"<pre><code class='language-javascript'>Have high algorithm complexity.</code></pre>"
],
"answer": 2,
"explanation": "Other charateristics of side-effects would be writing data to the log, interacting with users or systems on the same network and calling other functions with side-effects."
},
{
"subtitle": "Time-Complexity",
"question": "The term 'Time-Complexity' relates to ?",
"choices": [
"<pre><code class='language-javascript'>HTTP requests</code></pre>",
"<pre><code class='language-javascript'>Algorithms</code></pre>",
"<pre><code class='language-javascript'>Inheritance</code></pre>",
"<pre><code class='language-javascript'>Consuming API's</code></pre>"
],
"answer": 1,
"explanation": "Algorithm Time-Complexity is the total amount of time needed for an algorithm to run till full completion and is more often expressed with 'big-O-notation'."
},
{
"subtitle": "Find the odd",
"question": "Which of the following programming languages is the odd one out ?",
"choices": [
"<pre><code class='language-javascript'>C#</code></pre>",
"<pre><code class='language-javascript'>Java</code></pre>",
"<pre><code class='language-javascript'>Cobol</code></pre>",
"<pre><code class='language-javascript'>PHP</code></pre>"
],
"answer": 3,
"explanation": "PHP is generally referred to as an interpreted language where as the other three are considered languages generally processed by compilers."
},
{
"subtitle": "Find the odd, again",
"question": "Which in the following list is the odd one out ?",
"choices": [
"<pre><code class='language-javascript'>Boolean</code></pre>",
"<pre><code class='language-javascript'>Character</code></pre>",
"<pre><code class='language-javascript'>Array</code></pre>",
"<pre><code class='language-javascript'>Null</code></pre>"
],
"answer": 2,
"explanation": "An array in most languages is considered an object where as the other three are primitive data types."
},
{
"subtitle": "Programming language paradigms",
"question": "Object-oriented and Functional are said to be programming language paradigms. Which of the following isn't a language paradigm?"
"choices": [
"<pre><code class='language-javascript'>Procedural</code></pre>",
"<pre><code class='language-javascript'>Imperative</code></pre>",
"<pre><code class='language-javascript'>Declarative</code></pre>",
"<pre><code class='language-javascript'>Instance</code></pre>"
],
"answer": 3,
"explanation": "Instance is not a recognized programming paradigm."
},
{
"subtitle": "UML",
"question": "UML or Universal Modeling Language is a language created for ?",
"choices": [
"<pre><code class='language-javascript'>Creating database schemas.</code></pre>",
"<pre><code class='language-javascript'>Software visualization using diagrams.</code></pre>",
"<pre><code class='language-javascript'>Simplifying multi language software applications.</code></pre>",
"<pre><code class='language-javascript'>Integration of cross-platform systems on one network.</code></pre>"
],
"answer": 1,
"explanation": "UML is used for software modeling in diagram form including Class diagrams, Object diagrams and Use case diagrams among others."
}
],
"tests": [],
"challengeType": 8
},
{
"id": "5a91690fa9178457a6f12820",
"title": "CSS questions part 1",
"description": [
{
"subtitle": "Element properties",
"question": "Which properties do inline elements not possess under normal document flow?",
"choices": [
"<pre>overflow, left or right margins</pre>",
"<pre>border-radius, z-index</pre>",
"<pre>font-size, animation</pre>",
"<pre>width, top or bottom margins</pre>"
],
"answer": 3,
"explanation": "An inline element will only take up the width of the inner content."
},
{
"subtitle": "CSS rules",
"question": "What will the following css rule select?\n<pre><code class='language-javascript'>.test > div</code> {\n...\n}</code></pre>",
"choices": [
"<pre><code class='language-javascript'>Selects all divs within elements with the class of test.</code></pre>",
"<pre><code class='language-javascript'>Selects all divs outside of elements with the class of test.</code></pre>",
"<pre><code class='language-javascript'>Selects only divs that are immediate children of elements with the class of test.</code></pre>",
"<pre><code class='language-javascript'>This would not be considered a valid selector.</code></pre>"
],
"answer": 2,
"explanation": "eg: \n<pre><code class='language-html'>&lt;div class='test'&gt;\n&lt;div class='box'&gt;\n&lt;div class='content'&gt;...&lt;/div&gt;\n&lt;/div&gt;\n&lt;div class='box'&gt;\n&lt;div class='content'&gt;...&lt;/div&gt;\n&lt;/div&gt;\n&lt;/div&gt;</code></pre>\n\nWould target only the elements with a class of 'box' as these are the direct children of 'test'."
},
{
"subtitle": "Overriding properties",
"question": "Which keyword would you add to the end of a style rule to override another Css style for a specific element ?",
"choices": [
"<pre><code class='language-javascript'>*override</code></pre>",
"<pre><code class='language-javascript'>*overrideAll</code></pre>",
"<pre><code class='language-javascript'>!vital</code></pre>",
"<pre><code class='language-javascript'>!important</code></pre>"
],
"answer": 3,
"explanation": "For example if you wanted all the paragraph tags in a specific class to have the colour blue instead of black\n<pre><code class='language-javascript'></code>.myClass p {\ncolor: blue !important\n}</code></pre>"
},
{
"subtitle": "Preprocessor CSS",
"question": "Which is not considered a CSS preprocessor?",
"choices": [
"<pre><code class='language-javascript'>Less</code></pre>",
"<pre><code class='language-javascript'>Sass</code></pre>",
"<pre><code class='language-javascript'>Stylus</code></pre>",
"<pre><code class='language-javascript'>Express</code></pre>"
],
"answer": 3,
"explanation": "Express is an application framework for Node.js"
},
{
"subtitle": "CSS Box Model",
"question": "Which is not a property of the CSS 'Box Model'?",
"choices": [
"<pre><code class='language-javascript'>Border</code></pre>",
"<pre><code class='language-javascript'>Padding</code></pre>",
"<pre><code class='language-javascript'>Margin</code></pre>",
"<pre><code class='language-javascript'>Outline</code></pre>"
],
"answer": 3,
"explanation": "Content is the fourth property of the box model not outline."
},
{
"subtitle": "CSS positioning",
"question": "Absolute positioning in CSS removes an element from the normal document flow. True or false?",
"choices": [
"<pre><code class='language-javascript'>true</code></pre>",
"<pre><code class='language-javascript'>false</code></pre>"
],
"answer": 0,
"explanation": "Giving an element absolute positioning removes it from the normal document flow completely allowing positioning attributes top, left, bottom."
},
{
"subtitle": "CSS selector",
"question": "With this CSS Selector it is possible to select every element in a document.",
"choices": [
"<pre><code class='language-javascript'>Body</code></pre>",
"<pre><code class='language-javascript'>Universal</code></pre>",
"<pre><code class='language-javascript'>Wildcard</code></pre>",
"<pre><code class='language-javascript'>SelectAll</code></pre>"
],
"answer": 1,
"explanation": "The Universal selector will select every element on a page and is denoted by <code>*{}</code>. note: The rule of specificity still applies, so a more specific selector can override the universal selector in a Css document."
},
{
"subtitle": "Font size in CSS",
"question": "Which is not a valid CSS font size?",
"choices": [
"<pre><code class='language-javascript'>em</code></pre>",
"<pre><code class='language-javascript'>%</code></pre>",
"<pre><code class='language-javascript'>tp</code></pre>",
"<pre><code class='language-javascript'>px</code></pre>"
],
"answer": 2,
"explanation": "tp is not valid this should be pt."
},
{
"subtitle": "CSS clear property",
"question": "The CSS 'clear' property fulfills which task?",
"choices": [
"<pre><code class='language-javascript'>Allows transparency of an element.</code></pre>",
"<pre><code class='language-javascript'>Prevents prior properties of the selector from taking effect.</code></pre>",
"<pre><code class='language-javascript'>Positions an element clear of a siblings margins and borders.</code></pre>",
"<pre><code class='language-javascript'>Sets which sides of an element floating elements are not allowed to be floated.</code></pre>"
],
"answer": 3,
"explanation": "The clear property has the following values available: both, left, right, inherit, initial and none."
},
{
"subtitle": "CSS sudo-class",
"question": "An example of a sudo-class of a ul element written in CSS would be defined how?",
"choices": [
"<pre><code class='language-javascript'>ul:first-child</code></pre>",
"<pre><code class='language-javascript'>ul..first-child</code></pre>",
"<pre><code class='language-javascript'>ul::first-child</code></pre>",
"<pre><code class='language-javascript'>ul first-child</code></pre>"
],
"answer": 0,
"explanation": "First answer : Would be correct of a sudo-class.<br />Second answer : Would be an error of syntax.<br />Third answer: The double colon would be an example of a sudo element used with the likes of <code>::before</code> and <code>::after</code> which are examples of content.<br />Fourth answer : This would relate to html tag elements of which there is no first-child tag."
}
],
"tests": [],
"challengeType": 8
},
{
"id": "5a91a167a9178457a6f12821",
"title": "CSS questions part 2",
"description": [
{
"subtitle": "CSS selector",
"question": "An entire CSS selector and declaration block whithin a CSS document eg:<code><br /> .container div p {<br />position: relative;<br />width: 300px;<br />margin: auto;<br />color: #ffffff;<br />}</code><br /> is referred to as?",
"choices": [
"<pre><code class='language-javascript'>Base-Block</code></pre>",
"<pre><code class='language-javascript'>Selection Properties</code></pre>",
"<pre><code class='language-javascript'>Selector Group</code></pre>",
"<pre><code class='language-javascript'>Ruleset</code></pre>"
],
"answer": 3,
"explanation": "The selectors name and properties are collectively called a Ruleset."
},
{
"subtitle": "CSS Browser compatibility",
"question": "Which is not a valid CSS prefix to ensure browser compatibility?",
"choices": [
"<pre><code class='language-javascript'>-webkit-</code></pre>",
"<pre><code class='language-javascript'>-win-</code></pre>",
"<pre><code class='language-javascript'>-moz-</code></pre>",
"<pre><code class='language-javascript'>-o-</code></pre>"
],
"answer": 1,
"explanation": "<code>-win-</code> is incorrect, <code>-webkit-</code> (Chrome, Safari, ioS and modern versions of Opera), <code>-moz-</code> (Firefox), <code>-o-</code> (Older versions of Opera), the other would be <code>-ms-</code> used for (IE and Microsoft Edge)."
},
{
"subtitle": "CSS 'text-transform' property",
"question": "The CSS property 'text-transform' is mainly used for?",
"choices": [
"<pre><code class='language-javascript'>Alteration of text letter case.</code></pre>",
"<pre><code class='language-javascript'>Changing the alignment of text.</code></pre>",
"<pre><code class='language-javascript'>Increase/Decrease font size.</code></pre>",
"<pre><code class='language-javascript'>Transformation of font family.</code></pre>"
],
"answer": 0,
"explanation": "The values for the property 'text-transform' are, capitalize, full-width, inherit, lowercase, none and uppercase."
},
{
"subtitle": "CSS font-sizes",
"question": "If the default font size for a page is 12px, What is the pixel equivalent of 1.5em?",
"choices": [
"<pre><code class='language-javascript'>12.5px</code></pre>",
"<pre><code class='language-javascript'>9px</code></pre>",
"<pre><code class='language-javascript'>18px</code></pre>",
"<pre><code class='language-javascript'>6px</code></pre>"
],
"answer": 2,
"explanation": "1em is equivalent to the base or default font size therefore (12 * 1.5 = 18)."
},
{
"subtitle": "CSS font weight",
"question": "In CSS 'font-weight: bold;' is the same as?",
"choices": [
"<pre><code class='language-javascript'>font-weight: 400;</code></pre>",
"<pre><code class='language-javascript'>font-weight: 900</code></pre>",
"<pre><code class='language-javascript'>font-weight: 700</code></pre>",
"<pre><code class='language-javascript'>font-weight: 500</code></pre>"
],
"answer": 2,
"explanation": "The keyword 'bold' is the same as the numerical value 700."
},
{
"subtitle": "CSS ruleset",
"question": "Given this ruleset <code><br />.testDiv {<br />width: 20%;<br />height: 20%;<br />content: 'add this text'<br />}</code><br />What would happen with the content properties text?",
"choices": [
"<pre><code class='language-javascript'>Nothing</code></pre>",
"<pre><code class='language-javascript'>Appended to any text contained in element with class of testDiv.</code></pre>",
"<pre><code class='language-javascript'>Prepended to any text contained in element with class of testDiv.</code></pre>",
"<pre><code class='language-javascript'>Overwrite any text contained in element with class of testDiv.</code></pre>"
],
"answer": 0,
"explanation": "Nothing would appear on the page, the content property needs to be used with sudo elements like <code>::after</code> or <code>::before</code> eg:<br /><code>.testDiv {<br />width: 20%;<br />height: 20%;\n}\n.testDiv::after {\ncontent: 'add this text'\n}</code>"
},
{
"subtitle": "CSS match selector",
"question": "What would the following CSS selector match?<br /><code>section + p</code>",
"choices": [
"<pre><code class='language-javascript'>All &lt;section&gt; and &lt;p&gt; tags.</code></pre>",
"<pre><code class='language-javascript'>All &lt;p&gt; tags within a &lt;section&gt; tag.</code></pre>",
"<pre><code class='language-javascript'>All &lt;p&gt; tags placed immediately after a &lt;section&gt; tag.</code></pre>",
"<pre><code class='language-javascript'>Not a valid selector.</code></pre>"
],
"answer": 2,
"explanation": "<pre><code class='language-javascript'>&lt;p&gt;First Paragraph&lt;/p&gt;<br />&lt;section&gt;...&lt;/section&gt;<br />&lt;p&gt;Second Paragraph&lt;/p&gt;<br />&lt;p&gt;Third Paragraph&lt;/p&gt;</code></pre><br />Only the second paragraph tag will be selected and matched."
},
{
"subtitle": "How to incorporte CSS into web document",
"question": "How many different ways is it possible to incorporate CSS into a web document?",
"choices": [
"<pre><code class='language-javascript'>1</code></pre>",
"<pre><code class='language-javascript'>2</code></pre>",
"<pre><code class='language-javascript'>3</code></pre>",
"<pre><code class='language-javascript'>4</code></pre>"
],
"answer": 2,
"explanation": "Currently CSS can be used 'Inline' as a style attribute of an Html element, 'Embedded' in a style tag of a document and 'Imported' as an external file with the link tag element."
},
{
"subtitle": "Using target in CSS",
"question": "What would <code>[role=contentinfo] {...}</code> target in CSS?",
"choices": [
"<pre><code class='language-javascript'>Any element with the role attribute of contentinfo.</code></pre>",
"<pre><code class='language-javascript'>Any element within a &lt;span&gt; tag.</code></pre>",
"<pre><code class='language-javascript'>Any element within a &lt;span&gt; tag with the role attribute of contentinfo.</code></pre>",
"<pre><code class='language-javascript'>This would only be valid using Sass or Scss.</code></pre>"
],
"answer": 0,
"explanation": "The square bracket notation is used to target elements with specific attributes."
},
{
"subtitle": "CSS positioning",
"question": "Which is not a value for 'position' in CSS?",
"choices": [
"<pre><code class='language-javascript'>Absolute</code></pre>",
"<pre><code class='language-javascript'>Static</code></pre>",
"<pre><code class='language-javascript'>Responsive</code></pre>",
"<pre><code class='language-javascript'>inherit</code></pre>"
],
"answer": 2,
"explanation": "There is no such positioning as responsive, currently there is (absolute, fixed, inherit, relative and static)."
}
],
"tests": [],
"challengeType": 8
},
{
"id": "5a91b5bfa9178457a6f12822",
"title": "Javascript questions part 1",
"description": [
{
"subtitle": "JavaScript Array method",
"question": "which of the following is not an Array method?",
"choices": [
"<pre><code class='language-javascript'>pop()</code></pre>",
"<pre><code class='language-javascript'>unshift()</code></pre>",
"<pre><code class='language-javascript'>split()</code></pre>",
"<pre><code class='language-javascript'>every()</code></pre>"
],
"answer": 2,
"explanation": "<code>split()</code> is a string method<br /><code>pop()</code> removes from the end of an array<br /><code>unshift()</code> adds to the front of an array<br />and <code>every()</code> returns a true or false value for each element in an array."
},
{
"subtitle": "JavaScript ES6 feature",
"question": "ES6 Arrow functions written on one line require no return statement.",
"choices": [
"<pre><code class='language-javascript'>True</code></pre>",
"<pre><code class='language-javascript'>False</code></pre>"
],
"answer": 0,
"explanation": "True"
},
{
"subtitle": "JavaScript strict syntax",
"question": "Where is the correct place to insert the \"use strict\" expression.",
"choices": [
"<pre><code class='language-javascript'>Before declaring a variable</code></pre>",
"<pre><code class='language-javascript'>At the start of a script or function</code></pre>",
"<pre><code class='language-javascript'>It is used inline within an HTML element</code></pre>",
"<pre><code class='language-javascript'>Within a Css selector</code></pre>"
],
"answer": 1,
"explanation": "The \"use strict\"; expression should be placed at the start of a script for global scope or\nwithin a function for local scope."
},
{
"subtitle": "JavaScript equality",
"question": "The following code will output?<br /><code>const x = '7'<br />const y = 7<br />console.log(x == y)</code>",
"choices": [
"<pre><code class='language-javascript'>true</code></pre>",
"<pre><code class='language-javascript'>false</code></pre>",
"<pre><code class='language-javascript'>NaN</code></pre>",
"<pre><code class='language-javascript'>undefined</code></pre>"
],
"answer": 0,
"explanation": "true, if triple equals '===' was used it would then evaluate to false."
},
{
"subtitle": "JavaScript modules",
"question": "In which of the following can you expect to see the <code>require()</code> function?",
"choices": [
"<pre><code class='language-javascript'>Vanilla Javascript</code></pre>",
"<pre><code class='language-javascript'>React.js</code></pre>",
"<pre><code class='language-javascript'>Node.js</code></pre>",
"<pre><code class='language-javascript'>jQuery</code></pre>"
],
"answer": 2,
"explanation": "<code>require()</code> is built into Node.js in order to load modules for use with an application."
},
{
"subtitle": "JavaScript recursive methods",
"question": "What is the main function or job of a 'base case' in a typical recursive method ?",
"choices": [
"<pre><code class='language-javascript'>To reduce the algorithm complexity of the function.</code></pre>",
"<pre><code class='language-javascript'>To terminate the recursion.</code></pre>",
"<pre><code class='language-javascript'>To keep track of each invocation of the function on the stack.</code></pre>",
"<pre><code class='language-javascript'>To return null.</code></pre>"
],
"answer": 1,
"explanation": "To allow the recursive function to terminate and inititate the popping off of the stack of each function call pushed upon it."
},
{
"subtitle": "JavaScript framework",
"question": "In which Javascript framework will you find the ng style of attributes?",
"choices": [
"<pre><code class='language-javascript'>jQuery</code></pre>",
"<pre><code class='language-javascript'>React</code></pre>",
"<pre><code class='language-javascript'>Angular</code></pre>",
"<pre><code class='language-javascript'>Ember</code></pre>"
],
"answer": 2,
"explanation": "The ng- style prefix is used to denote an angularJS directive."
},
{
"subtitle": "JavaScript syntax",
"question": "The following code will return 24 true or false?<br /><code>function multiply(num1, num2) {<br />return<br />num1 * num2;<br />}<br />multiply(4,6)</code>",
"choices": [
"<pre><code class='language-javascript'>True</code></pre>",
"<pre><code class='language-javascript'>False</code></pre>"
],
"answer": 1,
"explanation": "The function will return undefined before it reaches the multiplication of the two arguments."
},
{
"subtitle": "JavaScript callback",
"question": "A callback function is also known as?",
"choices": [
"<pre><code class='language-javascript'>Loopback function</code></pre>",
"<pre><code class='language-javascript'>Higher-order function</code></pre>",
"<pre><code class='language-javascript'>Recursive function</code></pre>",
"<pre><code class='language-javascript'>Pure Function</code></pre>"
],
"answer": 1,
"explanation": "Also Known as a Higher-order function a callback function can be passed to another function as a parameter and is called inside that function."
},
{
"subtitle": "JavaScript syntax, again",
"question": "Javascript is case sensitive true or false?",
"choices": [
"<pre><code class='language-javascript'>true</code></pre>",
"<pre><code class='language-javascript'>false</code></pre>"
],
"answer": 0,
"explanation": "true"
}
],
"tests": [],
"challengeType": 8
},
{
"id": "5a92c913a9178457a6f12823",
"title": "Javascript questions part 2",
"description": [
{
"subtitle": "JavaScript pop up",
"question": "Which is not a pop up box in JavaScript",
"choices": [
"<pre><code class='language-javascript'>Confirm Box</code></pre>",
"<pre><code class='language-javascript'>Alert Box</code></pre>",
"<pre><code class='language-javascript'>Message Box</code></pre>",
"<pre><code class='language-javascript'>Prompt Box</code></pre>"
],
"answer": 2,
"explanation": "Message Box."
},
{
"subtitle": "JavaScript Loops",
"question": "Which of the following is not a looping format in javascript",
"choices": [
"<pre><code class='language-javascript'>For</code></pre>",
"<pre><code class='language-javascript'>While</code></pre>",
"<pre><code class='language-javascript'>Next</code></pre>",
"<pre><code class='language-javascript'>Do-While</code></pre>"
],
"answer": 2,
"explanation": "Next is not a loop available in javascript."
},
{
"subtitle": "JavaScript types",
"question": "What is the result of the following code?<code>\nconsole.log( 4 + 4 + \"2\" )</code>;",
"choices": [
"<pre><code class='language-javascript'>\"82\"</code></pre>",
"<pre><code class='language-javascript'>10</code></pre>",
"<pre><code class='language-javascript'>82</code></pre>",
"<pre><code class='language-javascript'>\"10\"</code></pre>"
],
"answer": 0,
"explanation": "The first two integers will be added as normal then the string will be concatenated to the result of 8 giving \"82\"."
},
{
"subtitle": "JavaScript types",
"question": "What is the result of the following code?<code>\nconsole.log( \"3\" + 6 + 6 );</code>",
"choices": [
"<pre><code class='language-javascript'>15</code></pre>",
"<pre><code class='language-javascript'>\"15\"</code></pre>",
"<pre><code class='language-javascript'>\"366\"</code></pre>",
"<pre><code class='language-javascript'>366</code></pre>"
],
"answer": 2,
"explanation": "As the equation begins with a string, each integer will be converted and appended in string form giving \"366\""
},
{
"subtitle": "JavaScript Event loop",
"question": "Which best describes the function of the Javascript event loop?",
"choices": [
"<pre><code class='language-javascript'>To Handle synchronous code one line at a time in the main script.</code></pre>",
"<pre><code class='language-javascript'>To remove any blocking functions accidentally pushed on to the call stack.</code></pre>",
"<pre><code class='language-javascript'>To constantly monitor if the call stack is empty and then invoke any asynchronous functions from the event queue.</code></pre>",
"<pre><code class='language-javascript'>A mechanism to best decide how to terminate any looping structure.</code></pre>"
],
"answer": 2,
"explanation": "Briefly the event loop constantly runs to monitor state between the callstack, the event table and the event queue. When asynchronous code is executed it\nis placed on to the event table only to be executed as and when a specific event occurs, when it does it is then placed on the event queue until the call\nstack is empty then when invoked, moved from the queue to the callstack."
},
{
"subtitle": "JavaSript type",
"question": "<code>console.log(typeof(NaN))</code> Will log?",
"choices": [
"<pre><code class='language-javascript'>false</code></pre>",
"<pre><code class='language-javascript'>null</code></pre>",
"<pre><code class='language-javascript'>number</code></pre>",
"<pre><code class='language-javascript'>undefined</code></pre>"
],
"answer": 2,
"explanation": "Despite standing for Not a Number NaN is still regarded as a numeric type."
},
{
"subtitle": "JavaScript ES6 operators",
"question": "What will the following log?<code><br />let x = 'teststring';<br />console.log([...x]);</code>",
"choices": [
"<pre><code class='language-javascript'>[\"t\",\"e\",\"s\",\"t\",\"s\",\"t\",\"r\",\"i\",\"n\",\"g\"]</code></pre>",
"<pre><code class='language-javascript'>uncaught syntax error</code></pre>",
"<pre><code class='language-javascript'>[\"teststring\"]</code></pre>",
"<pre><code class='language-javascript'>t e s t s t r i n g</code></pre>"
],
"answer": 0,
"explanation": "The spread syntax introduced in es6 can be used to iterate through each character of a string, and here stored in an array similar to calling <code>x.split(\"\")</code>"
},
{
"subtitle": "ES6 let / const declarations",
"question": "What will the following code log?<code><br />function myFunction() {<br />const a = 'variableA'<br />if( 3 > 1) {<br />let b = 'variableB'<br />}<br />console.log(a)<br />console.log(b)<br />}<br />myFunction();</code>",
"choices": [
"<pre><code class='language-javascript'>variableA, variableB</code></pre>",
"<pre><code class='language-javascript'>variableA</code></pre>",
"<pre><code class='language-javascript'>variableB, variableA</code></pre>",
"<pre><code class='language-javascript'>variableA, Uncaught ReferenceError: b is not defined</code></pre>"
],
"answer": 3,
"explanation": "Due to the keywords let and const being block scoped rather than just locally function scoped like var, the variable b will be garbage collected after the\nconditional if statement has finished and will no longer exist for the console.log() method."
},
{
"subtitle": "JavaSript function arguments",
"question": "The following code will return?<code><br />function getsum(num1 = 1, num2 = 1) {<br />return num1 + num2;<br />}<br />getsum(3);</code>",
"choices": [
"<pre><code class='language-javascript'>4</code></pre>",
"<pre><code class='language-javascript'>6</code></pre>",
"<pre><code class='language-javascript'>2</code></pre>",
"<pre><code class='language-javascript'>5</code></pre>"
],
"answer": 0,
"explanation": "Due to only one argument being passed this will override the first default parameter giving num1 the value of 3 + num2 default value of 1.\nIf the function were to be executed without any arguments at all both defaults would be used and return 2."
},
{
"subtitle": "JavaSript inheritance",
"question": "All Javascript objects inherit properties and methods from a class true or false?",
"choices": [
"<pre><code class='language-javascript'>true</code></pre>",
"<pre><code class='language-javascript'>false</code></pre>"
],
"answer": 1,
"explanation": "Due to only one argument being passed this will override the first default parameter giving num1 the value of 3 + num2 default value of 1.\nIf the function were to be executed without any arguments at all both defaults would be used and return 2."
}
],
"tests": [],
"challengeType": 8
},
{
"id": "5a933ce3a9178457a6f12824",
"title": "Networking questions part 1",
"description": [
{
"subtitle": "Address identification",
"question": "00:26:2D:55:42:1f is an example of what?",
"choices": [
"<pre>MAC Address</pre>",
"<pre>IPv4 Address</pre>",
"<pre>IPv6 Address</pre>",
"<pre>A wireless protocol</pre>"
],
"answer": 0,
"explanation": "A valid MAC Address."
},
{
"subtitle": "OSI networking model",
"question": "Which one of the following is not part of the seven layer OSI networking model.",
"choices": [
"<pre>Application</pre>",
"<pre>Presentation</pre>",
"<pre>Session</pre>",
"<pre>Protocol</pre>",
"<pre>Network</pre>",
"<pre>Data Link</pre>",
"<pre>Physical</pre>"
],
"answer": 3,
"explanation": "Protocol is not part of the OSI networking model layer 4 should be the transport layer."
},
{
"subtitle": "RAID",
"question": "In networking a RAID implementation relates to?",
"choices": [
"<pre>Wireless standards</pre>",
"<pre>Password policies</pre>",
"<pre>Remote access</pre>",
"<pre>Fault tolerance</pre>"
],
"answer": 3,
"explanation": "RAID stands for Redundant array of inexpensive disks and is a model that allows servers to\nendure the failure of one or more hard disks without interuption to services and resources."
},
{
"subtitle": "Server status",
"question": "Your console or terminal throws up a 404 error, this means?",
"choices": [
"<pre>Upgrade required</pre>",
"<pre>Not found</pre>",
"<pre>Gateway Timeout</pre>",
"<pre>No Response</pre>"
],
"answer": 1,
"explanation": "This error informs you that an internal or external resource has not been found and can not be loaded into a page or application."
},
{
"subtitle": "Server Status, again",
"question": "Your console or terminal throws up a 500 error, this means?",
"choices": [
"<pre>Internal Server Error</pre>",
"<pre>Proxy Authentication Required</pre>",
"<pre>Upgrade Required</pre>",
"<pre>Too Many Requests</pre>"
],
"answer": 0,
"explanation": "A generic error message which refers to an error on the webserver when no precise detail is available."
},
{
"subtitle": "HTTP methods",
"question": "GET and POST are important HTTP request methods which of the following list are Not an example of an HTTP request method?",
"choices": [
"<pre>HEAD</pre>",
"<pre>PUT</pre>",
"<pre>BODY</pre>",
"<pre>DELETE</pre>"
],
"answer": 2,
"explanation": "HEAD is similar to the Get method but returns no response body, PUT is used to replace and update a specified resource, DELETE will delete a resource,\nthere is no such method as a BODY request."
},
{
"subtitle": "Loopback",
"question": "In networking which of the following is considered to be a loopback ip address or 'localhost'?",
"choices": [
"<pre>172.0.0.1</pre>",
"<pre>127.0.0.1</pre>",
"<pre>10.0.0.0</pre>",
"<pre>192.168.0.0</pre>"
],
"answer": 1,
"explanation": "127.0.0.1 is the loopback address or localhost, option a is an example of a public address and options c and d are examples of private network addresses."
},
{
"subtitle": "Network & Security Architecture",
"question": "Ring, Star, Mesh and Bus are all examples of?",
"choices": [
"<pre>Network topologies</pre>",
"<pre>Security Protocols for mobile development</pre>",
"<pre>Restful API's</pre>",
"<pre>File server storage methods</pre>"
],
"answer": 0,
"explanation": "A network topology is a logical and physical layout of how the network appears to the devices using it."
}
],
"tests": [],
"challengeType": 8
},
{
"id": "5a933d04a9178457a6f12825",
"title": "Networking questions part 2",
"description": [
{
"subtitle": "Default port for FTP",
"question": "In attempting to connect to an FTP (File Transfer Protocol) server and failing, which port can you check is open to troubleshoot the connection issue?",
"choices": [
"<pre><code class='language-javascript'>25</code></pre>",
"<pre><code class='language-javascript'>443</code></pre>",
"<pre><code class='language-javascript'>23</code></pre>",
"<pre><code class='language-javascript'>21</code></pre>"
],
"answer": 3,
"explanation": "Port 21 is traditionally used as the default port on a system for FTP."
},
{
"subtitle": "Network types",
"question": "Which of the following is not a type of network?",
"choices": [
"<pre><code class='language-javascript'>LAN</code></pre>",
"<pre><code class='language-javascript'>MAN</code></pre>",
"<pre><code class='language-javascript'>PAN</code></pre>",
"<pre><code class='language-javascript'>NAN</code></pre>"
],
"answer": 3,
"explanation": "NAN is not a current network type. LAN (Local Area Network), MAN (Metropolitan Area Network), PAN (Personal Area Network)."
},
{
"subtitle": "Subnet mask usage",
"question": "What is a subnet mask used for?",
"choices": [
"<pre><code class='language-javascript'>To hide the id of a wireless access point.</code></pre>",
"<pre><code class='language-javascript'>To identyfy the extended and host address.</code></pre>",
"<pre><code class='language-javascript'>To encrypt the broadcasting of ip addresses.</code></pre>",
"<pre><code class='language-javascript'>To connect to a vpn.</code></pre>"
],
"answer": 1,
"explanation": "A subnet mask is used along side an IP address in order to isolate the extended or 'subnet' of the network address and the host machine address."
},
{
"subtitle": "Network acronym",
"question": "What does NIC stand for?",
"choices": [
"<pre><code class='language-javascript'>Network Isolated Connection</code></pre>",
"<pre><code class='language-javascript'>Network Interconnect Cables</code></pre>",
"<pre><code class='language-javascript'>Network Interface Card</code></pre>",
"<pre><code class='language-javascript'>Network Interference Cause</code></pre>"
],
"answer": 2,
"explanation": "A Network Interface Card or (Network Interface Controller) is a hardware component that connects to a Pc or printer in order to\nconnect and be identified on a network."
},
{
"subtitle": "Default gateway",
"question": "A 'default gateway' provides a way for a local network to connect to a larger external network true or false?",
"choices": [
"<pre><code class='language-javascript'>true</code></pre>",
"<pre><code class='language-javascript'>false</code></pre>"
],
"answer": 0,
"explanation": "True this is usually the address of of an external router or switch."
},
{
"subtitle": "The ipconfig commad",
"question": "'ipconfig' is used for?",
"choices": [
"<pre><code class='language-javascript'>Reassigning ip addresses.</code></pre>",
"<pre><code class='language-javascript'>Tool for masking ip adresses.</code></pre>",
"<pre><code class='language-javascript'>Monitoring network traffic.</code></pre>",
"<pre><code class='language-javascript'>Identify address information of a machine on a network.</code></pre>"
],
"answer": 3,
"explanation": "ipconfig or ifconfig(linux) is a utility for gaining various address information of a computer on a network."
},
{
"subtitle": "Network terminology",
"question": "The term 'Latency' refers to?",
"choices": [
"<pre><code class='language-javascript'>The logical state of a network.</code></pre>",
"<pre><code class='language-javascript'>A loss of data expected in transfer over a network.</code></pre>",
"<pre><code class='language-javascript'>A measure of time delay between request and response experienced by a system.</code></pre>",
"<pre><code class='language-javascript'>The scope for expanding a network.</code></pre>"
],
"answer": 2,
"explanation": "Latency can affect host to host transfers http requests etc."
},
{
"subtitle": "Network terminology, again",
"question": "The term 'full duplex' refers to?",
"choices": [
"<pre><code class='language-javascript'>Two way data transfer but not at the same time.</code></pre>",
"<pre><code class='language-javascript'>Two way data transfer simultaneously.</code></pre>",
"<pre><code class='language-javascript'>One way data transfer at high speed.</code></pre>",
"<pre><code class='language-javascript'>One way data transfer with encryption</code></pre>"
],
"answer": 1,
"explanation": "An example of full duplex would be like a telephone conversation between two people."
}
],
"tests": [],
"challengeType": 8
}
]
}

View File

@ -1,58 +0,0 @@
{
"name": "Add and Subtract Decimals",
"order": 18,
"challenges": [
{
"id": "59a5801209a6acac5983b428",
"title": "Add and Subtract Decimal Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836409",
"title": "Mental Math to Add and Subtract Decimals",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836410",
"title": "Add and Subtract Decimals with Front-End Estimation",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836411",
"title": "Round Decimals to Estimate Sums and Differences",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,84 +0,0 @@
{
"name": "Add and Subtract Fractions",
"order": 11,
"challenges": [
{
"id": "59a5801209a6acac5983b421",
"title": "Add Fractions with Common Denominators",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836370",
"title": "Subtract Fractions with Common Denominators",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836371",
"title": "Add and Subtract with Common Denominators",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836372",
"title": "Add and Subtract Fractions with Common Denominators Word Problems",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836373",
"title": "Add Fractions with Different Denominators",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836374",
"title": "Subtract Fractions with Different Denominators",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,71 +0,0 @@
{
"name": "Add and Subtract Mixed Numbers",
"order": 12,
"challenges": [
{
"id": "59a5801209a6acac5983b422",
"title": "Add Mixed Numbers with Common Denominators",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836376",
"title": "Subtract Mixed Numbers with Common Denominators",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836377",
"title": "Subtract Mixed Numbers with Different Denominators",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836378",
"title": "Add and Subtract Three Mixed Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836379",
"title": "Add and Subtract Mixed Numbers Word Problems",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,45 +0,0 @@
{
"name": "Additon and Subtraction",
"order": 2,
"challenges": [
{
"id": "59a5801209a6acac5983b411",
"title": "Add Whole Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836306",
"title": "Subtract Whole Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836307",
"title": "Estimate Whole Number Sums and Differences",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,71 +0,0 @@
{
"name": "Basic Decimals",
"order": 15,
"challenges": [
{
"id": "59a5801209a6acac5983b425",
"title": "Place Value Charts and Decimals to Thousandths",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836398",
"title": "Equivalent Decimals Ending in Zero",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836399",
"title": "Decimals in Words",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836400",
"title": "Decimal Place Value",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836401",
"title": "Decimals in Expanded Form",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,58 +0,0 @@
{
"name": "Basic Place Value",
"order": 1,
"challenges": [
{
"id": "59a5801209a6acac59836300",
"title": "Recognize Place Values to 10,000,000",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836301",
"title": "Greatest and Least Values of Given Digits to 10,000,000",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836303",
"title": "Higher Order Place Value and Number Placement Problems",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836304",
"title": "Round Large Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,45 +0,0 @@
{
"name": "Compare Decimals",
"order": 16,
"challenges": [
{
"id": "59a5801209a6acac5983b426",
"title": "Compare and Order Decimals",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836403",
"title": "Compare and Compose Decimals and Fractions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836404",
"title": "Compare, Order and Identify Decimal Inequalities",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,71 +0,0 @@
{
"name": "Converting Decimals",
"order": 25,
"challenges": [
{
"id": "59a5801209a6acac5983b435",
"title": "Convert Decimals to Fractions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836444",
"title": "Convert Decimals into Simplified Mixed Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836445",
"title": "Decimals as Percents",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836446",
"title": "Compare and Order Fractions and Decimals",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836447",
"title": "Convert between Decimals, Fractions, and Percents",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,84 +0,0 @@
{
"name": "Converting Fractions",
"order": 24,
"challenges": [
{
"id": "59a5801209a6acac5983b434",
"title": "Fraction and Decimal Conversion",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836438",
"title": "Convert Mixed Numbers to Decimals",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836439",
"title": "Compare Mixed Numbers and Decimals",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836440",
"title": "Convert Between Fractions or Mixed Numbers and Decimals",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836441",
"title": "Add Fractions and Convert to Decimals",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836442",
"title": "Fractions as Percents",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,32 +0,0 @@
{
"name": "Converting Percentages",
"order": 23,
"challenges": [
{
"id": "59a5801209a6acac5983b433",
"title": "Percents as Decimals",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836436",
"title": "Percents as Fractions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,71 +0,0 @@
{
"name": "Division",
"order": 4,
"challenges": [
{
"id": "59a5801209a6acac5983b413",
"title": "Divide Two Digits by One or Two Digits Without Remainders",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836319",
"title": "Higher Order Division to 1000 by One Digit",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836320",
"title": "Divide More than Two Digits by One Digit with Remainders",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836321",
"title": "Relate Division to Multiplication",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836322",
"title": "Estimate Whole Number Products and Quotients",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,58 +0,0 @@
{
"name": "Exponents and Roots",
"order": 7,
"challenges": [
{
"id": "59a5801209a6acac5983b417",
"title": "Exponents",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836338",
"title": "Evaluate and Compare Powers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836339",
"title": "Perfect Square Roots",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836340",
"title": "Evaluate Square Roots",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,97 +0,0 @@
{
"name": "Factors",
"order": 8,
"challenges": [
{
"id": "59a5801209a6acac5983b418",
"title": "Prime and Composite Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836342",
"title": "Prime Factorization",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836343",
"title": "Identify Factor Pairs",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836344",
"title": "Divisibility Rules to Find Factors",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836345",
"title": "GCF Greatest Common Factor",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836346",
"title": "Common Multiples",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836347",
"title": "LCM Least Common Multiple",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,136 +0,0 @@
{
"name": "Fractions",
"order": 10,
"challenges": [
{
"id": "59a5801209a6acac5983b420",
"title": "Equivalent Fractions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836360",
"title": "Simplify Fractions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836361",
"title": "Simplify Fractions Word Problems",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836362",
"title": "Compare Fractions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836363",
"title": "Compare Fractions using Pictures",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836364",
"title": "Compare Fractions that have Common Numerators or Denominators",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836365",
"title": "Compare Fractions without Common Numerators or Denominators",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836366",
"title": "Compare Fractions without Common Numerators or Denominators Word Problems",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836367",
"title": "Estimate and Round Fractions and Mixed Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836368",
"title": "Convert and Compare Mixed Numbers and Improper Fractions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,149 +0,0 @@
{
"name": "Integer Operations",
"order": 9,
"challenges": [
{
"id": "59a5801209a6acac5983b419",
"title": "Integers in the Real World",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836349",
"title": "Integers on a Number Line",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836350",
"title": "Absolute Value of Integers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836351",
"title": "Add Integers with the Same Signs",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836352",
"title": "Add Integers with Different Signs",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836353",
"title": "Integer Addition",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836354",
"title": "Subtract Integers with the Same Sign",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836355",
"title": "Subtract Integers with Different Signs",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836356",
"title": "Integer Subtraction",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836357",
"title": "Multiply Integers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836358",
"title": "Divide Integers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,71 +0,0 @@
{
"name": "Long Division",
"order": 5,
"challenges": [
{
"id": "59a5801209a6acac5983b415",
"title": "Long Division Without Remainders",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836324",
"title": "Divide up to Four Digits by Two Digits with Remainders",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836325",
"title": "Groups and Remainders Word Problems",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836326",
"title": "Long Division Word Problems",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836327",
"title": "Divide Whole Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,136 +0,0 @@
{
"name": "Multiplication",
"order": 3,
"challenges": [
{
"id": "59a5801209a6acac5983b412",
"title": "Multiply Multiple Digits by One Digit",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836309",
"title": "Higher Order One Digit Multiplication Word Problems",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836310",
"title": "Relate One Digit Number Patterns to Multiplication",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836311",
"title": "Multiply Numbers with the Associative Property",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836312",
"title": "Multiply Two Digits by Two or More Digits",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836313",
"title": "Multiply and Compare with Greater/Less Than",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836314",
"title": "Relate Number Patterns to Multiplication",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836315",
"title": "Higher Order Multiplication Word Problems",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836316",
"title": "Multiply Whole Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836317",
"title": "Mental Multiplication",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,58 +0,0 @@
{
"name": "Multiply and Divide Decimals",
"order": 19,
"challenges": [
{
"id": "59a5801209a6acac5983b429",
"title": "Decimal Multiplication",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836413",
"title": "Decimal Division",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836414",
"title": "Multiply Decimals and Whole Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836415",
"title": "Estimate Products and Quotients of Decimals",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,162 +0,0 @@
{
"name": "Multiply and Divide Fractions",
"order": 13,
"challenges": [
{
"id": "59a5801209a6acac5983b423",
"title": "Multiply Whole Numbers and Fractions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836381",
"title": "Multiply Two Fractions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836382",
"title": "Multiply Three or More Fractions and Whole Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836383",
"title": "Multiply Mixed Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836384",
"title": "Multiply Mixed Numbers Word Problems",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836385",
"title": "Reciprocal Fractions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836386",
"title": "Divide Fractions and Whole Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836387",
"title": "Divide Fractions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836388",
"title": "Divide Whole Numbers by Mixed Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836389",
"title": "Divide Mixed Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836390",
"title": "Multiply and Divide Fractions and Mixed Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836391",
"title": "Estimate Products of Whole Numbers and Fractions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,123 +0,0 @@
{
"name": "Order of Operations",
"order": 6,
"challenges": [
{
"id": "59a5801209a6acac5983b416",
"title": "Introduction to Order of Operations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836329",
"title": "Divide and Subtract with Remainders in Word Problems",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836330",
"title": "Division and Subtraction Word Problems",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836331",
"title": "Higher Order Division and Subtraction Word Problems",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836332",
"title": "Multiply and Add Word Problems",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836333",
"title": "Multiply and Add or Subtract Word Problems",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836334",
"title": "Place Operators to Make True Statements",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836335",
"title": "Place Operators to Make True Statements that Include Parentheses",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836336",
"title": "Place Parentheses to Make True Statements",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,110 +0,0 @@
{
"name": "Percentages",
"order": 22,
"challenges": [
{
"id": "59a5801209a6acac5983b432",
"title": "Overview of Percentages",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836428",
"title": "Percent of a Number",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836429",
"title": "Simple Interest",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836430",
"title": "Percent of Change",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836431",
"title": "Percent of Increase",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836432",
"title": "Percent of Decrease",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836433",
"title": "Prices Involving Discounts",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836434",
"title": "Total Bill Including Tip and Tax",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,58 +0,0 @@
{
"name": "Powers of Ten and Scientific Notation",
"order": 20,
"challenges": [
{
"id": "59a5801209a6acac5983b430",
"title": "Multiply Decimals by Powers of Ten",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836417",
"title": "Multiplication and Powers of Ten",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836418",
"title": "Division and Powers of Ten",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836419",
"title": "Scientific Notation",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,97 +0,0 @@
{
"name": "Rational and Irrational numbers",
"order": 21,
"challenges": [
{
"id": "59a5801209a6acac5983b431",
"title": "Rational Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836421",
"title": "Add Rational Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836422",
"title": "Subtract Rational Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836423",
"title": "Multiply Rational Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836424",
"title": "Divide Rational Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836425",
"title": "Irrational Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836426",
"title": "Irrational Square Roots",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,71 +0,0 @@
{
"name": "Ratios",
"order": 14,
"challenges": [
{
"id": "59a5801209a6acac5983b424",
"title": "Definition of a Ratio",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836393",
"title": "Equivalent Ratios",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836394",
"title": "Ratios in Simplest Form",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836395",
"title": "Compare Ratios in Decimal Form",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836396",
"title": "Unit Rates",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,32 +0,0 @@
{
"name": "Round Decimals",
"order": 17,
"challenges": [
{
"id": "59a5801209a6acac5983b427",
"title": "Round Decimal Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836407",
"title": "Round Decimals with Place Value",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,84 +0,0 @@
{
"name": "Algebra Expressions and Variables",
"order": 29,
"challenges": [
{
"id": "59a5801209a6acac5983b439",
"title": "Expressions and Variables",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836461",
"title": "Evaluate Single Variable Expressions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836462",
"title": "Evaluate Expressions with One or More Variables",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836463",
"title": "Words that Describe Mathematical Operations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836464",
"title": "Translate Between English Phrases and Algebraic Expressions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836465",
"title": "Calculator Use with Algebra Expressions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,71 +0,0 @@
{
"name": "Integers",
"order": 27,
"challenges": [
{
"id": "59a5801209a6acac5983b437",
"title": "Absolute Value of Integers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836451",
"title": "Integer Addition",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836452",
"title": "Integer Subtraction",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836453",
"title": "Integer Multiplication",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836454",
"title": "Integer Division",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,136 +0,0 @@
{
"name": "Properties and Axioms of Real Numbers",
"order": 30,
"challenges": [
{
"id": "59a5801209a6acac5983b440",
"title": "Real Number Properties and Axioms",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836467",
"title": "Distributive Property",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836468",
"title": "Expressions and the Distributive Property",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836469",
"title": "When to Use the Distributive Property",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836470",
"title": "Distributive Property to Evaluate Formulas with Decimals",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836471",
"title": "Additive inverses and Absolute Values",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836472",
"title": "Associative and Commutative Property with Decimals",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836473",
"title": "Associative and Commutative Property with Fractions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836474",
"title": "Addition and Multiplication Properties with Real Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836475",
"title": "Fraction and Mixed Number Applications",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,32 +0,0 @@
{
"name": "Real Number Variables and Expressions",
"order": 26,
"challenges": [
{
"id": "59a5801209a6acac5983b436",
"title": "The Real Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836449",
"title": "Order Real Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,58 +0,0 @@
{
"name": "Simplifying Expressions",
"order": 31,
"challenges": [
{
"id": "59a5801209a6acac5983b441",
"title": "Simplify Variable Expressions Involving Addition and Subtraction",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836477",
"title": "Simplify Variable Expressions Involving Multiplication and Division",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836478",
"title": "Simplify Variable Expressions Involving Multiple Operations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836479",
"title": "Simplify Algebraic Expressions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,71 +0,0 @@
{
"name": "The Order of Operations",
"order": 28,
"challenges": [
{
"id": "59a5801209a6acac5983b438",
"title": "Order of Operations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836456",
"title": "PEMDAS in Numerical Expressions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836457",
"title": "Algebra Expressions with Exponents",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836458",
"title": "Algebra Expressions with Fraction Bars",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836459",
"title": "Order of Operations and Variable Substitution",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,45 +0,0 @@
{
"name": "Add and Subtract Rational Expressions",
"order": 27,
"challenges": [
{
"id": "59a5801209a6acac5983b472",
"title": "Addition and Subtraction of Rational Expressions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a051",
"title": "Adding and Subtracting Rational Expressions where One Denominator is the LCD",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a052",
"title": "Applications of Adding and Subtracting Rational Expressions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,97 +0,0 @@
{
"name": "Basic Equations",
"order": 1,
"challenges": [
{
"id": "59a5801209a6acac5983b442",
"title": "Writing Basic Equations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836481",
"title": "Sentences as Single Variable Equations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836482",
"title": "Addition and Subtraction Phrases as Equations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836483",
"title": "Multiplication and Division Phrases as Equations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836484",
"title": "Input-Output Tables",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836485",
"title": "Function Rules for Input-Output Tables",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836486",
"title": "Input-Output Tables for Function Rules",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,45 +0,0 @@
{
"name": "Direct Variations",
"order": 31,
"challenges": [
{
"id": "59a5801209a6acac5983b476",
"title": "Direct Variation",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a065",
"title": "Applications Using Direct Variation",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a066",
"title": "Graphs of Linear Models of Direct Variation",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,97 +0,0 @@
{
"name": "Distance, Rate, and Time",
"order": 6,
"challenges": [
{
"id": "59a5801209a6acac5983b448",
"title": "D = RT",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836514",
"title": "Solving for Elapsed Time Related to Rate",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836515",
"title": "Finding the Total Time Given a Distance between Two Objects",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836516",
"title": "Applications of Finding Time Using Multiple Steps",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836517",
"title": "Finding Total Distance Using Multiple Steps Word Problems",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836518",
"title": "Find the Rate, Given Time and Distance",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836519",
"title": "Solving Length and Distance Problems Involving Time",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,110 +0,0 @@
{
"name": "Exponential Growth and Decay Functions",
"order": 40,
"challenges": [
{
"id": "59a5801209a6acac5983b486",
"title": "Exponential Functions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a223",
"title": "Solving Equations with Exponents",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a224",
"title": "Exponential Growth and Decay",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a225",
"title": "Exponential Growth",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a226",
"title": "Exponential Decay",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a227",
"title": "Geometric Sequences and Exponential Functions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a228",
"title": "Graphs of Exponential Functions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a229",
"title": "Applications of Exponential Functions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,58 +0,0 @@
{
"name": "Exponents and Irrational Numbers",
"order": 33,
"challenges": [
{
"id": "59a5801209a6acac5983b479",
"title": "Negative and Zero Exponents",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a079",
"title": "Fractional Exponents",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a080",
"title": "Zero, Negative, and Fractional Exponents",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a081",
"title": "Operations with Roots and Irrational Numbers",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,97 +0,0 @@
{
"name": "Functions and Function Notation",
"order": 9,
"challenges": [
{
"id": "59a5801209a6acac5983b451",
"title": "Function Notation",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836541",
"title": "Domain and Range of a Function",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836543",
"title": "Applications of Functions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836544",
"title": "Identify Functions and the Vertical Line Test",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836545",
"title": "Even and Odd Functions and Function Symmetry",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836546",
"title": "Operations on Functions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836547",
"title": "Composition of Functions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,123 +0,0 @@
{
"name": "Graphing in the Coordinate Plane",
"order": 8,
"challenges": [
{
"id": "59a5801209a6acac5983b450",
"title": "Graphs in the Coordinate Plane",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836533",
"title": "Points in the Coordinate Plane",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836534",
"title": "Ordered Pairs in Four Quadrants",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836535",
"title": "Coordinate Locations on a Map",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836536",
"title": "Graphs on a Coordinate Plane",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836537",
"title": "Graphs Based on Rules",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836538",
"title": "Rules Based on Graphs",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836539",
"title": "Identify Types of Linear and Nonlinear Graphs",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836540",
"title": "Function Families",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,97 +0,0 @@
{
"name": "Graph Linear Equations",
"order": 10,
"challenges": [
{
"id": "59a5801209a6acac5983b452",
"title": "Graph of a Linear Equation in Two Variables",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836549",
"title": "Graphs of Linear Equations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836550",
"title": "Horizontal and Vertical Line Graphs",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836551",
"title": "Graph Using Intercepts",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836552",
"title": "Problem Solving with Linear Graphs",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836553",
"title": "Graphs of Absolute Value Equations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836554",
"title": "Linear and Absolute Value Function Families",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,58 +0,0 @@
{
"name": "Graphing Polynomials",
"order": 24,
"challenges": [
{
"id": "59a5801209a6acac5983b469",
"title": "Identify Parts of Polynomial Graphs",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a039",
"title": "Graphs of Polynomials Using Transformations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a040",
"title": "Graphs of Polynomials Using Zeros",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a041",
"title": "Graphing Calculator to Analyze Polynomial Functions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,71 +0,0 @@
{
"name": "Graphing Quadratic Functions and Equations",
"order": 38,
"challenges": [
{
"id": "59a5801209a6acac5983b484",
"title": "Graph Quadratic Functions and Equations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a214",
"title": "Graphing with the Vertex Form of Quadratic Functions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a215",
"title": "Graphs of Quadratic Functions in Intercept Form",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a216",
"title": "Roots to Determine a Quadratic Function",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a217",
"title": "Quadratic Functions and Equations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,58 +0,0 @@
{
"name": "Graphing Slope",
"order": 11,
"challenges": [
{
"id": "59a5801209a6acac5983b453",
"title": "Slope",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836556",
"title": "Rates of Change",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836557",
"title": "Slope of a Line Using Two Points",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836558",
"title": "Graph Using Slope-Intercept Form",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,45 +0,0 @@
{
"name": "Introduction to Polynomials",
"order": 18,
"challenges": [
{
"id": "59a5801209a6acac5983b461",
"title": "Monomials, Binomials, and Trinomials",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a015",
"title": "Polynomials in Standard Form",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a016",
"title": "Addition and Subtraction of Polynomials",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,58 +0,0 @@
{
"name": "Introduction to Rational Expressions",
"order": 25,
"challenges": [
{
"id": "59a5801209a6acac5983b470",
"title": "Working with Rational Expressions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a043",
"title": "Simplifying Rational Expressions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a044",
"title": "Excluded Values for Rational Expressions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a045",
"title": "Restricted Domain and Range",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,149 +0,0 @@
{
"name": "Inverse Variation and Rational Functions",
"order": 32,
"challenges": [
{
"id": "59a5801209a6acac5983b478",
"title": "Direct and Inverse Variation",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a068",
"title": "Inverse Variation Models",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a069",
"title": "Estimate Graphs of Rational Functions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a070",
"title": "Horizontal and Vertical Asymptotes",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a071",
"title": "Vertical Asymptotes",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a072",
"title": "Horizontal Asymptotes",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a073",
"title": "Oblique Asymptotes",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a074",
"title": "Determining Asymptotes by Division",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a075",
"title": "Inverse Variation Problems",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a076",
"title": "Joint and Combined Variation",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a077",
"title": "Applications Using Rational Equations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,58 +0,0 @@
{
"name": "Linear Equations in the Real World",
"order": 5,
"challenges": [
{
"id": "59a5801209a6acac5983b447",
"title": "Applications of Linear Equations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836510",
"title": "Problem-Solving Models",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836511",
"title": "Guess and Check, Work Backward",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836512",
"title": "Applications Using Linear Models",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,58 +0,0 @@
{
"name": "Linear, Exponential and Quadratic Models",
"order": 42,
"challenges": [
{
"id": "59a5801209a6acac5983b488",
"title": "Identifying Linear, Exponential, and Quadratic Models",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a239",
"title": "Linear, Quadratic, and Cubic Models",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a240",
"title": "Cubic Models",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a241",
"title": "Applications of Function Models",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,162 +0,0 @@
{
"name": "Linear Inequalities",
"order": 7,
"challenges": [
{
"id": "59a5801209a6acac5983b449",
"title": "Solve One Step Linear Inequalities",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836521",
"title": "Inequalities on a Number Line",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836522",
"title": "Inequalities that Describe Patterns",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836523",
"title": "Inequality Expressions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836524",
"title": "Inequalities with Addition and Subtraction",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836525",
"title": "Inequalities with Multiplication and Division",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836526",
"title": "Multi-Step Inequalities",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836527",
"title": "Checking Solutions to Inequalities",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836528",
"title": "Compound Inequalities",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836529",
"title": "Graph and Solve Absolute Value Inequalities",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836530",
"title": "Intervals and Interval Notation",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836531",
"title": "Applications with Inequalities",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,58 +0,0 @@
{
"name": "Linear Systems",
"order": 15,
"challenges": [
{
"id": "59a5801209a6acac5983b458",
"title": "Consistent and Inconsistent Linear Systems",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a587af21a188128bc4071a",
"title": "Checking a Solution for a Linear System",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a587af21a188128bc4071c",
"title": "Graphs of Linear Systems",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a587af21a188128bc4071d",
"title": "Systems of Linear Equations in Two Variables",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,110 +0,0 @@
{
"name": "Logarithms",
"order": 41,
"challenges": [
{
"id": "59a5801209a6acac5983b487",
"title": "Common and Natural Logarithms",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a231",
"title": "Analysis of Logarithmic Graphs",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a232",
"title": "Logarithm Properties",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a233",
"title": "Change of Base",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a234",
"title": "Product and Quotient Properties of Logarithms",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a235",
"title": "Power Property of Logarithms",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a236",
"title": "Inverse Properties of Logarithms",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a237",
"title": "Logistic Functions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,97 +0,0 @@
{
"name": "Matrix Algebra",
"order": 43,
"challenges": [
{
"id": "59a5801209a6acac5983b489",
"title": "Introduction to Matrices",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a243",
"title": "Adding and Subtracting Matrices",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a244",
"title": "Multiplying Matrices by a Scalar",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a245",
"title": "Matrix Multiplication",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a246",
"title": "Matrix Operations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a247",
"title": "Determinants",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a248",
"title": "Cramer's Rule",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,110 +0,0 @@
{
"name": "Matrix Equations",
"order": 44,
"challenges": [
{
"id": "59a5801209a6acac5983b490",
"title": "Solving Matrix Equations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a250",
"title": "Augmented Matrices",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a251",
"title": "Row Operations and Row Echelon Forms",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a252",
"title": "Writing and Solving a Matrix Equation for a Linear System",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a253",
"title": "Solving Linear Systems Using Matrices and Technology",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a254",
"title": "Inverse Matrices",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a255",
"title": "Applications of Matrices",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a256",
"title": "Partial Fraction Expansions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,123 +0,0 @@
{
"name": "Multi-Step Equations",
"order": 4,
"challenges": [
{
"id": "59a5801209a6acac5983b445",
"title": "Multi-Step Equations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59830501",
"title": "Multi-Step Equations with Like Terms and Distribution",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836502",
"title": "Multi-Step Equations with Fractions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836503",
"title": "Multi-Step Equations with Decimals",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836504",
"title": "Multi-Step Equations with Decimals, Fractions, and Parentheses",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836505",
"title": "Applications of Multi-Step Equations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836506",
"title": "Equations with Variables on Both Sides",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836507",
"title": "Solving for a Variable",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836508",
"title": "Absolute Value Equations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,58 +0,0 @@
{
"name": "Multiplying and Dividing Rational Expressions",
"order": 26,
"challenges": [
{
"id": "59a5801209a6acac5983b471",
"title": "Products and Quotients of Rational Expressions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a047",
"title": "Multiplication of Rational Expressions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a048",
"title": "Division of Rational Expressions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a049",
"title": "Complex Fractions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,84 +0,0 @@
{
"name": "One-Step Equations",
"order": 2,
"challenges": [
{
"id": "59a5801209a6acac5983b443",
"title": "One-Step Equations and Properties of Equality",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836488",
"title": "Single Variable Equations with Addition and Subtraction",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836489",
"title": "Properties of Equality with Fractions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836490",
"title": "Single Variable Equations with Multiplication and Division",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836491",
"title": "Properties of Equality with Decimals",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836492",
"title": "Checking Solutions to Equations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,58 +0,0 @@
{
"name": "Parallel and Perpendicular Lines",
"order": 13,
"challenges": [
{
"id": "59a5801209a6acac5983b456",
"title": "Equations of Parallel and Perpendicular Lines",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836564",
"title": "Equations of Parallel Lines",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836565",
"title": "Equations of Perpendicular Lines",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836566",
"title": "Families of Lines",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,58 +0,0 @@
{
"name": "Percentages",
"order": 28,
"challenges": [
{
"id": "59a5801209a6acac5983b473",
"title": "Percentage Problems",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a054",
"title": "Simple Interest",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a055",
"title": "The Percent Equation",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a056",
"title": "Proportions and Percents",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,71 +0,0 @@
{
"name": "Polynomial Division",
"order": 23,
"challenges": [
{
"id": "59a5801209a6acac5983b468",
"title": "Dividing Polynomials",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a034",
"title": "Long Division of Polynomials",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a035",
"title": "Synthetic Division of Polynomials",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a036",
"title": "Finding Zeros of Polynomials",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a037",
"title": "Zeroes and Intercepts of Polynomials",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,32 +0,0 @@
{
"name": "Polynomial Factoring",
"order": 20,
"challenges": [
{
"id": "59a5801209a6acac5983b463",
"title": "Factoring Polynomials",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a022",
"title": "Monomial Factors of Polynomials",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,58 +0,0 @@
{
"name": "Polynomial Multiplication",
"order": 19,
"challenges": [
{
"id": "59a5801209a6acac5983b462",
"title": "Multiply Polynomials by Monomials",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a018",
"title": "Multiply Binomials by Binomials",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a019",
"title": "Multiply Polynomials by Binomials",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a020",
"title": "Multiply Polynomials by Polynomials",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,58 +0,0 @@
{
"name": "Polynomial Special Products",
"order": 21,
"challenges": [
{
"id": "59a5801209a6acac5983b465",
"title": "Special Products of Polynomials",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a024",
"title": "Factor Difference of Squares",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a025",
"title": "Factor Perfect Square Trinomials",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a026",
"title": "Sum and Difference of Cubes",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,58 +0,0 @@
{
"name": "Properties of Exponents in Variable Expressions",
"order": 39,
"challenges": [
{
"id": "59a5801209a6acac5983b485",
"title": "Exponential Properties Involving Products",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a219",
"title": "Exponential Properties Involving Quotients",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a220",
"title": "Exponential Terms Raised to an Exponent",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a221",
"title": "Exponential Properties in Variable Expressions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,45 +0,0 @@
{
"name": "Proportion and Scale",
"order": 30,
"challenges": [
{
"id": "59a5801209a6acac5983b475",
"title": "Proportions and Scale",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a062",
"title": "Dimensional Analysis",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a063",
"title": "Applications of Scale and Indirect Measurement",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,58 +0,0 @@
{
"name": "Proportions",
"order": 29,
"challenges": [
{
"id": "59a5801209a6acac5983b474",
"title": "Proportions using LCD",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a058",
"title": "Proportions using Cross-Multiplication",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a059",
"title": "Rational Equations and Proportions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a060",
"title": "Applications of Ratios and Proportions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,84 +0,0 @@
{
"name": "Quadratic Expressions",
"order": 22,
"challenges": [
{
"id": "59a5801209a6acac5983b466",
"title": "Factor Quadratics with a Leading Coefficient of 1",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a028",
"title": "Factor Quadratic Expressions with Negative Coefficients",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a029",
"title": "Factor Quadratics",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a030",
"title": "Factor by Grouping",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a031",
"title": "Zero Product Principle",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a032",
"title": "Applications of Factoring",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,123 +0,0 @@
{
"name": "Radical Equations",
"order": 36,
"challenges": [
{
"id": "59a5801209a6acac5983b482",
"title": "Equations with Radicals",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a095",
"title": "Equations with Square Roots",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a096",
"title": "Equations with Radicals on Both Sides",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a097",
"title": "Equations with Variables Under and not Under a Radical",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a098",
"title": "Graphs of Square Root Functions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a099",
"title": "Shifts of Square Root Functions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a200",
"title": "Graphing Cube Root Functions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a201",
"title": "Square and Cube Root Function Families",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a202",
"title": "Applications Using Radicals",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,71 +0,0 @@
{
"name": "Radical Expressions",
"order": 35,
"challenges": [
{
"id": "59a5801209a6acac5983b481",
"title": "Simplify Expressions with Radicals",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a090",
"title": "Multiplication and Division of Radicals",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a091",
"title": "Raising a Product or Quotient to a Power",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a092",
"title": "Addition and Subtraction of Radicals",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a093",
"title": "nth Roots",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,136 +0,0 @@
{
"name": "Solving Linear Systems",
"order": 16,
"challenges": [
{
"id": "59a5801209a6acac5983b459",
"title": "Linear Systems by Elimination",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a587af21a178128bc4071a",
"title": "Solving Systems by Multiplying One Equation",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a587af21a188128bc4071b",
"title": "Solving Systems by Multiplying Both Equations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a001",
"title": "Linear Systems by Elimination Using Multiplication",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a002",
"title": "Systems Using Substitution",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a003",
"title": "Comparing Methods for Solving Linear Systems",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a004",
"title": "Applications of Linear Systems",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a005",
"title": "Mixture Problems",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a006",
"title": "Systems of Linear Equations in Three Variables",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a007",
"title": "Linear Programming",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,136 +0,0 @@
{
"name": "Solving Quadratic Equations",
"order": 37,
"challenges": [
{
"id": "59a5801209a6acac5983b483",
"title": "Quadratic and Exponential Equations and Functions",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a204",
"title": "Use Square Roots to Solve Quadratic Equations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a205",
"title": "Square Root Applications",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a206",
"title": "Completing the Square",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a207",
"title": "Completing the Square when the Leading Coefficient Equals 1",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a208",
"title": "Vertex Form of a Quadratic Equation by Completing the Square",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a209",
"title": "Use Graphs and Technology to Solve Quadratic Equations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a210",
"title": "The Quadratic Formula",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a211",
"title": "The Discriminant",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a212",
"title": "Quadratic Equation Applications",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,84 +0,0 @@
{
"name": "Solving Systems of Linear Inequalities",
"order": 17,
"challenges": [
{
"id": "59a5801209a6acac5983b460",
"title": "Graphs of Systems of Linear Inequalities in Two Variables",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a009",
"title": "Evaluate Solutions for Linear Inequalities in Two Variables",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a010",
"title": "Graphing to Check Solutions to Systems of Linear Inequalities",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a011",
"title": "Systems of Inequalities",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a012",
"title": "Quadratic Inequalities",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a013",
"title": "Polynomial and Rational Inequalities",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,97 +0,0 @@
{
"name": "The Equation of a Line",
"order": 14,
"challenges": [
{
"id": "59a5801209a6acac5983b457",
"title": "Determining the Equation of a Line",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836568",
"title": "Write an Equation Given the Slope and a Point",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836569",
"title": "Write an Equation Given Two Points",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836570",
"title": "Write a Function in Slope-Intercept Form",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836571",
"title": "Fitting Lines to Data",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836572",
"title": "Linear Interpolation and Extrapolation",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836573",
"title": "Applications of Linear Interpolation and Extrapolation",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,58 +0,0 @@
{
"name": "The Forms of a Linear Equation",
"order": 12,
"challenges": [
{
"id": "59a5801209a6acac5983b455",
"title": "Standard Form of Linear Equations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836560",
"title": "Slope-Intercept Form of Linear Equations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836561",
"title": "Point-Slope Form of Linear Equations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836562",
"title": "Forms of Linear Equations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,97 +0,0 @@
{
"name": "The Pythagorean Theorem",
"order": 34,
"challenges": [
{
"id": "59a5801209a6acac5983b480",
"title": "Pythagorean Theorem and its Converse",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a083",
"title": "Pythagorean Triples",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a084",
"title": "Converse of the Pythagorean Theorem",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a085",
"title": "Solving Equations Using the Pythagorean Theorem",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a086",
"title": "Applications Using the Pythagorean Theorem",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a087",
"title": "Distance Formula",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a088",
"title": "Midpoint Formula",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,97 +0,0 @@
{
"name": "Two-Step Equations",
"order": 3,
"challenges": [
{
"id": "59a5801209a6acac5983b444",
"title": "Two-Step Equations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836494",
"title": "Two-Step Equations from Verbal Models",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836495",
"title": "Two-Step Equations with Addition and Multiplication",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836496",
"title": "Two-Step Equations with Addition and Division",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836497",
"title": "Two-Step Equations with Subtraction and Multiplication",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836498",
"title": "Two-Step Equations with Subtraction and Division",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac59836499",
"title": "Applications of Two-Step Equations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,71 +0,0 @@
{
"name": "Angle Pairs",
"order": 4,
"challenges": [
{
"id": "59a5801209a6acac5983b495",
"title": "Angle Properties and Theorems",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a272",
"title": "Complementary Angles",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a273",
"title": "Supplementary Angles",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a274",
"title": "Missing Measures of Complementary and Supplementary Angles",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a275",
"title": "Vertical Angles",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,84 +0,0 @@
{
"name": "Angles",
"order": 3,
"challenges": [
{
"id": "59a5801209a6acac5983b493",
"title": "Introduction to Angles",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a266",
"title": "Identification of Angles by Vertex and Ray",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a267",
"title": "Measuring Angles",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a268",
"title": "Classifying Angles",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a269",
"title": "Congruent Angles and Angle Bisectors",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a270",
"title": "Constructions and Bisectors",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,71 +0,0 @@
{
"name": "Arcs and Chords",
"order": 25,
"challenges": [
{
"id": "59a5801209a6acac5983b515",
"title": "Arcs in Circles",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a394",
"title": "Area of Sectors and Segments",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a395",
"title": "Arc Length",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a396",
"title": "Chords and Central Angle Arcs",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a397",
"title": "Segments from Chords",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,45 +0,0 @@
{
"name": "Area of a Circle",
"order": 24,
"challenges": [
{
"id": "59a5801209a6acac5983b514",
"title": "Circle Area",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a391",
"title": "Areas of Combined Figures Involving Semicircles",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a392",
"title": "Radius or Diameter of a Circle Given Area",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,45 +0,0 @@
{
"name": "Basic Polygons",
"order": 5,
"challenges": [
{
"id": "59a5801209a6acac5983b497",
"title": "Classify Polygons",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a277",
"title": "Vertices and Sides",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a278",
"title": "Polygon Classification in the Coordinate Plane",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,84 +0,0 @@
{
"name": "Basic Squares and Rectangles",
"order": 19,
"challenges": [
{
"id": "59a5801209a6acac5983b509",
"title": "Squares",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a358",
"title": "Rectangles",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a359",
"title": "Square and Rectangle Area and Perimeter",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a360",
"title": "Perimeter of Squares and Rectangles",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a361",
"title": "Area of Squares and Rectangles",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a362",
"title": "Unknown Dimensions of Squares and Rectangles",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,58 +0,0 @@
{
"name": "Circles and Angles",
"order": 26,
"challenges": [
{
"id": "59a5801209a6acac5983b516",
"title": "Inscribed Angles in Circles",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a399",
"title": "Inscribed Quadrilaterals in Circles",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a400",
"title": "Angles On and Inside a Circle",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a401",
"title": "Angles Outside a Circle",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,71 +0,0 @@
{
"name": "Classifying Triangles",
"order": 12,
"challenges": [
{
"id": "59a5801209a6acac5983b503",
"title": "Classify Triangles",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a311",
"title": "Classify Triangles by Angle Measurement",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a312",
"title": "Classify Triangles by Side Measurement",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a313",
"title": "Isosceles Triangles",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a314",
"title": "Equilateral Triangles",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,45 +0,0 @@
{
"name": "Composition of Transformations",
"order": 37,
"challenges": [
{
"id": "59a5801209a6acac5983b526",
"title": "Composite Transformations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a438",
"title": "Notation for Composite Transformations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a439",
"title": "Tessellations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,45 +0,0 @@
{
"name": "Cones",
"order": 43,
"challenges": [
{
"id": "59a5801209a6acac5983b532",
"title": "Surface Area and Volume of Cones",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a461",
"title": "Surface Area of Cones",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a462",
"title": "Volume of Cones",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,45 +0,0 @@
{
"name": "Cross Sections and Basic Solids of Revolution",
"order": 39,
"challenges": [
{
"id": "59a5801209a6acac5983b528",
"title": "Composite Solids",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a446",
"title": "Area and Volume of Similar Solids",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a447",
"title": "Surface Area and Volume Applications",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,58 +0,0 @@
{
"name": "Cylinders",
"order": 42,
"challenges": [
{
"id": "59a5801209a6acac5983b531",
"title": "Surface Area and Volume of Cylinders",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a457",
"title": "Surface Area of Cylinders",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a458",
"title": "Volume of Cylinders",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a459",
"title": "Heights of Cylinders Given Surface Area or Volume",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,58 +0,0 @@
{
"name": "Dilation",
"order": 31,
"challenges": [
{
"id": "59a5801209a6acac5983b521",
"title": "Dilation of a Shape",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a421",
"title": "Dilation in the Coordinate Plane",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a422",
"title": "Mapping Dilations",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a423",
"title": "Self-Similarity and Fractals",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,71 +0,0 @@
{
"name": "Geometry of Circles",
"order": 23,
"challenges": [
{
"id": "59a5801209a6acac5983b513",
"title": "Semicircles and Quarter Circles",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a386",
"title": "Identify Circle Components",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a387",
"title": "Use Diameter, Radius and Pi",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a388",
"title": "Circumference",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a389",
"title": "Diameter or Radius of a Circle Given Circumference",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,97 +0,0 @@
{
"name": "Geometry Proofs",
"order": 6,
"challenges": [
{
"id": "59a5801209a6acac5983b496",
"title": "Basic Visual Patterns",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a280",
"title": "Identify Basic Pattern Type",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a281",
"title": "Number Patterns",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a282",
"title": "Reasoning Types",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a283",
"title": "Inductive Reasoning from Patterns",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a284",
"title": "Conjectures and Counterexamples",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a285",
"title": "Deductive Reasoning",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,71 +0,0 @@
{
"name": "Introduction to Solid Figures",
"order": 38,
"challenges": [
{
"id": "59a5801209a6acac5983b527",
"title": "Polyhedrons",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a441",
"title": "Faces Edges and Vertices of Solids",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a442",
"title": "Cross-Sections and Nets",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a443",
"title": "Surface Area",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a444",
"title": "Volume",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,19 +0,0 @@
{
"name": "Introduction to Transformation Types",
"order": 32,
"challenges": [
{
"id": "59a5801209a6acac5983b725",
"title": "Identify Transformation Types",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,58 +0,0 @@
{
"name": "Line Segments",
"order": 2,
"challenges": [
{
"id": "59a5801209a6acac5983b492",
"title": "Definition of Line Segment",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a262",
"title": "Midpoints and Segment Bisectors",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a263",
"title": "Midpoint Formula",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a264",
"title": "Points that Partition Line Segments",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,45 +0,0 @@
{
"name": "Lines in the Coordinate Plane",
"order": 11,
"challenges": [
{
"id": "59a5801209a6acac5983b502",
"title": "Parallel Lines in the Coordinate Plane",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a308",
"title": "Perpendicular Lines in the Coordinate Plane",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a309",
"title": "Line Construction",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,32 +0,0 @@
{
"name": "Lines",
"order": 9,
"challenges": [
{
"id": "59a5801209a6acac5983b500",
"title": "Line Types",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a299",
"title": "Parallel and Skew Lines",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,71 +0,0 @@
{
"name": "Logic Statements",
"order": 7,
"challenges": [
{
"id": "59a5801209a6acac5983b498",
"title": "Truth Tables",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a287",
"title": "And and Or Statements",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a288",
"title": "Negative Statements",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a289",
"title": "If Then Statements",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a290",
"title": "Converse, Inverse, and Contrapositive Statements",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,45 +0,0 @@
{
"name": "Polygon Angle Measures",
"order": 22,
"challenges": [
{
"id": "59a5801209a6acac5983b512",
"title": "Determine Missing Angle Measures",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a383",
"title": "Interior Angles in Convex Polygons",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a384",
"title": "Exterior Angles in Convex Polygons",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

View File

@ -1,84 +0,0 @@
{
"name": "Polygons",
"order": 21,
"challenges": [
{
"id": "59a5801209a6acac5983b511",
"title": "Regular and Irregular Polygons",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a377",
"title": "Area of Regular and Irregular Polygons",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a378",
"title": "Area and Perimeter of Similar Polygons",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a379",
"title": "Construct Regular Polygons",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a380",
"title": "Congruent Polygons",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
},
{
"id": "59a5801209a6acac5983a381",
"title": "Corresponding Parts of Congruent Figures",
"description": [
""
],
"challengeSeed": [
""
],
"tests": [
""
]
}
]
}

Some files were not shown because too many files have changed in this diff Show More