Online Exam Quiz

questionQuestion  1 to 30

What is the purpose of the express.Router() in Express.js?

  • To create a new route instance
  • To handle HTTP methods
  • To set up middleware
  • To manage server configurations
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

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

Which of the following is a correct way to create a functional component in React?

  • function MyComponent() { return <div></div>; }
  • class MyComponent extends React.Component { render() { return <div></div>; } }
  • React.createComponent() { return <div></div>; }
  • const MyComponent = () => { return <div></div>; }
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

What does the command npm init do?

  • Initializes a new Node.js project
  • Installs npm
  • Updates npm
  • Creates a new package
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

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 of the following is a NoSQL database?

  • PostgreSQL
  • MySQL
  • MongoDB
  • SQLite
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

Which component is known as the root component in a React application?

  • App
  • Root
  • Main
  • Base
Mark for review

Which React hook is used to manage component state?

  • useState
  • useEffect
  • useContext
  • useRef
Mark for review

Which function is used to create a schema in MongoDB?

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

How do you create a new component in React?

  • function ComponentName() { }
  • create ComponentName() { }
  • new ComponentName() { }
  • define ComponentName() { }
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 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

Which command is used to start a MongoDB server?

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

What does the express.static middleware do?

  • Serves static files
  • Handles JSON requests
  • Manages sessions
  • Routes API requests
Mark for review

What is the command to create a new MongoDB database?

  • use dbname
  • create dbname
  • new dbname
  • make dbname
Mark for review

Which of the following is a backend framework?

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

What is the role of Express in the MERN stack?

  • Frontend framework
  • Backend framework
  • Database
  • Deployment tool
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 database is used in the MERN stack?

  • MySQL
  • MongoDB
  • PostgreSQL
  • SQLite
Mark for review

What is a common HTTP method used for creating a new resource?

  • GET
  • POST
  • PUT
  • DELETE
Mark for review

What does the npm command stand for?

  • Node Package Manager
  • New Programming Module
  • Node Program Manager
  • New Package Manager
Mark for review

What is the default method used for form submission in HTML?

  • GET
  • POST
  • PUT
  • DELETE
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 does the "M" in MongoDB stand for?

  • MySQL
  • Middleware
  • MapReduce
  • MongoDB
Mark for review

Which module in Node.js provides utilities for handling file paths?

  • path
  • fs
  • http
  • url
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