Skip to content

Commit

Permalink
chore: adding cs question on lossless compression (#135)
Browse files Browse the repository at this point in the history
* Update general-cs-quiz.ts

For issue #29

* Update general-cs-quiz.ts
  • Loading branch information
Sarang-Goutam authored Oct 2, 2022
1 parent 56d1633 commit cec40bb
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/data/general-cs-quiz.ts
Original file line number Diff line number Diff line change
Expand Up @@ -725,6 +725,15 @@ const generalCSQuiz = [
Explanation: "SVG stands for Scalable Vector Graphics.",
Link: "https://www.freecodecamp.org/news/use-svg-images-in-css-html/",
},
{
Question: "What is Lossless compression?",
Answer: "a compression algorithm that allows the original data to be perfectly reconstructed from the compressed data.",
Distractor1: "a sorting algorithm",
Distractor2: "a reverse algorithm",
Distractor3: "an algorithm that converts wav files to mp3 files",
Explanation: "Lossless compression is a compression algorithm that allows the original data to be perfectly reconstructed from the compressed data.",
Link: "https://www.freecodecamp.org/news/image-file-types-picture-format-extensions-jpeg-gif-png-svg-tiff/",
},
];

export default generalCSQuiz;

0 comments on commit cec40bb

Please sign in to comment.