Upload Button Icon Add office photos

Filter interviews by

ERWIN INDIA Software Developer Interview Questions and Answers

Updated 22 Sep 2022

ERWIN INDIA Software Developer Interview Experiences

2 interviews found

I applied via nboard and was interviewed in Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. When java program is save at that time Which file is create.
  • Ans. 

    When a Java program is saved, a file with the same name as the class containing the main method is created.

    • The file extension for Java source code is .java

    • When the Java program is compiled, a bytecode file with the .class extension is created

    • The bytecode file can be executed by the Java Virtual Machine (JVM)

  • Answered by AI
  • Q2. Abstraction in java with real time example.
  • Ans. 

    Abstraction in Java is a way to hide implementation details and only show necessary information.

    • Abstraction is achieved through abstract classes and interfaces.

    • It helps in reducing complexity and improving maintainability.

    • Example: A car dashboard only shows necessary information like speed, fuel level, etc. and hides the implementation details of the engine.

    • Abstraction allows for better code reusability and flexibility

  • Answered by AI
  • Q3. Exception handling.
  • Q4. Final, Finally, Finalize keywords

Interview Preparation Tips

Interview preparation tips for other job seekers - I am a fresher, I loss 14 interviews still now. I have more experience in interviews. The 14 companies are product based companies. In that this is one of the interview.
When started my interview.
I thought, I know java but when I completed my interview, I thought I don't no java.
I didn't tell some answers because I know basics of java. But, I know C language, HTML, CSS. TR didn't ask any question from these languages. Based on the recuritment they ask.
I simply reject. I don't have lack of communication this is also one biggest problem for me.



Prepare well C/java/html/css/javascript/reactjs are any languages deeply not only oops and also remaining concepts.
When you go interview pannel you must do some works.
1. Dressing must be formal.
2. Please ask "May I come in Sir" when you entering the interview pannel.
3. Whatever the answer you speak confident and eyes must be straight. Suppose, if don't no answer you must tell anything related that question.
4. Must keep smile.
5. Use hand guestures while explaining the concept.
6. Before compete the interview. You may be ask your feedback this is optional. It may creates good opinion to the interviewer.
7. Don't put hands on the bench while performing interview.
8. Don't be panic.





Prepare well good luck guys 🤗🤗🤗.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Aug 2022. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Collections hierarchy explanatiion?
  • Ans. 

    Collections hierarchy refers to the organization of data structures in a hierarchical manner.

    • Collections hierarchy is a way of organizing data structures based on their relationships and dependencies.

    • At the top of the hierarchy is the Collection interface, which is the root interface for all collections.

    • The Collection interface is extended by the List, Set, and Queue interfaces, which represent ordered, unordered, and ...

  • Answered by AI
  • Q2. Recursive example and query,stored procedure need to understanding explaination?

Interview Preparation Tips

Interview preparation tips for other job seekers - collections and Io operations and Database

Skills evaluated in this interview

Interview questions from similar companies

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

Nuts and bolts game, to output date in a certain format, one SQL query

Round 2 - Technical 

(2 Questions)

  • Q1. Stacks and Queues
  • Q2. Linked lists, arrays, and many more basic fundamental Dsa questions.
Round 3 - Technical 

(2 Questions)

  • Q1. More about your resume projects.
  • Q2. Puzzles and reasoning is asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Try Puzzles on gfg, knows your projects that you have mentioned in your cv or resume, basic dsa is mostly asked with a focus on dbms.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Data structure and aptitude

Round 2 - Coding Test 

10 mins given for prepare for the problem and after completing the problem (program ) they asked to explain and asked to upgrade the program by reduce time complexity

Round 3 - Technical 

(2 Questions)

  • Q1. Topic given and want to explain
  • Q2. Reverse string without buildin funtion and for loop
  • Ans. 

    Reverse a string without using built-in functions or for loops

    • Use recursion to reverse the string

    • Pass the substring excluding the first character to the recursive function

    • Base case: return the character itself if the length of the string is 1

    • Concatenate the last character of the string with the result of the recursive call

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Introduce your self
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java and Python programming languages

    • Skilled in web development technologies like HTML, CSS, and JavaScript

    • Worked on projects involving database management with SQL

  • Answered by AI
  • Q2. Are you ok with agreement
  • Ans. 

    Yes, I am okay with agreement.

    • I am comfortable with signing agreements related to software development projects.

    • I understand the importance of agreements in protecting both parties involved in a project.

    • I am willing to review and negotiate agreements to ensure they are fair and reasonable.

  • Answered by AI

Interview Preparation Tips

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

I applied via Naukri.com and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Divisibility, LCM, HCF.
Numbers, Decimals, Fractions, Powers.
Profit, Loss.
Simple interest and Compound interest.
Speed, Distance, Time.
Work and wages.
Trains, Boats, Streams-upstream/downstream, Circular track questions.
Cistern and pipes.

Round 2 - Coding Test 

Coding interviews test candidates' technical knowledge, coding ability, problem solving skills, and creativity, typically on a whiteboard.

Round 3 - Assignment 

Choose a topic based on the assignment.
2 Conduct research.
3 Write a thesis statement

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

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Promises in javascript
  • Ans. 

    Promises in JavaScript are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() to handle success and .catch() to handle errors.

  • 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 Naukri.com and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

C,c++ questions and two coding questions. basic mcq

Round 2 - Technical 

(3 Questions)

  • Q1. Treeset, hashset difference
  • Ans. 

    TreeSet and HashSet are both implementations of the Set interface in Java, but they have some key differences.

    • TreeSet is a sorted set that maintains elements in ascending order, while HashSet does not guarantee any specific order.

    • TreeSet uses a Red-Black tree data structure for storage, which allows for efficient retrieval of elements in sorted order.

    • HashSet uses a hash table for storage, which provides constant-time p...

  • Answered by AI
  • Q2. Oops concept, dbms, programming questions
  • Q3. Set and treeset and hashset

Interview Preparation Tips

Topics to prepare for ResMed Software Developer interview:
  • DBMS
  • OOPS
Interview preparation tips for other job seekers - none

Skills evaluated in this interview

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

I applied via campus placement at National Institute of Engineering (NIE) and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - Coding Test 

2 questions, Easy and medium based

Round 2 - Technical 

(1 Question)

  • Q1. Stacks queues and array questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Technical questions on projects
Round 4 - HR 

(1 Question)

  • Q1. How to tackle any uncertain situations? Behavioural 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
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Assignment 

Some questions related to vb.net

Round 2 - Coding Test 

Design page of student and operate crud operations

Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

ERWIN INDIA Interview FAQs

How many rounds are there in ERWIN INDIA Software Developer interview?
ERWIN INDIA interview process usually has 1 rounds. The most common rounds in the ERWIN INDIA interview process are Technical.
How to prepare for ERWIN INDIA Software Developer 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 ERWIN INDIA. The most common topics and skills that interviewers at ERWIN INDIA expect are Algorithms, C++, Core Java, Data Structures and Design Patterns.
What are the top questions asked in ERWIN INDIA Software Developer interview?

Some of the top questions asked at the ERWIN INDIA Software Developer interview -

  1. When java program is save at that time Which file is creat...read more
  2. Abstraction in java with real time exampl...read more
  3. collections hierarchy explanatii...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 ERWIN INDIA interviews
Job Portal
100%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
ERWIN INDIA Software Developer Salary
based on 5 salaries
₹6.4 L/yr - ₹9.2 L/yr
14% more than the average Software Developer Salary in India
View more details

ERWIN INDIA Software Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

3.0

Skill development

3.0

Work-Life balance

3.0

Salary & Benefits

4.0

Job Security

4.0

Company culture

3.0

Promotions/Appraisal

3.0

Work Satisfaction

Explore 1 Review and Rating
Software Engineer
43 salaries
unlock blur

₹4 L/yr - ₹16.8 L/yr

Senior Software Engineer
27 salaries
unlock blur

₹5.4 L/yr - ₹19 L/yr

Associate Software Engineer
9 salaries
unlock blur

₹3.8 L/yr - ₹9 L/yr

Software Development Engineer
9 salaries
unlock blur

₹3.7 L/yr - ₹10.1 L/yr

Test Engineer
7 salaries
unlock blur

₹4 L/yr - ₹8 L/yr

Explore more salaries
Compare ERWIN INDIA with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
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