Online Exam Quiz

questionQuestion  1 to 30

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

How do you handle asynchronous operations in Node.js?

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

Which function is used to create a schema in MongoDB?

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

Which command is used to start a MongoDB server?

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

Which React hook is used to manage component state?

  • useState
  • useEffect
  • useContext
  • useRef
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 command is used to update npm to the latest version?

  • npm upgrade
  • npm update
  • npm install npm@latest
  • npm new version
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 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

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

  • App
  • Root
  • Main
  • Base
Mark for review

Which database is used in the MERN stack?

  • MySQL
  • MongoDB
  • PostgreSQL
  • SQLite
Mark for review

How do you create a context in React?

  • React.createContext()
  • React.useContext()
  • React.initContext()
  • React.newContext()
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 default port for a Node.js application?

  • 3000
  • 8080
  • 4000
  • 5000
Mark for review

Which hook is used to perform side effects in React?

  • useEffect
  • useState
  • useRef
  • useContext
Mark for review

What does the express.static middleware do?

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

Which of the following is a NoSQL database?

  • PostgreSQL
  • MySQL
  • MongoDB
  • SQLite
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 check the version of Node.js installed?

  • node -v
  • node -version
  • node --version
  • node check-version
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

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 lifecycle method is invoked after a component is rendered in React?

  • componentDidMount
  • componentWillMount
  • render
  • componentWillUnmount
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 function is used to read a file in Node.js?

  • fs.readFile()
  • fs.getFile()
  • fs.loadFile()
  • fs.fetchFile()
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

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

  • GET
  • POST
  • PUT
  • DELETE
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

Which command is used to install MongoDB on a server?

  • npm install mongodb
  • apt-get install mongodb
  • brew install mongodb
  • install mongodb
Mark for review

Which method is used to fetch data in React using hooks?

  • useFetch
  • useEffect
  • useState
  • useReducer
Mark for review

Which HTTP status code indicates a successful request?

  • 200
  • 404
  • 500
  • 403
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