Skip to content

Commit 8f47845

Browse files
authored
fix(curriculum): update testing quiz questions (freeCodeCamp#59769)
1 parent 33f0842 commit 8f47845

1 file changed

Lines changed: 39 additions & 39 deletions

File tree

curriculum/challenges/english/25-front-end-development/quiz-testing/66f1aeffc5774ac692112a7e.md

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Security testing.
5555

5656
#### --answer--
5757

58-
Functional testing.
58+
Acceptance testing.
5959

6060
### --question--
6161

@@ -105,7 +105,7 @@ Security testing.
105105

106106
#### --text--
107107

108-
What type of testing ensures that a system can be used effectively by people with disabilities?
108+
What type of testing involves providing two versions of software to users and analyzing which performs better?
109109

110110
#### --distractors--
111111

@@ -117,17 +117,17 @@ Performance testing.
117117

118118
---
119119

120-
Functional testing.
120+
Comparative testing.
121121

122122
#### --answer--
123123

124-
Accessibility testing.
124+
A/B testing.
125125

126126
### --question--
127127

128128
#### --text--
129129

130-
Which popular JavaScript testing framework is often used for unit testing React applications?
130+
Which popular JavaScript testing framework is often used for unit testing?
131131

132132
#### --distractors--
133133

@@ -149,45 +149,45 @@ Jest
149149

150150
#### --text--
151151

152-
What term describes the practice of testing an application across different web browsers to ensure consistent functionality?
152+
What term describes replacing some components used during testing with objects that return pre-defined responses?
153153

154154
#### --distractors--
155155

156-
Multi-platform testing.
156+
Mocking
157157

158158
---
159159

160-
Compatibility testing.
160+
Faking
161161

162162
---
163163

164-
Integration testing.
164+
Pre-defining
165165

166166
#### --answer--
167167

168-
Cross-browser testing.
168+
Stubbing
169169

170170
### --question--
171171

172172
#### --text--
173173

174-
Which CI/CD practice involves automatically running tests whenever code changes are pushed to a repository?
174+
Which stage comes first in the Software Development Lifecycle?
175175

176176
#### --distractors--
177177

178-
Manual testing.
178+
Design stage.
179179

180180
---
181181

182-
Regression testing.
182+
Implementation stage.
183183

184184
---
185185

186-
Load testing.
186+
Testing stage.
187187

188188
#### --answer--
189189

190-
Continuous testing.
190+
Planning stage.
191191

192192
### --question--
193193

@@ -237,23 +237,23 @@ Usability testing.
237237

238238
#### --text--
239239

240-
What does CI stand for in the context of software development practices?
240+
Which one is an assertion library?
241241

242242
#### --distractors--
243243

244-
Code Integration.
244+
Mocha
245245

246246
---
247247

248-
Continuous Implementation.
248+
Selenium
249249

250250
---
251251

252-
Centralized Integration.
252+
GrowthBook
253253

254254
#### --answer--
255255

256-
Continuous Integration.
256+
Chai
257257

258258
### --question--
259259

@@ -303,45 +303,45 @@ Compatibility testing.
303303

304304
#### --text--
305305

306-
In the context of web accessibility, what does the acronym WCAG stand for?
306+
What is regression testing?
307307

308308
#### --distractors--
309309

310-
Web Compliance and Accessibility Guidelines
310+
This test ensures that the application works properly after downgrading to previous versions.
311311

312312
---
313313

314-
World Computer Accessibility Group
314+
This test runs tests repeatedly to ensure the application works under high load.
315315

316316
---
317317

318-
Web Content Accessibility Grading
318+
This test re-runs the test that found a bug to confirm that the issue has been fixed.
319319

320320
#### --answer--
321321

322-
Web Content Accessibility Guidelines
322+
This test re-runs tests to check for new issues introduced by recent changes to the codebase.
323323

324324
### --question--
325325

326326
#### --text--
327327

328-
Which of the following is NOT typically considered a part of shift-left testing practices?
328+
What is alpha testing?
329329

330330
#### --distractors--
331331

332-
Early integration of testing in the development process.
332+
The first phase of A/B testing.
333333

334334
---
335335

336-
Increased automation of tests.
336+
An automated test suite that checks for critical issues before beta testing begins.
337337

338338
---
339339

340-
Involving testers from the beginning of the project.
340+
Iterative testing performed in the Agile model of software development.
341341

342342
#### --answer--
343343

344-
Performing all tests after the development phase.
344+
Providing the application to a selected group of testers to use it as part of acceptance testing.
345345

346346
### --question--
347347

@@ -369,23 +369,23 @@ To verify that the most critical functions of a system are working.
369369

370370
#### --text--
371371

372-
Which testing practice involves deliberately introducing faults into a system to test its fault-tolerance capabilities?
372+
Which test involves creating simulated cyberattacks on the application to identify any vulnerabilitiess?
373373

374374
#### --distractors--
375375

376-
Regression testing.
376+
Smoke testing.
377377

378378
---
379379

380-
Load testing.
380+
Breakpoint testing.
381381

382382
---
383383

384384
Usability testing.
385385

386386
#### --answer--
387387

388-
Chaos testing.
388+
Penetration Testing.
389389

390390
### --question--
391391

@@ -435,21 +435,21 @@ Performance testing.
435435

436436
#### --text--
437437

438-
Which external CI/CD tool is commonly used for automating builds, tests, and deployments?
438+
Which function is used with matchers to check a value in Jest?
439439

440440
#### --distractors--
441441

442-
Ansible
442+
`check`
443443

444444
---
445445

446-
Docker
446+
`test`
447447

448448
---
449449

450-
Kubernetes
450+
`match`
451451

452452
#### --answer--
453453

454-
CircleCI
454+
`expect`
455455

0 commit comments

Comments
 (0)