WorksheetsZendesk Dev
Total questions: 12
Worksheet time: 6mins
What is JSON?
Just Simple Object Notation
JavaScript Object Notation
Javascript Syntax Object Notation
a programming language
I am in a restaurant and I want to get a dish from the menu,
Which request method in API language would it be?
GET
PATCH
POST
DELETE
which is NOT Server error status code:
200s
400s
500s
300s
Which is NOT a valid method?
GET
PUT
INSERT
DELETE
x++;
What file is used to check different dependencies and other meta information about a NodeJS project?
package.json
config.json
node_modules
.env
Which of the following routes contains a URL parameter?
/{id}
/:id
/?id=val
/id=val
What global variable is used to access the environment variables of a NodeJS application?
env
ENV
process.env
Process.getEnv()
What is not considered a NodeJS Application?
Javascript running in your mobile phone
Javascript running in your browser
Javascript running in your server
Javascript running as a desktop application
Which of the following command is used to run a node.js program?
node run main.js
node start main.js
start main.js
node main.js
