Upload Button Icon Add office photos
Engaged Employer

i

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

EGDK Verified Tick

Compare button icon Compare button icon Compare
4.1

based on 6 Reviews

Filter interviews by

EGDK Software Developer Interview Questions and Answers

Updated 23 Sep 2024

EGDK Software Developer Interview Experiences

3 interviews found

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

English,logical resoning

Round 2 - Coding Test 

Coding ques related to string and array

Round 3 - Technical 

(2 Questions)

  • Q1. OPPS CONCEPT AND BASIC OF PROGRAMMING
  • Q2. EXPLAIN FLOW CHART AND BASIC OF PROGRAMMING
  • Ans. 

    Flow chart is a visual representation of a process or algorithm, while programming involves writing instructions for a computer to execute.

    • Flow chart is a diagram that represents a workflow or process visually.

    • Programming involves writing code in a specific language to create software or applications.

    • Flow chart can help in planning and understanding the logic of a program before writing actual code.

    • Programming language...

  • Answered by AI

Software Developer Interview Questions & Answers

user image Athmiya Gowda

posted on 23 Sep 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

30 questions 30 minutes

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Walk-in and was interviewed in Mar 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Introduction, Basics of OOPS
Round 2 - Aptitude Test 

30 MCQ aptitude qsns

Round 3 - Technical 

(1 Question)

  • Q1. Deep dwelling into OOPS concept. Qsns regarding pillars of oops, and 2-3 coding qsns to write on a paper

Interview Preparation Tips

Topics to prepare for EGDK Software Developer interview:
  • Java
  • C++

Software Developer Jobs at EGDK

View all

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

They discussed some easy questions on Node JS and Dp and heap , binary search

Round 2 - Technical 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. What is multithreading and explain its usecases.
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently, improving performance and responsiveness.

    • Multithreading allows for parallel execution of tasks, improving performance by utilizing multiple CPU cores.

    • It is commonly used in applications that require handling multiple tasks simultaneously, such as web servers, video games, and data processing.

    • Multithreading can help improve responsiveness i...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare cs fundamentals as well.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Oops, basic ,SQL ,ado
Round 2 - Coding Test 

Curd operation with SQL connectivity

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

I applied via Naukri.com and was interviewed in Jul 2023. There were 3 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 

Arthamatic and reasoning

Round 3 - Technical 

(2 Questions)

  • Q1. Bio data and some basic information
  • Q2. Any kind information I will give my efforts
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Jun 2023. There were 3 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 - Coding Test 

Ms office,Core Java , Tally , C,

Round 3 - Group Discussion 

In my Opinion,view , If you ask me, As far as I can see/I am Concerned , It seems to me that , I think /feel/reckon/ belive , If you want my option , What we have to decide

Interview Preparation Tips

Interview preparation tips for other job seekers - Upgrade the skills

I applied via campus placement at CDAC, Noida and was interviewed in Jan 2022. There were 4 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 - Coding Test 

Best way to prefer java, core java and most imp spring boot because many of companies required spring boot now a days

Round 3 - Technical 

(7 Questions)

  • Q1. What is java is the basic question for everyone
  • Q2. What is difference between path and classpath variables
  • Ans. 

    Path variable is used to locate executable files while classpath variable is used to locate Java classes.

    • Path variable is used by the operating system to locate executable files.

    • Classpath variable is used by Java to locate classes and resources.

    • Path variable is system-specific while classpath variable is Java-specific.

    • Path variable is set by the user while classpath variable is set by the developer.

    • Example of path vari...

  • Answered by AI
  • Q3. What is enum in java
  • Ans. 

    Enum is a special data type in Java used to define a set of constants.

    • Enums are used to represent a fixed number of values that do not change.

    • They are declared using the enum keyword.

    • Each enum constant is an object of the enum type.

    • Enums can have constructors, methods, and fields.

    • Example: enum Color { RED, GREEN, BLUE }

    • Enums can also have values associated with them, like Color.RED(255, 0, 0).

  • Answered by AI
  • Q4. What is 2 phase commit
  • Ans. 

    2 phase commit is a protocol used to ensure distributed transactions are either committed or rolled back.

    • Used in distributed systems where multiple databases are involved in a transaction

    • Ensures all databases either commit or rollback the transaction

    • Involves a coordinator and multiple participants

    • Coordinator sends a prepare message to participants, who respond with either commit or abort

    • If all participants respond with...

  • Answered by AI
  • Q5. They can ask questions on your project
  • Q6. Is java completely object oriented?
  • Ans. 

    Yes, Java is completely object oriented.

    • Java is designed to be completely object oriented.

    • All code in Java is written inside classes and objects.

    • Java supports encapsulation, inheritance, and polymorphism.

    • Java does have some non-object oriented features like primitive data types.

    • However, even these can be treated as objects using wrapper classes.

  • Answered by AI
  • Q7. What is exception in java?
  • Ans. 

    Exception is an event that occurs during the execution of a program and disrupts the normal flow of instructions.

    • Exceptions are objects that are thrown at runtime when an abnormal condition occurs

    • Java provides a set of predefined exceptions that can be used to handle errors

    • Exceptions can be caught and handled using try-catch blocks

    • Unchecked exceptions are those that are not checked at compile-time, while checked except

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. No specific questions they can ask about company only and will talk about package

Interview Preparation Tips

Interview preparation tips for other job seekers - Do your best, just be confident, in corporate industry we have to be confident.

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Oops mvc .net sql
  • Q2. .net frame work
  • Q3. Solid priciples

Interview Preparation Tips

Interview preparation tips for other job seekers - Good interview experience

Interview Questionnaire 

3 Questions

  • Q1. Tr1- difference between switch case and if else, write the code for sorting
  • Ans. 

    Switch case is used for multiple conditions while if else is for binary conditions. Sorting can be done using various algorithms.

    • Switch case is faster than if else for multiple conditions

    • If else is more readable for binary conditions

    • Sorting can be done using bubble sort, insertion sort, quick sort, etc.

    • Example code for bubble sort: for(i=0;iarr[j+1]){swap(&arr[j],&arr[j+1]);}}}

  • Answered by AI
  • Q2. Tr2-difference between compiler and interpreter, Solve a challange on their own coding platform with proper output
  • Ans. 

    Difference between compiler and interpreter with a coding challenge

    • Compiler translates the entire code into machine language before execution while interpreter translates line by line during execution

    • Compiler generates an executable file while interpreter does not

    • Compiler is faster but debugging is harder while interpreter is slower but debugging is easier

    • Coding challenge: Write a program to find the sum of two numbers

  • Answered by AI
  • Q3. Oops concept

EGDK Interview FAQs

How many rounds are there in EGDK Software Developer interview?
EGDK interview process usually has 2-3 rounds. The most common rounds in the EGDK interview process are Technical, Aptitude Test and Resume Shortlist.
How to prepare for EGDK 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 EGDK. The most common topics and skills that interviewers at EGDK expect are C#, .Net, .NET, Angular and TDD.
What are the top questions asked in EGDK Software Developer interview?

Some of the top questions asked at the EGDK Software Developer interview -

  1. EXPLAIN FLOW CHART AND BASIC OF PROGRAMM...read more
  2. Deep dwelling into OOPS concept. Qsns regarding pillars of oops, and 2-3 coding...read more
  3. Introduction, Basics of O...read more

Tell us how to improve this page.

EGDK Software Developer Interview Process

based on 5 interviews

Interview experience

2.8
  
Poor
View more
EGDK Software Developer Salary
based on 10 salaries
₹6.7 L/yr - ₹21 L/yr
64% more than the average Software Developer Salary in India
View more details

EGDK Software Developer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

3.0

Salary

3.0

Job security

3.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Software Developer

Mangaluru

4-7 Yrs

Not Disclosed

Explore more jobs
Software Developer
10 salaries
unlock blur

₹6.7 L/yr - ₹21 L/yr

Backend Developer
5 salaries
unlock blur

₹7.8 L/yr - ₹12.8 L/yr

Procurement Associate
5 salaries
unlock blur

₹5.5 L/yr - ₹6.4 L/yr

Team Manager
4 salaries
unlock blur

₹25 L/yr - ₹25 L/yr

Senior Software Developer
4 salaries
unlock blur

₹18 L/yr - ₹21 L/yr

Explore more salaries
Compare EGDK 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