Upload Button Icon Add office photos

Filter interviews by

Onetech Ventures Mern Full Stack Developer Interview Questions, Process, and Tips

Updated 12 Oct 2024

Onetech Ventures Mern Full Stack Developer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Company Website and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(7 Questions)

  • Q1. Write a code to increment counter using redux store
  • Ans. 

    Increment counter using Redux store in Mern Full Stack Developer interview

    • Create a Redux action to increment the counter

    • Define a Redux reducer to handle the action and update the state

    • Connect the component to the Redux store and dispatch the action

  • Answered by AI
  • Q2. Flow of redux store
  • Ans. 

    Flow of redux store involves actions being dispatched, reducers updating the state, and components subscribing to the updated state.

    • Actions are dispatched by components or middleware

    • Reducers receive the actions and update the state immutably

    • Components subscribe to the updated state using mapStateToProps

  • Answered by AI
  • Q3. Difference between useMemo and useCallback
  • Ans. 

    useMemo is used to memoize a value, while useCallback is used to memoize a function.

    • useMemo is used to memoize a value and recompute it only when its dependencies change.

    • useCallback is used to memoize a function and recompute it only when its dependencies change.

    • Example: useMemo can be used to memoize the result of a costly computation, while useCallback can be used to memoize a callback function passed to a child comp

  • Answered by AI
  • Q4. Difference between slice and splice
  • Ans. 

    Slice is a method that returns a shallow copy of a portion of an array into a new array, while splice is a method that changes the contents of an array by removing or replacing existing elements.

    • Slice does not modify the original array, while splice does.

    • Slice takes two arguments - start and end index, while splice takes three arguments - start index, number of elements to remove, and optional elements to add.

    • Example: ...

  • Answered by AI
  • Q5. What is event loop?
  • Ans. 

    Event loop is a mechanism in JavaScript that allows for asynchronous operations to be executed in a non-blocking way.

    • Event loop is responsible for handling asynchronous operations in JavaScript.

    • It allows for non-blocking execution of code by continuously checking the call stack and the callback queue.

    • Event loop processes tasks in a queue and executes them one by one.

    • Example: setTimeout() function in JavaScript uses eve...

  • Answered by AI
  • Q6. Is Node js multi threaded?
  • Ans. 

    No, Node.js is single-threaded.

    • Node.js uses an event-driven, non-blocking I/O model which makes it single-threaded.

    • It utilizes the event loop to handle multiple requests efficiently.

    • However, Node.js can still leverage multi-core systems by spawning child processes.

  • Answered by AI
  • Q7. Can write code for authentication using JWT
  • Ans. 

    Yes, I can write code for authentication using JWT.

    • Generate a JWT token upon successful login

    • Verify the JWT token on subsequent requests

    • Set expiration time for JWT tokens to enhance security

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare both frontend as well as backend concept

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Too much focus on theory questions. Like how would you link multiple middleware - write code for that
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Ask questions related to CSS, Javascript, React, Node and Cloud stuff
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

On campus aptitude test

Round 2 - Technical 

(1 Question)

  • Q1. About oops concepts and java questions
Round 3 - HR 

(1 Question)

  • Q1. Discussion about location and why virtusa
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Quantitative , figure ,mcq question based on tech stack and 2 coding question which are basic. 90 minute time limit.

Round 2 - Technical 

(2 Questions)

  • Q1. Angular question
  • Q2. .net question and sql question
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Assignment 

Regarding To My Full Stack

Round 2 - Aptitude Test 

Regarding To My Full Stack

Round 3 - HR 

(2 Questions)

  • Q1. What Is Python And Discuss With Some Questions
  • Q2. In that Case Studies
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Hibernate internal working
  • Q2. Group BY in DBMS
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Sep 2023.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. Basic intro with work experience and skillset
Round 3 - Technical 

(4 Questions)

  • Q1. After a quick intro jumped into coding - it was an easy DSA question which unfortunately i wasn't able to solve in best time complexity. - find 2nd max element in an array (this was in JS language) you ca...
  • Q2. Alot of questions on vanilla JS
  • Q3. Asked if i know mongoDB as its a full stack dev role - which i didnt knew so i said not prepared as of now
  • Q4. Asked React questions - higher order component, hooks, useeffect, prepare lifecycle methods thouroughly

Interview Preparation Tips

Topics to prepare for Ernst & Young Full Stack Developer interview:
  • React.Js
  • Javascript
Interview preparation tips for other job seekers - I have learned alot of advanced topics and got confused - i would say prepare basics as much as you can - no rocket science
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain architecture of project
  • Ans. 

    The project architecture follows a microservices design pattern with separate front-end and back-end components.

    • Utilizes microservices architecture for scalability and flexibility

    • Separate front-end and back-end components for modularity

    • May include technologies like Docker for containerization and Kubernetes for orchestration

  • Answered by AI
  • Q2. Async and await difference
  • Ans. 

    Async and await are keywords in JavaScript used for handling asynchronous operations.

    • Async is used to define a function as asynchronous, allowing it to use the await keyword.

    • Await is used to pause the execution of an async function until a Promise is settled.

    • Async functions always return a Promise, which resolves with the value returned by the function.

    • Using async/await makes asynchronous code easier to read and write

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Background about me
  • Q2. 2 DSA questions

Onetech Ventures Interview FAQs

How many rounds are there in Onetech Ventures Mern Full Stack Developer interview?
Onetech Ventures interview process usually has 1 rounds. The most common rounds in the Onetech Ventures interview process are Technical.
What are the top questions asked in Onetech Ventures Mern Full Stack Developer interview?

Some of the top questions asked at the Onetech Ventures Mern Full Stack Developer interview -

  1. Can write code for authentication using ...read more
  2. Write a code to increment counter using redux st...read more
  3. Difference between useMemo and useCallb...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Cognizant Interview Questions
3.8
 • 5.5k Interviews
Deloitte Interview Questions
3.8
 • 2.8k Interviews
BYJU'S Interview Questions
3.1
 • 2.2k Interviews
Teleperformance Interview Questions
3.9
 • 1.7k Interviews
Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
Ernst & Young Interview Questions
3.5
 • 1.1k Interviews
WNS Interview Questions
3.4
 • 967 Interviews
Google Interview Questions
4.4
 • 854 Interviews
Nagarro Interview Questions
4.0
 • 773 Interviews
View all
Product Manager
5 salaries
unlock blur

₹7.5 L/yr - ₹13 L/yr

Software Development Engineer
4 salaries
unlock blur

₹5 L/yr - ₹6.6 L/yr

Software Developer 1
4 salaries
unlock blur

₹4.5 L/yr - ₹8.5 L/yr

Software Developer
3 salaries
unlock blur

₹4.8 L/yr - ₹5.6 L/yr

Business Analyst
3 salaries
unlock blur

₹3.5 L/yr - ₹4 L/yr

Explore more salaries
Compare Onetech Ventures with

Sequoia Capital

3.4
Compare

Nexus Venture Partners

3.0
Compare

Matrix Partners

2.8
Compare

Kalaari Capital

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview