Online Exam Quiz

questionQuestion  1 to 30

How do you make an HTTP GET request in Node.js?

  • axios.get(url)
  • fetch(url)
  • http.get(url)
  • request(url)
Mark for review

How do you create a new React application using create-react-app?

  • create-react-app my-app
  • create-react-app --init my-app
  • npx create-react-app my-app
  • react-app create my-app
Mark for review

What is the command to uninstall a package using npm?

  • npm uninstall package-name
  • npm remove package-name
  • npm delete package-name
  • npm unpackage package-name
Mark for review

Which React hook is used to manage component state?

  • useState
  • useEffect
  • useContext
  • useRef
Mark for review

What is Node.js primarily used for in the MERN stack?

  • Creating database schemas
  • Building server-side applications
  • Managing user sessions
  • Developing mobile apps
Mark for review

Which command is used to check the version of Node.js installed?

  • node -v
  • node -version
  • node --version
  • node check-version
Mark for review

What is the default port for a Node.js application?

  • 3000
  • 8080
  • 4000
  • 5000
Mark for review

Which command is used to start a MongoDB server?

  • mongod
  • mongo start
  • mongo-server
  • mongodb-server
Mark for review

How do you install a specific version of a package using npm?

  • npm install package@version
  • npm get package@version
  • npm add package@version
  • npm fetch package@version
Mark for review

How do you install Express.js using npm?

  • npm install express
  • npm get express
  • npm add express
  • npm build express
Mark for review

What is the purpose of the package.json file in a Node.js project?

  • To define project metadata
  • To create a new project
  • To install dependencies
  • To manage server configurations
Mark for review

Which of the following is a backend framework?

  • React
  • Angular
  • Express
  • Vue.js
Mark for review

Which database is used in the MERN stack?

  • MySQL
  • MongoDB
  • PostgreSQL
  • SQLite
Mark for review

Which of the following is a popular middleware for handling JSON requests in Express.js?

  • bodyParser
  • multer
  • cookieParser
  • cors
Mark for review

What is the role of Express in the MERN stack?

  • Frontend framework
  • Backend framework
  • Database
  • Deployment tool
Mark for review

Which of the following is a NoSQL database?

  • PostgreSQL
  • MySQL
  • MongoDB
  • SQLite
Mark for review

How do you handle asynchronous operations in Node.js?

  • Using callbacks
  • Using promises
  • Using async/await
  • All of the above
Mark for review

What does the "M" in MongoDB stand for?

  • MySQL
  • Middleware
  • MapReduce
  • MongoDB
Mark for review

What does MERN stand for in MERN Stack?

  • MongoDB, Express, React, Node.js
  • MySQL, Express, React, Node.js
  • MongoDB, Express, Redux, Node.js
  • MongoDB, Express, React Native, Node.js
Mark for review

How do you define a route in Express.js?

  • app.get('/route', callback)
  • app.route('/route', callback)
  • app.fetch('/route', callback)
  • app.send('/route', callback)
Mark for review

What does the command npm init do?

  • Initializes a new Node.js project
  • Installs npm
  • Updates npm
  • Creates a new package
Mark for review

Which hook is used to perform side effects in React?

  • useEffect
  • useState
  • useRef
  • useContext
Mark for review

What is JSX in React?

  • A JavaScript XML syntax extension
  • A JavaScript framework
  • A database query language
  • A type of HTTP request
Mark for review

Which function is used to create a schema in MongoDB?

  • createSchema
  • defineSchema
  • newSchema
  • mongoose.Schema
Mark for review

What is the main purpose of the ReactDOM library?

  • To handle HTTP requests
  • To manage server-side operations
  • To interact with the DOM
  • To define component structure
Mark for review

Which method is used to update the state in a React component?

  • setState
  • updateState
  • changeState
  • setNewState
Mark for review

How do you create a context in React?

  • React.createContext()
  • React.useContext()
  • React.initContext()
  • React.newContext()
Mark for review

Which command is used to create a new directory in Node.js?

  • mkdir directory-name
  • newdir directory-name
  • createdir directory-name
  • makedir directory-name
Mark for review

What does the command npx stand for?

  • Node Package Executor
  • Node Program Executor
  • Node Process Executor
  • Node Project Executor
Mark for review

Which lifecycle method is invoked after a component is rendered in React?

  • componentDidMount
  • componentWillMount
  • render
  • componentWillUnmount
Mark for review

blinkerOnline

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • Answered
  • Not Answered
  • Marked for Review