Upload Button Icon Add office photos

Filter interviews by

OMitra Full Stack Web Developer Interview Questions and Answers

Updated 26 Jan 2022

OMitra Full Stack Web Developer Interview Experiences

1 interview found

Round 1 - Telephonic Call 

(2 Questions)

  • Q1. Just asked interset in internship
  • Q2. No interview question

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare good development skills and DSA

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. How to optimise performance of a Nodejs app
  • Ans. 

    Optimizing performance of a Nodejs app involves various techniques to improve speed and efficiency.

    • Use asynchronous programming to handle multiple requests efficiently

    • Implement caching to reduce redundant database queries

    • Optimize code by removing unnecessary loops and function calls

    • Use a load balancer to distribute traffic evenly across multiple servers

    • Monitor and analyze performance using tools like New Relic or Datad

  • Answered by AI
  • Q2. How to optimise React
  • Ans. 

    Optimising React involves code splitting, lazy loading, using PureComponent, avoiding unnecessary re-renders, and using memoization.

    • Use code splitting to load only necessary components

    • Implement lazy loading for components that are not immediately needed

    • Utilize PureComponent to prevent unnecessary re-renders

    • Avoid unnecessary re-renders by using shouldComponentUpdate or React.memo

    • Use memoization techniques like useMemo o

  • Answered by AI
  • Q3. What is a callback?
  • Ans. 

    A callback is a function that is passed as an argument to another function and is executed after the completion of that function.

    • Callbacks are commonly used in asynchronous programming to handle tasks that take time to complete.

    • They allow for functions to be executed once a certain task is completed, without blocking the rest of the code.

    • Example: setTimeout function in JavaScript takes a callback function as an argumen

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Turing Full Stack Software Developer interview:
  • React.Js
  • Nodejs
  • Javascript

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(7 Questions)

  • Q1. What is your Role and responsibility in your current organization?
  • Q2. What Kind of Production environments do you solve?
  • Ans. 

    I solve complex production environments by identifying issues, optimizing performance, and implementing solutions.

    • Identifying bottlenecks and optimizing performance

    • Troubleshooting and resolving production issues

    • Implementing scalable solutions for high traffic websites

    • Working with cloud services like AWS or Azure

    • Automating deployment processes with tools like Jenkins or Docker

  • Answered by AI
  • Q3. What Features you have worked on? Explain 1 feature?
  • Ans. 

    Developed a real-time chat feature for a social networking platform.

    • Implemented WebSocket technology for instant messaging

    • Designed user interface for chat window with message history

    • Integrated push notifications for new messages

    • Developed backend logic for message encryption and decryption

  • Answered by AI
  • Q4. How did you prepare the design doc for this feature? What was your Approach?
  • Ans. 

    I prepared the design doc by outlining the requirements, architecture, data flow, and user interactions.

    • Outlined the requirements and goals of the feature

    • Defined the architecture and technologies to be used

    • Described the data flow and interactions between components

    • Included wireframes or mockups for user interfaces

    • Listed potential edge cases and how to handle them

  • Answered by AI
  • Q5. Find if Array2 is a substring of Array1
  • Ans. 

    Check if Array2 is a substring of Array1

    • Iterate through Array1 and check if each element contains Array2

    • Use built-in string functions like includes() or indexOf() to check for substring

    • Consider edge cases like empty arrays or arrays with empty strings

  • Answered by AI
  • Q6. How will you build breadcrums in react?
  • Ans. 

    Breadcrumbs in React can be built using a combination of state management and conditional rendering.

    • Create a state variable to store the breadcrumb data.

    • Update the state variable as the user navigates through the application.

    • Render the breadcrumbs component with the data stored in the state.

  • Answered by AI
  • Q7. How will you design a parking system? What api's will you create ? Their body and response object.
  • Ans. 

    Design a parking system with APIs for managing parking spots and reservations.

    • Create API for adding new parking spots with details like location, availability, and pricing

    • Create API for listing available parking spots based on location and availability

    • Create API for reserving a parking spot with user details and duration

    • Create API for cancelling a parking reservation

    • Response object for adding parking spot: { success: t...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Was given a DSA problem on squares it was relatively easy.

Round 2 - Coding Test 

Was giving another problem as regards longest sub array without repeating letters.

Round 3 - Technical 

(2 Questions)

  • Q1. What is git grep
  • Ans. 

    git grep is a command in Git that allows you to search through the contents of files in a Git repository.

    • Allows searching through the contents of files in a Git repository

    • Similar to the 'grep' command in Unix/Linux

    • Can be used to search for specific strings or patterns in files

    • Useful for finding references to functions, variables, or text within the codebase

  • Answered by AI
  • Q2. What is profilers
  • Ans. 

    Profilers are tools used to analyze the performance of software applications by measuring various metrics such as CPU usage, memory usage, and execution time.

    • Profilers help identify bottlenecks and optimize code for better performance.

    • Examples of profilers include VisualVM, YourKit, and Xcode Instruments.

    • Profiling can be done for different aspects of an application, such as CPU profiling, memory profiling, and network

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Turing Full Stack Software Developer interview:
  • Python
  • Javascript
Interview preparation tips for other job seekers - Just know your languages and be fairly good at DSA

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Machine oding asked to implement LLD
  • Q2. What is a semaphore
  • Ans. 

    A semaphore is a synchronization object used in concurrent programming to control access to shared resources.

    • Semaphores can be used to limit the number of threads accessing a resource at the same time

    • They can be implemented as counting semaphores or binary semaphores

    • Example: In a producer-consumer problem, semaphores can be used to control access to a shared buffer

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Aptitude Test 

It was easy just a few basic apti questions nothing complicated

Round 3 - Coding Test 

4-5 codes on java/python or on ur preferred coding skill

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calm and interview face to face was a easy proc=cess
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(5 Questions)

  • Q1. Puzzle of 7 horses
  • Q2. Not sure, look it up online
  • Q3. 2d Matrix problems
  • Q4. Coding questions on Array
  • Q5. Coding Question on String

Interview Preparation Tips

Interview preparation tips for other job seekers - Coding questions for freshers. I only know that, that;s when I joined in 2018
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Nov 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Some code javascript outputs
  • Q2. Some errors in javascript code
Round 1 - Aptitude Test 

Q 1 print string in tringal farmat
Q2 print duplicate string in two array

Round 2 - Technical 

(1 Question)

  • Q1. About core java over all

Interview Preparation Tips

Interview preparation tips for other job seekers - Be very comfortable and confident

OMitra Interview FAQs

How many rounds are there in OMitra Full Stack Web Developer interview?
OMitra interview process usually has 1 rounds. The most common rounds in the OMitra interview process are Telephonic Call.

Tell us how to improve this page.

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 429 Interviews
Udaan Interview Questions
4.0
 • 335 Interviews
Meesho Interview Questions
3.7
 • 329 Interviews
CARS24 Interview Questions
3.6
 • 322 Interviews
Zepto Interview Questions
3.5
 • 195 Interviews
Blinkit Interview Questions
3.7
 • 179 Interviews
BlackBuck Interview Questions
3.8
 • 172 Interviews
Tata 1mg Interview Questions
3.6
 • 145 Interviews
Paisabazaar.com Interview Questions
3.5
 • 138 Interviews
Urban Company Interview Questions
3.4
 • 133 Interviews
View all
Compare OMitra with

Udaan

4.0
Compare

Swiggy

3.8
Compare

CARS24

3.6
Compare

BlackBuck

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