fix: review and clean up a few things in this section
This commit is contained in:
@ -16,13 +16,13 @@ videoId: gz_IfIsZQtc
|
||||
|
||||
```yml
|
||||
question:
|
||||
text: 'Which code is indented correctly to print "Yes" if 0 = x and y = 10?'
|
||||
text: 'Which code is indented correctly to print "Yes" if x = 0 and y = 10?'
|
||||
answers:
|
||||
- '<pre>if 0 = x:<br>if y = 10:<br>print("Yes.")</pre>'
|
||||
- '<pre>if 0 = x:<br> if y = 10:<br> print("Yes.")</pre>'
|
||||
- '<pre>if 0 = x:<br>if y = 10:<br> print("Yes.")</pre>'
|
||||
- '<pre>if 0 = x:<br> if y = 10:<br> print("Yes.")</pre>'
|
||||
solution: 3
|
||||
- '<pre>if 0 == x:<br>if y == 10:<br>print("Yes")</pre>'
|
||||
- '<pre>if 0 == x:<br> if y == 10:<br> print("Yes")</pre>'
|
||||
- '<pre>if 0 == x:<br>if y == 10:<br> print("Yes")</pre>'
|
||||
- '<pre>if 0 == x:<br> if y == 10:<br> print("Yes")</pre>'
|
||||
solution: 4
|
||||
```
|
||||
|
||||
</section>
|
||||
|
@ -21,9 +21,9 @@ question:
|
||||
x = x + 1<br>
|
||||
print(x)</pre>'
|
||||
answers:
|
||||
- 'College students.'
|
||||
- 'People who want to become software developers.'
|
||||
- 'Everyone.'
|
||||
- 'x'
|
||||
- 'x + 1'
|
||||
- '44'
|
||||
solution: 3
|
||||
```
|
||||
|
||||
|
@ -8,13 +8,6 @@ videoId: H6qtjRTfSog
|
||||
|
||||
## Description
|
||||
<section id='description'>
|
||||
In this challenge you must analyze demographic data using Pandas. You are given a dataset of demographic data that was extracted from the 1994 Census database.
|
||||
|
||||
You can access <a href='https://repl.it/@freeCodeCamp/fcc-demographic-data-analyzer' target='_blank'>the full project description and starter code on repl.it</a>.
|
||||
|
||||
After going to that link, fork the project. Once you complete the project based on the instructions in 'README.md', submit your project link below.
|
||||
|
||||
We are still developing the interactive instructional part of the data analysis with Python curriculum. For now, you will have to use other resources to learn how to pass this challenge.
|
||||
</section>
|
||||
|
||||
## Instructions
|
||||
@ -27,12 +20,12 @@ We are still developing the interactive instructional part of the data analysis
|
||||
|
||||
```yml
|
||||
question:
|
||||
text: 'Who should learn to program?'
|
||||
text: 'Where are your programs stored when they are running?'
|
||||
answers:
|
||||
- 'College students.'
|
||||
- 'People who want to become software developers.'
|
||||
- 'Everyone.'
|
||||
solution: 3
|
||||
- 'Hard Drive.'
|
||||
- 'Memory.'
|
||||
- 'Central Processing Unit.'
|
||||
solution: 2
|
||||
|
||||
```
|
||||
|
||||
|
@ -8,13 +8,6 @@ videoId: 0QeGbZNS_bY
|
||||
|
||||
## Description
|
||||
<section id='description'>
|
||||
In this challenge you must analyze demographic data using Pandas. You are given a dataset of demographic data that was extracted from the 1994 Census database.
|
||||
|
||||
You can access <a href='https://repl.it/@freeCodeCamp/fcc-demographic-data-analyzer' target='_blank'>the full project description and starter code on repl.it</a>.
|
||||
|
||||
After going to that link, fork the project. Once you complete the project based on the instructions in 'README.md', submit your project link below.
|
||||
|
||||
We are still developing the interactive instructional part of the data analysis with Python curriculum. For now, you will have to use other resources to learn how to pass this challenge.
|
||||
</section>
|
||||
|
||||
## Instructions
|
||||
|
@ -16,7 +16,7 @@ videoId: MQ5z4bdF92U
|
||||
|
||||
```yml
|
||||
question:
|
||||
text: 'What SQL command would you use to retrieve alL users that have the email address quincy@freecodecamp.org?'
|
||||
text: 'What SQL command would you use to retrieve all users that have the email address quincy@freecodecamp.org?'
|
||||
answers:
|
||||
- 'SELECT Users WHERE email="quincy@freecodecamp.org"'
|
||||
- 'SELECT Users WHERE email IS "quincy@freecodecamp.org"'
|
||||
|
Reference in New Issue
Block a user