From 76a8fb4c8a42396dd7ebe18a82d7de9d6c3f39ed Mon Sep 17 00:00:00 2001 From: TheFereday <34562852+TheFereday@users.noreply.github.com> Date: Mon, 3 Dec 2018 02:52:49 -0700 Subject: [PATCH] fix: added consistency to capitalization and puctuation (#29201) --- .../system-design-and-concept-questions.json | 60 +++++++++---------- 1 file changed, 30 insertions(+), 30 deletions(-) diff --git a/curriculum/formattingConversion/system-design-and-concept-questions.json b/curriculum/formattingConversion/system-design-and-concept-questions.json index 7b7b32a31f..d8164083b9 100644 --- a/curriculum/formattingConversion/system-design-and-concept-questions.json +++ b/curriculum/formattingConversion/system-design-and-concept-questions.json @@ -113,8 +113,8 @@ "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", + "subtitle": "Data structure stack", + "question": "A stack data structure obeys the principles of Last in First Out (LIFO)? True or false.", "choices": [ "
true
", "
false
" @@ -124,7 +124,7 @@ }, { "subtitle": "Sorting algorithm", - "question": "Which of the following is not a common sorting algorithm ?", + "question": "Which of the following is not a common sorting algorithm?", "choices": [ "
Bubble Sort
", "
QuickSort
", @@ -148,7 +148,7 @@ }, { "subtitle": "Numeric types", - "question": "Select the correct Numeric types to their correct size.", + "question": "Match the correct numeric types to their correct size.", "choices": [ "
Byte - 8 bits, long - 64 bits,int - 32 bits, short - 16 bits.
", "
Byte - 8 bits, long - 32 bits ,int - 64 bits, short - 16 bits.
", @@ -172,7 +172,7 @@ }, { "subtitle": "XPath navigation", - "question": "The XPath syntax is used to traverse data stored in which format", + "question": "The XPath syntax is used to traverse data stored in which format?", "choices": [ "
XML
", "
JSON
", @@ -231,8 +231,8 @@ "explanation": "An array in most languages is considered an object where as the other three are primitive data types." }, { - "subtitle": "Programming languages paradigms", - "question": "Object-oriented and Functional are said to be programming language paradigms which of the following isn't a language paradigm.", + "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": [ "
Procedural
", "
Imperative
", @@ -240,11 +240,11 @@ "
Instance
" ], "answer": 3, - "explanation": "Instance is not a recognised programming paradigm." + "explanation": "Instance is not a recognized programming paradigm." }, { "subtitle": "UML", - "question": "UML or Universal Modeling Language is a language created for?", + "question": "UML or Universal Modeling Language is a language created for ?", "choices": [ "
Creating database schemas.
", "
Software visualization using diagrams.
", @@ -263,8 +263,8 @@ "title": "CSS questions part 1", "description": [ { - "subtitle": "Elements properties", - "question": "Which properties do inline elements not possess under normal document flow.", + "subtitle": "Element properties", + "question": "Which properties do inline elements not possess under normal document flow?", "choices": [ "
overflow, left or right margins
", "
border-radius, z-index
", @@ -300,7 +300,7 @@ }, { "subtitle": "Preprocessor CSS", - "question": "Which is not considered a Css preprocessor?", + "question": "Which is not considered a CSS preprocessor?", "choices": [ "
Less
", "
Sass
", @@ -312,7 +312,7 @@ }, { "subtitle": "CSS Box Model", - "question": "Which is not a property of the Css 'Box Model'?", + "question": "Which is not a property of the CSS 'Box Model'?", "choices": [ "
Border
", "
Padding
", @@ -324,7 +324,7 @@ }, { "subtitle": "CSS positioning", - "question": "Absolute positioning in Css removes an element from the normal document flow true/false?", + "question": "Absolute positioning in CSS removes an element from the normal document flow. True or false?", "choices": [ "
true
", "
false
" @@ -334,7 +334,7 @@ }, { "subtitle": "CSS selector", - "question": "With this Css Selector it is possible to select every element in a document.", + "question": "With this CSS Selector it is possible to select every element in a document.", "choices": [ "
Body
", "
Universal
", @@ -346,7 +346,7 @@ }, { "subtitle": "Font size in CSS", - "question": "Which is not a valid Css font size?", + "question": "Which is not a valid CSS font size?", "choices": [ "
em
", "
%
", @@ -358,7 +358,7 @@ }, { "subtitle": "CSS clear property", - "question": "The Css 'clear' property fulfills which task?", + "question": "The CSS 'clear' property fulfills which task?", "choices": [ "
Allows transparency of an element.
", "
Prevents prior properties of the selector from taking effect.
", @@ -370,7 +370,7 @@ }, { "subtitle": "CSS sudo-class", - "question": "An example of a sudo-class of a ul element written in Css would be defined?", + "question": "An example of a sudo-class of a ul element written in CSS would be defined how?", "choices": [ "
ul:first-child
", "
ul..first-child
", @@ -390,7 +390,7 @@ "description": [ { "subtitle": "CSS selector", - "question": "An entire Css selector and declaration block whithin a Css document eg:
.container div p {
position: relative;
width: 300px;
margin: auto;
color: #ffffff;
}

is referred to as?", + "question": "An entire CSS selector and declaration block whithin a CSS document eg:
.container div p {
position: relative;
width: 300px;
margin: auto;
color: #ffffff;
}

is referred to as?", "choices": [ "
Base-Block
", "
Selection Properties
", @@ -402,7 +402,7 @@ }, { "subtitle": "CSS Browser compatibility", - "question": "Which is not a valid Css prefix to ensure browser compatibility?", + "question": "Which is not a valid CSS prefix to ensure browser compatibility?", "choices": [ "
-webkit-
", "
-win-
", @@ -414,7 +414,7 @@ }, { "subtitle": "CSS 'text-transform' property", - "question": "The Css property 'text-transform' is mainly used for?", + "question": "The CSS property 'text-transform' is mainly used for?", "choices": [ "
Alteration of text letter case.
", "
Changing the alignment of text.
", @@ -437,8 +437,8 @@ "explanation": "1em is equivalent to the base or default font size therefore (12 * 1.5 = 18)." }, { - "subtitle": "CCSS font weight", - "question": "In Css 'font-weight: bold;' is the same as?", + "subtitle": "CSS font weight", + "question": "In CSS 'font-weight: bold;' is the same as?", "choices": [ "
font-weight: 400;
", "
font-weight: 900
", @@ -462,7 +462,7 @@ }, { "subtitle": "CSS match selector", - "question": "What would the following Css selector match?
section + p", + "question": "What would the following CSS selector match?
section + p", "choices": [ "
All <section> and <p> tags.
", "
All <p> tags within a <section> tag.
", @@ -474,7 +474,7 @@ }, { "subtitle": "How to incorporte CSS into web document", - "question": "How many different ways is it possible to incorporate Css into a web document?", + "question": "How many different ways is it possible to incorporate CSS into a web document?", "choices": [ "
1
", "
2
", @@ -482,11 +482,11 @@ "
4
" ], "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." + "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 [role=contentinfo] {...} target in Css?", + "subtitle": "Using target in CSS", + "question": "What would [role=contentinfo] {...} target in CSS?", "choices": [ "
Any element with the role attribute of contentinfo.
", "
Any element within a <span> tag.
", @@ -498,7 +498,7 @@ }, { "subtitle": "CSS positioning", - "question": "Which is not a value for 'position' in css?", + "question": "Which is not a value for 'position' in CSS?", "choices": [ "
Absolute
", "
Static
", @@ -970,4 +970,4 @@ "challengeType": 8 } ] -} \ No newline at end of file +}