Upload Button Icon Add office photos

Filter interviews by

Yethi Consulting Software Engineer Interview Questions and Answers

Updated 10 Dec 2024

Yethi Consulting Software Engineer Interview Experiences

2 interviews found

Software Engineer Interview Questions & Answers

user image Chethan Poojar

posted on 28 Mar 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How react works
  • Ans. 

    React is a JavaScript library for building user interfaces.

    • React uses a virtual DOM to improve performance by only updating the necessary parts of the actual DOM.

    • Components are the building blocks of React applications.

    • React allows for the creation of reusable UI components.

    • React uses JSX, a syntax extension that allows mixing HTML with JavaScript.

    • State and props are used to manage data and communication between compon

  • Answered by AI
  • Q2. Js es6 feautures
Round 2 - Technical 

(1 Question)

  • Q1. React hooks, how will they works

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

user image rahul jaiswar

posted on 10 Dec 2024

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

I applied via Walk-in and was interviewed before Dec 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Mathematical reasoning question & logical Questions

Round 2 - Coding Test 

Opps arrays collections etc

Round 3 - Coding Test 

Coding test with Director Regarding Split Functionalities

Round 4 - HR 

(2 Questions)

  • Q1. Tell me about yourself?
  • Q2. Agree with bond pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - It was amazing experience most of candiate rid of the all rounds . I was the only one who was selected at that time

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find DuplicateYou have been given an integer array/list(ARR) of s ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Interview questions from similar companies

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

I applied via Walk-in and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. OOPS concept and All Major pillars with Scanrio-based questions asked on Abstract class and Interface
  • Q2. .Net MVC and .Net Core based on program.cs file and Dependency Injection and Middleware in deep
  • Q3. Pattern question and check string Palindrome
  • Q4. SQL Queries around 4th highest salary of Employee
  • Q5. All basic programming concept checking like having prefix and postfix expression problem solving on paper
Round 2 - Technical 

(4 Questions)

  • Q1. TechnoManagerial Round Collection question to find about number of character present in the word Mirafra with live coding F2F
  • Q2. API testing ang REST API Concept
  • Q3. Professional Journey
  • Q4. Project Details
Round 3 - Technical 

(2 Questions)

  • Q1. It was a director round but say you need to give again technical round ,they wasted my time and money.
  • Q2. SQL Queries on pen and paper

Interview Preparation Tips

Interview preparation tips for other job seekers - HR said you haven't the skill to represent on client. Never believe on HR what they said.Final round was my Director's round but she wasted my time
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Focusing on moderate level patterns

Round 2 - Technical 

(4 Questions)

  • Q1. Discuss object oriented principles in depth
  • Ans. 

    Object oriented principles are fundamental concepts in software development that focus on organizing code into objects with properties and behaviors.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Allowing a new class to inherit properties and behaviors from an existing class.

    • Polymorphism: The ability for objects of different classes to respond to the same message in di...

  • Answered by AI
  • Q2. Deep discuss of interface
  • Q3. Deep discuss of exception, multithreading
  • Q4. Deep discuss of oop
Round 3 - HR 

(1 Question)

  • Q1. Asked some tricky question related to real life problems

Interview Preparation Tips

Interview preparation tips for other job seekers - All Good 👍🏻
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is server and abap server
  • Ans. 

    A server is a computer or software that provides functionality for other programs or devices. ABAP server is a server that runs ABAP programs.

    • A server is a computer or software that provides services or resources to other computers or programs.

    • ABAP server is a server that runs ABAP (Advanced Business Application Programming) programs, commonly used in SAP systems.

    • ABAP server handles requests from clients and executes A...

  • Answered by AI

Skills evaluated in this interview

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 Aug 2024. There were 2 interview rounds.

Round 1 - Phone Call 

(2 Questions)

  • Q1. Tell me about your previous company role ?
  • Ans. 

    I was a software engineer responsible for developing and maintaining web applications for a financial services company.

    • Developed and maintained web applications using technologies such as Java, Spring, and Angular

    • Collaborated with cross-functional teams to gather requirements and deliver solutions

    • Participated in code reviews and testing to ensure high quality software

    • Implemented new features and enhancements to improve

  • Answered by AI
  • Q2. Willing to join Arista ?
  • Ans. 

    Yes, I am willing to join Arista as a Software Engineer.

    • I am excited about the opportunity to work at Arista and contribute to their innovative projects.

    • I have researched the company and believe that my skills align well with their values and goals.

    • I am confident that I can make a positive impact on the team and help drive success at Arista.

  • Answered by AI
Round 2 - Coding Test 

One Hr interview with 3-4 coding questions on strings,array and linked list

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Polymorphism in C++
  • Ans. 

    Polymorphism in C++ allows objects of different classes to be treated as objects of a common superclass.

    • Polymorphism is achieved through function overloading and virtual functions.

    • Function overloading allows multiple functions with the same name but different parameters.

    • Virtual functions are functions in a base class that are overridden in derived classes.

    • Example: Animal class with virtual function 'makeSound', Cat and

  • Answered by AI
  • Q2. Standard template library in C++
  • Ans. 

    STL in C++ provides reusable algorithms and data structures for efficient programming.

    • STL includes containers like vector, list, map, algorithms like sort, find, and iterators.

    • Example: vector v = {1, 2, 3}; sort(v.begin(), v.end());

    • STL saves time by providing pre-implemented solutions for common programming tasks.

Answered by AI
  • Q3. Design Patterns in C++
  • Ans. 

    Design patterns in C++ are reusable solutions to common problems in software design.

    • Design patterns help in creating flexible, maintainable, and scalable code.

    • Examples of design patterns in C++ include Singleton, Factory, Observer, and Strategy.

    • Each design pattern has a specific purpose and can be applied in different scenarios.

    • Understanding design patterns can improve code quality and efficiency in software developmen

  • Answered by AI

    Skills evaluated in this interview

    Interview experience
    3
    Average
    Difficulty level
    Moderate
    Process Duration
    -
    Result
    Not Selected

    I applied via Campus Placement

    Round 1 - Aptitude Test 

    Aptitude test was easy level and moderate level.

    Round 2 - Coding Test 

    Coding test was held in the google form which was very easy.

    Round 3 - Technical 

    (3 Questions)

    • Q1. What is volatile keyword?
    • Ans. 

      The volatile keyword in software engineering is used to indicate that a variable's value can be modified by multiple threads.

      • Volatile keyword ensures that the variable's value is always read from and written to the main memory, rather than cached in a thread's local cache.

      • It is used to prevent unexpected behavior in multi-threaded environments where multiple threads may access and modify the same variable simultaneousl...

    • Answered by AI
    • Q2. What is abstract class
    • Ans. 

      An abstract class is a class that cannot be instantiated and is meant to be subclassed.

      • An abstract class can have abstract methods that must be implemented by its subclasses.

      • An abstract class can also have non-abstract methods that can be inherited by its subclasses.

      • An abstract class provides a common interface for its subclasses.

      • An abstract class can have instance variables and constructors.

      • An abstract class cannot be...

    • Answered by AI
    • Q3. Where do you use abstract class
    • Ans. 

      Abstract classes are used to provide a common interface and partial implementation for related classes.

      • Abstract classes are used when you want to create a base class that cannot be instantiated on its own but can be inherited by other classes.

      • They are useful when you want to define common methods and properties that multiple related classes should have.

      • Abstract classes can have both abstract and non-abstract methods.

      • Ab...

    • Answered by AI

    Skills evaluated in this interview

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

    (1 Question)

    • Q1. Polyfills , basic react app
    Interview experience
    3
    Average
    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 - Coding Test 

    4 coding ques + 15 technical aptitude

    Round 3 - Coding Test 

    4 Coding Ques + 10 technical aptitude

    Round 4 - Technical 

    (2 Questions)

    • Q1. Coding question
    • Q2. Group by query, dbms

    Yethi Consulting Interview FAQs

    How many rounds are there in Yethi Consulting Software Engineer interview?
    Yethi Consulting interview process usually has 3 rounds. The most common rounds in the Yethi Consulting interview process are Technical, Coding Test and Aptitude Test.
    How to prepare for Yethi Consulting Software Engineer interview?
    Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Yethi Consulting. The most common topics and skills that interviewers at Yethi Consulting expect are Finacle, JBoss, JMS, Core Java and J2Ee.
    What are the top questions asked in Yethi Consulting Software Engineer interview?

    Some of the top questions asked at the Yethi Consulting Software Engineer interview -

    1. How react wo...read more
    2. React hooks, how will they wo...read more
    3. Tell me about yourse...read more

    Tell us how to improve this page.

    People are getting interviews through

    based on 1 Yethi Consulting interview
    WalkIn
    100%
    Low Confidence
    ?
    Low Confidence means the data is based on a small number of responses received from the candidates.
    Yethi Consulting Software Engineer Salary
    based on 88 salaries
    ₹3 L/yr - ₹9.1 L/yr
    32% less than the average Software Engineer Salary in India
    View more details

    Yethi Consulting Software Engineer Reviews and Ratings

    based on 10 reviews

    3.8/5

    Rating in categories

    4.1

    Skill development

    3.6

    Work-Life balance

    2.6

    Salary & Benefits

    3.8

    Job Security

    3.5

    Company culture

    2.8

    Promotions/Appraisal

    3.3

    Work Satisfaction

    Explore 10 Reviews and Ratings
    QA Analyst
    369 salaries
    unlock blur

    ₹2.7 L/yr - ₹8.8 L/yr

    Senior QA Analyst
    330 salaries
    unlock blur

    ₹3 L/yr - ₹11 L/yr

    Senior Quality Analyst
    108 salaries
    unlock blur

    ₹3.2 L/yr - ₹10 L/yr

    QA Consultant
    104 salaries
    unlock blur

    ₹4.6 L/yr - ₹14.5 L/yr

    Software Engineer
    88 salaries
    unlock blur

    ₹3 L/yr - ₹9.1 L/yr

    Explore more salaries
    Compare Yethi Consulting with

    Infosys Consulting

    3.4
    Compare

    TCS

    3.7
    Compare

    Wipro

    3.7
    Compare

    Accenture

    3.9
    Compare

    Calculate your in-hand salary

    Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
    Did you find this page helpful?
    Yes No
    write
    Share an Interview