Upload Button Icon Add office photos

Filter interviews by

Jeeves ERP Associate Software Engineer Interview Questions and Answers

Updated 15 Jun 2023

Jeeves ERP Associate Software Engineer Interview Experiences

1 interview found

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

I applied via Campus Placement and was interviewed in May 2023. There were 4 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 - Aptitude Test 

In First round they will be given written test 10 MCQ, remaining based on what type of role u have selected for me they have given SQL queries

Round 3 - Case Study 

They will ask basic questions and about project and their own test cases

Round 4 - Technical 

(2 Questions)

  • Q1. They will technical 1&2 rounds they will ask based on ur resume and what u have applied for the role
  • Q2. What are joins, syntax, constraints, datatype, about triggers, stored procedure, dbms, rdbms

Interview Preparation Tips

Topics to prepare for Jeeves ERP Associate Software Engineer interview:
  • SQL
  • Java
  • HTML
  • CSS
  • Data Structures
Interview preparation tips for other job seekers - Be prepare most of the question will be asked by seeing the resume be confident communication will be more important

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Tell me about yourself

Round 2 - One-on-one 

(1 Question)

  • Q1. What is static method
  • Ans. 

    A static method is a method that belongs to the class itself, rather than to instances of the class.

    • Static methods can be called without creating an instance of the class.

    • They are commonly used for utility functions that do not require access to instance variables.

    • Static methods are declared using the 'static' keyword in the method signature.

    • Example: Math.max() is a static method in the Math class that returns the maxi

  • Answered by AI
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Basic Aptitude test and personality test, It's easy

Round 2 - Technical 

(1 Question)

  • Q1. Code to print diagonal elements in 2d array. Reverse a string without using other empty string.
  • Ans. 

    Print diagonal elements in a 2D array and reverse a string without using an empty string.

    • Iterate through the rows and columns of the 2D array and print the elements where the row index is equal to the column index.

    • Iterate through the characters of the string from the last index to the first index and append each character to a new string.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - In technical round, they focus only on coding, problem solving and data structures and algorithms.
So be ready to solve codes

Skills evaluated in this interview

I applied via Walk-in and was interviewed before Sep 2021. There were 5 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 - One-on-one 

(3 Questions)

  • Q1. Introduce about yourself
  • Q2. Logical questions and about project
  • Q3. About their company and their products
Round 3 - Aptitude Test 

General Aptitude and logical reasoning

Round 4 - Coding Test 

About programming and basic programs with advanced program

Round 5 - HR 

(2 Questions)

  • Q1. Salary expectations and about location and staying
  • Q2. About work from home and work from office

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and self motivated and have a good knowledge about everything
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Nov 2024.

Round 1 - Aptitude Test 

The aptitude test evaluates problem-solving, coding skills, and logical reasoning, offering a fair challenge to showcase technical expertise.

Round 2 - One-on-one 

(2 Questions)

  • Q1. How do you handle conflicts in a team project?
  • Ans. 

    I address conflicts in team projects by promoting open communication, active listening, and seeking compromise.

    • Encourage open communication among team members to address conflicts early on

    • Practice active listening to understand all perspectives and concerns

    • Seek compromise and find common ground to resolve conflicts effectively

  • Answered by AI
  • Q2. What is the difference between an interface and an abstract class?
  • Ans. 

    Interface is a contract that defines the methods a class must implement, while an abstract class can have both implemented and abstract methods.

    • Interface can only have abstract methods and cannot have any implementation, while abstract class can have both abstract and implemented methods.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Interfaces are used to achieve multiple inheri...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Research the company, practice technical skills, communicate, showcase problem-solving abilities, stay confident, and demonstrate enthusiasm for the role
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Assignment 

Give 10 questions from node js backend

Round 2 - One-on-one 

(6 Questions)

  • Q1. Ask about angular and node js
  • Q2. What is package.json
  • Ans. 

    package.json is a file used in Node.js projects to manage dependencies, scripts, and metadata.

    • It is a JSON file that contains information about the project, such as name, version, dependencies, and scripts.

    • It is used to manage project dependencies by listing them in the 'dependencies' and 'devDependencies' fields.

    • It allows developers to define scripts for tasks like building, testing, and running the project.

    • Example: {...

  • Answered by AI
  • Q3. What is components in angular,how share data to component
  • Ans. 

    Components in Angular are building blocks of an application. Data can be shared between components using input properties and output events.

    • Components in Angular are reusable, self-contained units of code that define a part of the user interface.

    • Data can be shared to a component using input properties, where data is passed from the parent component to the child component.

    • Data can also be shared from a child component t...

  • Answered by AI
  • Q4. What is === and == ,and wher use === is real time projects
  • Ans. 

    === is strict equality operator, while == is loose equality operator. === is commonly used in real-time projects for accurate comparisons.

    • === is a strict equality operator that checks both value and type of operands

    • == is a loose equality operator that only checks the value of operands

    • === is commonly used in real-time projects to ensure accurate comparisons and prevent unexpected type coercion issues

  • Answered by AI
  • Q5. Write arrow function syntax
  • Ans. 

    Arrow function syntax in JavaScript

    • Arrow functions are concise syntax for writing function expressions in JavaScript

    • They have a shorter syntax compared to traditional function expressions

    • They do not have their own 'this', 'arguments', 'super', or 'new.target' keywords

  • Answered by AI
  • Q6. What is difference between arrow function and anonymous function
  • Ans. 

    Arrow functions are concise syntax for writing function expressions, while anonymous functions do not have a name.

    • Arrow functions have a shorter syntax compared to anonymous functions.

    • Arrow functions do not have their own 'this' keyword, while anonymous functions do.

    • Arrow functions do not have 'arguments' object, while anonymous functions do.

    • Arrow functions are not hoisted, while anonymous functions are hoisted.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare about ur role

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Generally quant based

Round 2 - Technical 

(2 Questions)

  • Q1. What is octa core processor
  • Ans. 

    An octa-core processor is a CPU that has eight cores, allowing it to handle multiple tasks simultaneously for improved performance.

    • An octa-core processor has eight processing cores, which can work together to execute tasks faster and more efficiently.

    • It is commonly found in high-end smartphones, tablets, and computers to provide better multitasking capabilities.

    • Each core can handle its own tasks independently, leading ...

  • Answered by AI
  • Q2. Questions on bit manipulations

Interview Preparation Tips

Interview preparation tips for other job seekers - be confiudent

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Assignment 

Was given task to make login with rest client retrofit2

Round 2 - Technical 

(1 Question)

  • Q1. Basic questions regarding Android
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is jdk, string related questions, basic java oops questions?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was easy basic questions were there and we were asked to write two emails.

Round 2 - Technical 

(2 Questions)

  • Q1. Questions related to projects
  • Q2. QBasic SQL questions

Jeeves ERP Interview FAQs

How many rounds are there in Jeeves ERP Associate Software Engineer interview?
Jeeves ERP interview process usually has 4 rounds. The most common rounds in the Jeeves ERP interview process are Resume Shortlist, Aptitude Test and Case Study.
What are the top questions asked in Jeeves ERP Associate Software Engineer interview?

Some of the top questions asked at the Jeeves ERP Associate Software Engineer interview -

  1. What are joins, syntax, constraints, datatype, about triggers, stored procedure...read more
  2. They will technical 1&2 rounds they will ask based on ur resume and what u have...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Jeeves ERP interview
Campus Placement
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Jeeves ERP Associate Software Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

5.0

Skill development

5.0

Work-Life balance

4.0

Salary & Benefits

4.0

Job Security

4.0

Company culture

5.0

Promotions/Appraisal

5.0

Work Satisfaction

Explore 1 Review and Rating
Senior Software Engineer
9 salaries
unlock blur

₹10.6 L/yr - ₹16.2 L/yr

Principal Software Engineer
7 salaries
unlock blur

₹13 L/yr - ₹23 L/yr

Softwaretest Engineer
7 salaries
unlock blur

₹5.6 L/yr - ₹10 L/yr

Logistics Executive
5 salaries
unlock blur

₹2.7 L/yr - ₹4 L/yr

Service Engineer
5 salaries
unlock blur

₹2 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Jeeves ERP with

SAP

4.2
Compare

Oracle

3.7
Compare

Microsoft Corporation

4.1
Compare

Infor Global Solution

4.1
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