CAMPUS RECRUITMENT EXAMINATION BY AFFIXIOUS

Are you a driven mind with impeccable skills? We at Affixious bring to you our eagerly awaited campus recruitment exam duly designed to evaluate your technical skills. Take this short test and stand a chance to be part of the Affixious family.

/15

Tab Below to Begin the Exam


Node Js

Are you a driven mind with impeccable skills? We at Affixious bring to you our eagerly awaited campus recruitment exam duly designed to evaluate your technical skills. Take this short test and stand a chance to be part of the Affixious family.

Kindly fill in your contact details.

What will be the output of below function:
Function LoopFun(){

for(var i=0; i<5; i++){
console.log("one");
setTimeout(() => {
Console.log(“two”);
},2000);
console.log("three");
}
}

Which of the following are not Node.js web application framework?

The . . . . . method is a shorthand for promise.then(null, errorCallback).

function example(){
setTimeout(()=> {
Console.log(“TimeOut”);
}, 0);
setImmediate(() => {
console.log(“Immediate”);
});
Console.log(“Execute”);
}

What will be the output of the function?

Command to show installed version of Node?

Which of the following is not built-in node module?

which of the template engine can be used with NodeJS?

Command to start REPL?

What will be the output of : 3 > 7 < 5

How many Node object methods are available?

The ‘$’ present in the RegExp object is called a ____________

What does /[^(]* regular expression indicate?

What will be the output of the below code:
function example(){
await setTimeout(() => {console.log(‘Hello’)}, 1000);
}

What will be the output of below function:
Function LoopFun(){
var i = 0;
for(i=0; i<5; i++){
If(i = 5){ Console.log(‘Hello’);}
}
}

What will be the output of the below code:
Function promiseFun(){
const promise1 = new Promise((resolve, reject) => {
setTimeout(resolve, 500, 'one');
});

const promise2 = new Promise((resolve, reject) => {
setTimeout(resolve, 100, 'two');
});

Promise.race([promise1, promise2]).then((value) => {
console.log(value);
});
}

Your score is

0%

Fx7otSkFBr