Skip to content
This repository was archived by the owner on Feb 12, 2025. It is now read-only.

Commit 0e89a6b

Browse files
a2937jdwilkin4
andauthored
Add a SQL question regarding Microsoft Access (#75)
* Add a SQL question This question was inspired by my favorite professor when I was at college. I'm sure I'm doing them proud for including this. * Use prettier on all the files * Fix the ignore file name * chore: removing lint-style rule Co-authored-by: Jessica Wilkins <[email protected]>
1 parent f5d54fa commit 0e89a6b

File tree

4 files changed

+19
-2
lines changed

4 files changed

+19
-2
lines changed

.eslintrc.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
2+
"root": true,
23
"env": {
34
"browser": true,
45
"es2021": true

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ jobs:
3333
echo npm version $(npm -v)
3434
npm ci
3535
npm run lint
36-
npm run lint-style
36+

.prettierignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Ignore artifacts:
2+
build
3+
coverage
4+

src/data/full-quiz.ts

+13-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ const fullQuiz = [
55
Distractor1: "HyperText Markup Language",
66
Distractor2: "Cascading Style Sheets",
77
Distractor3: "JavaScript",
8-
Explanation: "Computers are simplistic and understand binary. Programming languages such as Python and Java were created to help humans write instructions for computers and interpret it.",
8+
Explanation:
9+
"Computers are simplistic and understand binary. Programming languages such as Python and Java were created to help humans write instructions for computers and interpret it.",
910
Link: "https://youtu.be/F0WoVEr0-44?t=336",
1011
},
1112
{
@@ -7032,5 +7033,16 @@ const fullQuiz = [
70327033
"The triple equals operator (===) will check for strict equality because it checks for the same data type and value.",
70337034
Link: "https://www.freecodecamp.org/news/javascript-promises-explained/",
70347035
},
7036+
{
7037+
Question:
7038+
"Which of the following relational database management systems (RDBMS) should never be used to store data in a production app?",
7039+
Answer: "Microsoft Access",
7040+
Distractor1: "Microsoft SQL Server",
7041+
Distractor2: "MongoDB",
7042+
Distractor3: "PostgreSQL",
7043+
Explanation:
7044+
"Microsoft Access does not offer as much security, availability, and stability as SQL Server.",
7045+
Link: "https://en.wikipedia.org/wiki/Microsoft_Access",
7046+
},
70357047
];
70367048
export default fullQuiz;

0 commit comments

Comments
 (0)