You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The purpose of the Initial Technical Call is to ask short questions that immediately screen out unqualified candidates. This should help eliminate about 80% of candidates in a 5-minute call, allowing us to increase the volume of developers we interview.
The call can be conducted by HR rather than developers.
During the call, HR will share their screen to display the questions. Neither side should read the questions aloud in order to reduce the chance of AI-generated answers.
The interview will be recorded on video. If there are any doubts about a candidate, the video can be reviewed by one of the developers.
Question Topic
The topic of the questions is Promise — something every JavaScript developer should be familiar with.
constrandPromise=newPromise((resolve)=>{setTimeout(()=>{resolve(Math.random());},2000);});asyncfunctiongetRandomNumber(){constnum=awaitrandPromise;returnnum;}constrandNum=getRandomNumber();console.log(`The random number is: ${randNum}`);
What is the return type of the following function?
asyncfunctiongetNum(){return10;}
In the following Express server:
A request is sent to the /wait path
Then a request is sent to the /rand path
How long will it take until Node.js starts processing the /rand request?
importcreateExpressApplicationfrom'express';asyncfunctionwaitTenSeconds(){consttimerPromise=newPromise((resolve)=>{setTimeout(()=>{resolve('It takes 10 seconds for this promise to be resolved');},10000);});awaittimerPromise;}constapp=createExpressApplication();app.get('/rand',(req,res)=>{res.send(Math.random());});app.get('/wait',async(req,res)=>{awaitwaitTenSeconds();res.send('Finished waiting...');});app.listen(3000,()=>{console.log('Server is listening on port 3000');});
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
Objective
The purpose of the Initial Technical Call is to ask short questions that immediately screen out unqualified candidates. This should help eliminate about 80% of candidates in a 5-minute call, allowing us to increase the volume of developers we interview.
The call can be conducted by HR rather than developers.
During the call, HR will share their screen to display the questions. Neither side should read the questions aloud in order to reduce the chance of AI-generated answers.
The interview will be recorded on video. If there are any doubts about a candidate, the video can be reviewed by one of the developers.
Question Topic
The topic of the questions is
Promise— something every JavaScript developer should be familiar with.Questions
What is wrong with the following code?
What is wrong with the following code?
What is the return type of the following function?
In the following Express server:
/waitpath/randpathHow long will it take until Node.js starts processing the
/randrequest?What is
Promise?All reactions