mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-05-26 13:01:43 -04:00
feat(curriculum): EN-A2 quiz for block 13 (#65678)
This commit is contained in:
@@ -8,7 +8,11 @@ lang: en-US
|
||||
|
||||
# --description--
|
||||
|
||||
To pass the quiz, you must correctly answer at least 9 of the 10 questions below.
|
||||
This quiz checks your understanding of basic programming concepts.
|
||||
|
||||
To pass the quiz, you must correctly answer at least 18 of the 20 questions below.
|
||||
|
||||
Read each question and choose the correct answer. There's only one correct answer for each question.
|
||||
|
||||
# --quizzes--
|
||||
|
||||
@@ -18,219 +22,438 @@ To pass the quiz, you must correctly answer at least 9 of the 10 questions below
|
||||
|
||||
#### --text--
|
||||
|
||||
Placeholder question
|
||||
Which sentence correctly talks about an action that started in the past and is still happening now?
|
||||
|
||||
#### --distractors--
|
||||
|
||||
Placeholder distractor 1
|
||||
`I worked on this code yesterday.`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 2
|
||||
`I am working on this code right now.`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 3
|
||||
`I work on this code every day.`
|
||||
|
||||
#### --answer--
|
||||
|
||||
Placeholder answer
|
||||
`I have been working on this code for hours.`
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
Placeholder question
|
||||
Which sentence correctly states a specific point in time?
|
||||
|
||||
#### --distractors--
|
||||
|
||||
Placeholder distractor 1
|
||||
`I've been learning Python for two years.`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 2
|
||||
`I've been learning Python for a long time.`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 3
|
||||
`I've been learning Python many times.`
|
||||
|
||||
#### --answer--
|
||||
|
||||
Placeholder answer
|
||||
`I've been learning Python since 2022.`
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
Placeholder question
|
||||
What is a `variable`?
|
||||
|
||||
#### --distractors--
|
||||
|
||||
Placeholder distractor 1
|
||||
A mistake in the program
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 2
|
||||
A rule the program follows
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 3
|
||||
A command the computer runs
|
||||
|
||||
#### --answer--
|
||||
|
||||
Placeholder answer
|
||||
A place to store information
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
Placeholder question
|
||||
What does `to declare a variable` mean?
|
||||
|
||||
#### --distractors--
|
||||
|
||||
Placeholder distractor 1
|
||||
To delete stored information
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 2
|
||||
To change data during the program
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 3
|
||||
To run a variable many times
|
||||
|
||||
#### --answer--
|
||||
|
||||
Placeholder answer
|
||||
To create it and give it a value
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
Placeholder question
|
||||
Which of the following is NOT correct?
|
||||
|
||||
#### --distractors--
|
||||
|
||||
Placeholder distractor 1
|
||||
`Many users`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 2
|
||||
`Several files`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 3
|
||||
`A few errors`
|
||||
|
||||
#### --answer--
|
||||
|
||||
Placeholder answer
|
||||
`Much variables`
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
Placeholder question
|
||||
Which sentence using `a lot` is incorrect?
|
||||
|
||||
#### --distractors--
|
||||
|
||||
Placeholder distractor 1
|
||||
`There are a lot of users online.`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 2
|
||||
`I have a lot of tasks today.`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 3
|
||||
`We fixed a lot of bugs.`
|
||||
|
||||
#### --answer--
|
||||
|
||||
Placeholder answer
|
||||
`There are a lot of error.`
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
Placeholder question
|
||||
What are integers, floats, strings, and booleans?
|
||||
|
||||
#### --distractors--
|
||||
|
||||
Placeholder distractor 1
|
||||
`Programming tools`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 2
|
||||
`Code problems`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 3
|
||||
`Software bugs`
|
||||
|
||||
#### --answer--
|
||||
|
||||
Placeholder answer
|
||||
`Data types`
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
Placeholder question
|
||||
Choose the grammatically correct sentence:
|
||||
|
||||
#### --distractors--
|
||||
|
||||
Placeholder distractor 1
|
||||
`There is many errors in the code.`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 2
|
||||
`There are much work to do.`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 3
|
||||
`There is several bugs found.`
|
||||
|
||||
#### --answer--
|
||||
|
||||
Placeholder answer
|
||||
`There are many issues to fix.`
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
Placeholder question
|
||||
What do you call a command that runs only if a condition is true?
|
||||
|
||||
#### --distractors--
|
||||
|
||||
Placeholder distractor 1
|
||||
`A variable`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 2
|
||||
`A function`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 3
|
||||
`A loop`
|
||||
|
||||
#### --answer--
|
||||
|
||||
Placeholder answer
|
||||
|
||||
`A conditional statement`
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
Placeholder question
|
||||
What is a polite way to ask for help with a specific task?
|
||||
|
||||
#### --distractors--
|
||||
|
||||
Placeholder distractor 1
|
||||
`What's the problem?`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 2
|
||||
`How's everything?`
|
||||
|
||||
---
|
||||
|
||||
Placeholder distractor 3
|
||||
`What are you doing?`
|
||||
|
||||
#### --answer--
|
||||
|
||||
Placeholder answer
|
||||
`Can you help me with this?`
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
How would you express difficulty with a specific issue?
|
||||
|
||||
#### --distractors--
|
||||
|
||||
`I'm having trouble on this issue.`
|
||||
|
||||
---
|
||||
|
||||
`I'm having trouble for this issue.`
|
||||
|
||||
---
|
||||
|
||||
`I'm having trouble of this issue.`
|
||||
|
||||
#### --answer--
|
||||
|
||||
`I'm having trouble with this issue.`
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
What is a `bug` in code?
|
||||
|
||||
#### --distractors--
|
||||
|
||||
A new feature in a program
|
||||
|
||||
---
|
||||
|
||||
A tool for writing code
|
||||
|
||||
---
|
||||
|
||||
A design choice
|
||||
|
||||
#### --answer--
|
||||
|
||||
A mistake that causes problems
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
Which of the following means to find and fix errors in a program?
|
||||
|
||||
#### --distractors--
|
||||
|
||||
`To perform`
|
||||
|
||||
---
|
||||
|
||||
`To involve`
|
||||
|
||||
---
|
||||
|
||||
`To figure out`
|
||||
|
||||
#### --answer--
|
||||
|
||||
`To debug`
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
What is an example of an `issue`?
|
||||
|
||||
#### --distractors--
|
||||
|
||||
A new app design
|
||||
|
||||
---
|
||||
|
||||
A finished task
|
||||
|
||||
---
|
||||
|
||||
A saved file
|
||||
|
||||
#### --answer--
|
||||
|
||||
A problem that needs fixing
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
What does this sentence suggest: `He might be able to help you`?
|
||||
|
||||
#### --distractors--
|
||||
|
||||
He will help for sure.
|
||||
|
||||
---
|
||||
|
||||
He cannot help at all.
|
||||
|
||||
---
|
||||
|
||||
He must help now.
|
||||
|
||||
#### --answer--
|
||||
|
||||
There is a possible chance.
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
Which definition is incorrect?
|
||||
|
||||
#### --distractors--
|
||||
|
||||
A `function` performs a task.
|
||||
|
||||
---
|
||||
|
||||
A `loop` repeats instructions.
|
||||
|
||||
---
|
||||
|
||||
An `extension` adds features.
|
||||
|
||||
#### --answer--
|
||||
|
||||
`OOP` is a browser add-on.
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
What does `IDE` stand for?
|
||||
|
||||
#### --distractors--
|
||||
|
||||
`Internet Development Engine`
|
||||
|
||||
---
|
||||
|
||||
`Internal Design Extension`
|
||||
|
||||
---
|
||||
|
||||
`Interactive Data Editor`
|
||||
|
||||
#### --answer--
|
||||
|
||||
`Integrated Development Environment`
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
Which pair of question and answer is incorrect?
|
||||
|
||||
#### --distractors--
|
||||
|
||||
`How much time do we have?` → `Not much.`
|
||||
|
||||
---
|
||||
|
||||
`How many bugs are there?` → `Not many.`
|
||||
|
||||
---
|
||||
|
||||
`How much work is left?` → `Not much.`
|
||||
|
||||
#### --answer--
|
||||
|
||||
`How many time do we have?` → `Not many.`
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
You want to mention the topic of a book, so you say: `This book is BLANK time management and productivity`.
|
||||
|
||||
#### --distractors--
|
||||
|
||||
`for`
|
||||
|
||||
---
|
||||
|
||||
`with`
|
||||
|
||||
---
|
||||
|
||||
`at`
|
||||
|
||||
#### --answer--
|
||||
|
||||
`on`
|
||||
|
||||
### --question--
|
||||
|
||||
#### --text--
|
||||
|
||||
When would you say `I'll keep that in mind`?
|
||||
|
||||
#### --distractors--
|
||||
|
||||
When you forgot the advice.
|
||||
|
||||
---
|
||||
|
||||
When you strongly disagree.
|
||||
|
||||
---
|
||||
|
||||
When the task is finished.
|
||||
|
||||
#### --answer--
|
||||
|
||||
When you plan to remember advice.
|
||||
|
||||
Reference in New Issue
Block a user