Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by JethiTech Team. If you also belong to the team, you can get access from here

JethiTech Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

JethiTech Full Stack Developer Interview Questions and Answers

Updated 31 Jan 2024

JethiTech Full Stack Developer Interview Experiences

1 interview found

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

I applied via LinkedIn and was interviewed before Jan 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Questions on what is Event Loop, Event bubbling, Closure etc
  • Q2. Basic Nodejs and reactjs questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basics clear

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in Nov 2024. There were 4 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Can you introduce yourself?
  • Ans. 

    Experienced Full Stack Developer with expertise in front-end and back-end technologies.

    • Experienced in HTML, CSS, JavaScript for front-end development

    • Proficient in Node.js, Express, MongoDB for back-end development

    • Familiar with React, Angular for building interactive web applications

  • Answered by AI
  • Q2. What is graphQL?, What is REST API? and which is better graphQL or REST API?
  • Ans. 

    GraphQL is a query language for APIs and a runtime for executing those queries. REST API is a set of rules for building web services. Both have their own advantages.

    • GraphQL allows clients to request only the data they need, reducing over-fetching and under-fetching.

    • REST API follows a more rigid structure and is easier to understand for beginners.

    • GraphQL is more efficient for complex queries involving multiple resources...

  • Answered by AI
Round 2 - Case Study 

I was asked to discuss the system design of Google Meet, with a primary focus on video processing and WebRTC.

Round 3 - Coding Test 

A graph question regarding LC 1334.

Round 4 - HR 

(1 Question)

  • Q1. Can you provide an introduction and a summary of your past experiences, as well as your motivations for wanting to join this company?
  • Ans. 

    Experienced Full Stack Developer with a passion for creating innovative solutions and a strong desire to contribute to a dynamic team.

    • Over 5 years of experience in full stack development, working on various projects from concept to deployment.

    • Proficient in front-end technologies such as HTML, CSS, JavaScript, and React.

    • Skilled in back-end technologies including Node.js, Express, and MongoDB.

    • Motivated by the opportunity...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Hummingbird Web Solutions Full Stack Developer interview:
  • System Design
  • DSA
Interview preparation tips for other job seekers - The first round was focused on system design, so please be prepared, as it is uncommon for freshers to excel in that area.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Eq and iq test that contain you emotions management

Round 2 - Technical 

(2 Questions)

  • Q1. $lookup in mongodb
  • Ans. 

    The $lookup operator in MongoDB is used to perform a left outer join between two collections.

    • Used to combine data from two collections based on a common field

    • Requires a local field and a foreign field to match documents

    • Returns an array of documents that include matched data from both collections

  • Answered by AI
  • Q2. $graphlookup in mongo db
  • Ans. 

    The $graphlookup operator in MongoDB is used to perform recursive queries on graph-like data structures.

    • Used to perform recursive queries on graph-like data structures

    • Can be used to traverse relationships between documents in a collection

    • Helps in querying hierarchical data structures

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It is simple. Please be confident

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

It was good and to the point

Round 2 - HR 

(2 Questions)

  • Q1. Just about the previous job
  • Q2. Projects and stuff about the previous job

I applied via LinkedIn and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Normal question regarding web development

Interview Preparation Tips

Interview preparation tips for other job seekers - I have given almost all answer with brief still he want something else strange
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions with some basic coding questions

Round 2 - Coding Test 

They have given 3 coding questions and some pseudo codings

Round 3 - Technical 

(2 Questions)

  • Q1. Tell about your self
  • Q2. Some coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

They just gave me an assessment with a few questions to test my subject knowledge

Round 2 - One-on-one 

(1 Question)

  • Q1. They asked me all the general questions and a few technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - As long as you are updated in your field of study, you will crack it.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 2023. There were 2 interview rounds.

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 - Technical 

(5 Questions)

  • Q1. What are oops concepts in java, explain real time scenario
  • Ans. 

    OOPs concepts in Java include inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance allows a subclass to inherit properties and methods from a superclass.

    • Polymorphism allows objects to take on multiple forms and behave differently based on their context.

    • Encapsulation hides the implementation details of an object and only exposes necessary information.

    • Abstraction allows for the creation of abstract class...

  • Answered by AI
  • Q2. Uses of interface, inheritance
  • Ans. 

    Interfaces define contracts for behavior, while inheritance allows for code reuse and polymorphism.

    • Interfaces allow for loose coupling and abstraction, enabling multiple implementations of the same behavior.

    • Inheritance allows for code reuse and extension of existing classes, reducing code duplication.

    • Polymorphism allows objects of different classes to be treated as if they were of the same class, simplifying code and i

  • Answered by AI
  • Q3. SQL query for join of tables
  • Ans. 

    SQL query for joining tables

    • Use JOIN keyword to combine two or more tables based on a related column

    • Specify the columns to be selected using SELECT keyword

    • Use ON keyword to specify the condition for joining the tables

    • Different types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN

  • Answered by AI
  • Q4. Java concepts used in your project
  • Ans. 

    Used Java concepts such as inheritance, polymorphism, and exception handling in my project.

    • Implemented inheritance to create a base class and derived classes with specific functionalities.

    • Utilized polymorphism to allow objects of different classes to be treated as if they were of the same class.

    • Implemented exception handling to handle errors and prevent program crashes.

    • Used interfaces to define a set of methods that a ...

  • Answered by AI
  • Q5. Overloading vs overriding, practical uses
  • Ans. 

    Overloading is having multiple methods with the same name but different parameters. Overriding is having a method in a subclass with the same name and parameters as a method in the superclass.

    • Overloading is used to provide different ways to call a method with different parameters

    • Overriding is used to provide a specific implementation of a method in a subclass

    • Overloading is resolved at compile-time while overriding is r...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zebra Technologies Software Developer interview:
  • Core Java
  • OOPS
  • collection framework
  • Database Management

Skills evaluated in this interview

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

(1 Question)

  • Q1. In trend java questions
Round 3 - Technical 

(1 Question)

  • Q1. Advance java questions, questions related to microservice and java 8
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. General fit to profile filtration
Round 2 - Technical 

(3 Questions)

  • Q1. To the profile applied for
  • Q2. Explain an actual component
  • Ans. 

    An actual component is a reusable and modular piece of software that performs a specific function within a larger system.

    • Components are often designed to be independent and can be easily integrated into different systems.

    • Examples of components include buttons, input fields, and dropdown menus in a user interface.

    • Components can have their own logic, styling, and functionality, making them versatile building blocks for s

  • Answered by AI
  • Q3. Design the architecture
  • Ans. 

    Designing the architecture for a software system involves planning the structure and components of the system.

    • Identify the key components of the system and their interactions

    • Choose appropriate technologies and frameworks for each component

    • Consider scalability, performance, security, and maintainability

    • Create a detailed diagram or documentation of the architecture

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Attitude towards work

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not bluff they will catch you immediately as even their management are hardcore coders

Skills evaluated in this interview

JethiTech Interview FAQs

How many rounds are there in JethiTech Full Stack Developer interview?
JethiTech interview process usually has 1 rounds. The most common rounds in the JethiTech interview process are One-on-one Round.
What are the top questions asked in JethiTech Full Stack Developer interview?

Some of the top questions asked at the JethiTech Full Stack Developer interview -

  1. Questions on what is Event Loop, Event bubbling, Closure ...read more
  2. Basic Nodejs and reactjs questi...read more

Tell us how to improve this page.

JethiTech Full Stack Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

JethiTech Full Stack Developer Reviews and Ratings

based on 2 reviews

3.0/5

Rating in categories

3.2

Skill development

2.6

Work-life balance

2.6

Salary

2.6

Job security

3.0

Company culture

2.4

Promotions

3.2

Work satisfaction

Explore 2 Reviews and Ratings
Full Stack Developer
3 salaries
unlock blur

₹1 L/yr - ₹6 L/yr

Devops Engineer
3 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Explore more salaries
Compare JethiTech with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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