TW 09
TW 09
md 2025-04-13
Meeting Agenda
▶ Icebreaking
▶ Workshop Activities
▶ Questions
▶ Teamwork Activities
▶ Interview Questions
▶ Retro meeting
1/7
tw-09.md 2025-04-13
02 - Score Tracker
Teamwork Schedule
Ice-breaking 10m
3. Which of the following is a valid use case for using async/await in JavaScript?
2/7
tw-09.md 2025-04-13
5. When using the Fetch API, what method is used to handle a response and extract JSON data?
A. .text()
B. .json()
C. .response()
D. .xml()
3/7
tw-09.md 2025-04-13
11. What is the primary advantage of using Axios over the Fetch API?
A. after 10 second
B. immediately
C. after results are received from the HTTP request
D. after 10000 seconds
A. to ensure that tasks further down in your code are not initiated until earlier tasks have completed
B. to make your code faster
C. to ensure that the call stack maintains a LIFO (Last in, First Out) structure
D. to start tasks that might take some time without blocking subsequent tasks from executing immediately
14. What is the HTTP verb to request the contents of an existing resource?
A. DELETE
B. PATCH
C. GET
D. CALL
4/7
tw-09.md 2025-04-13
15. Which method call is chained to handle a successful response returned by fetch()?
A. done()
B. catch()
C. then()
D. finally()
16. Which statement is applicable to the defer attribute of the HTML <script> tag?
A. defer allows the browser to continue processing the page while the script loads in the background.
B. defer causes the script to be loaded from the backup content delivery network (CDN).
C. defer blocks the browser from processing HTML below the tag until the script is completely loaded.
D. defer lazy loads the script, causing it to download only when it is called by another script on the page.
console.log('I');
setTimeout(() => {
console.log('love');
}, 0);
console.log('Javascript!');
A.
I
Javascript!
love
B.
love
I
Javascript!
C. The output may change with each execution of code and cannot be determined.
D.
I
love
Javascript!
5/7
tw-09.md 2025-04-13
1. What is ‘callback hell’ in the context of using callbacks, and what are its disadvantages?
6/7
tw-09.md 2025-04-13
Closing 10m
QA Session
7/7