Upload Button Icon Add office photos

Filter interviews by

EDCIL Software Developer Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Software Developer Interview Questions & Answers

Chegg user image Yashwant Panchal

posted on 21 Nov 2024

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

Question on Linked list. array and string manipulation.

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Coding Test 

Html,Css, javascript,php, front-end etc

Interview experience
4
Good
Difficulty level
Easy
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Coding ninjas and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - Assignment 

Pizza restaurant website

Round 2 - Technical 

(2 Questions)

  • Q1. Javascript related questions
  • Q2. React fundamentals and redux and saga function
Round 3 - One-on-one 

(1 Question)

  • Q1. Round with CEO for culture fit
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is OOPS concepts.
  • Ans. 

    OOPS concepts refer to Object-Oriented Programming principles like inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

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

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation detail

  • Answered by AI
  • Q2. What is PDO and uses in PHP.
  • Ans. 

    PDO stands for PHP Data Objects, a database access layer providing a uniform method of access to multiple databases.

    • PDO is a PHP extension that provides a data-access abstraction layer.

    • It supports multiple database systems like MySQL, PostgreSQL, SQLite, etc.

    • PDO helps prevent SQL injection attacks by using prepared statements.

    • It allows for error handling and supports transactions.

    • Example: $pdo = new PDO('mysql:host=loc...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. No any interview
  • Q2. It's aptitude test only

Interview Preparation Tips

Interview preparation tips for other job seekers - .Be prepared
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Basic coding and MySQL queries. Like Types of join, having and where difference etc.

Round 2 - HR 

(1 Question)

  • Q1. Salary Discussion.

I applied via campus placement at Netaji Subhas Institute of Technology (NSIT) and was interviewed in Aug 2022. 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 - Coding Test 

2 coding questions with aptitude question(logical aptitude and quantitative aptitude)

Round 3 - Coding Test 

This was a Machine Coding. We need to design a system and then they will check our design by running test cases. It was 2.5 hrs long.

Round 4 - One-on-one 

(2 Questions)

  • Q1. Basic questions on computer core subjects(Deadlock, Networking, Tcp connection, process scheduling etc, DNS Lookup etc)
  • Q2. Questions on React, Node and the libraries which I used in my project(My project was a full stack project)

Interview Preparation Tips

Topics to prepare for BrightCHAMPS Software Developer interview:
  • Computer Networking
  • Operating Systems
  • Database Management
  • React.Js
  • Data Structures
Interview preparation tips for other job seekers - Prepare your resume well and be prepared for project based questions. ( They will deep dive in that subject). Besides that have a basic understanding of core cs subjects and common dsa problems.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 1. Coding best practices 2. Writing basic code snippets
Round 2 - Technical 

(1 Question)

  • Q1. 1. Current projects and challenges
Round 3 - Technical 

(1 Question)

  • Q1. 1. Release management

I applied via Approached by Company and was interviewed in Mar 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test is easy.

Round 2 - Assignment 

Really tuff

Round 3 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Ans. 

    I am open to discussing salary based on the responsibilities and opportunities offered by the position.

    • I am flexible and willing to negotiate based on the overall compensation package.

    • I am more interested in the growth potential and learning opportunities than a specific salary number.

    • I would like to be compensated fairly for my skills and experience in the industry.

    • I am open to discussing salary range during the inter

  • Answered by AI
  • Q2. What is your family background?
  • Ans. 

    My family background is diverse and includes individuals from various professions and cultural backgrounds.

    • My father is a doctor and my mother is a teacher.

    • I have two siblings, one is an engineer and the other is a lawyer.

    • We have relatives who are artists, entrepreneurs, and scientists.

    • Our family gatherings are always filled with interesting conversations and different perspectives.

  • Answered by AI
  • Q3. Where do you see yourself in 5 years?
  • Ans. 

    In 5 years, I see myself as a senior software developer leading a team and working on complex projects.

    • Leading a team of developers

    • Working on complex projects

    • Continuously learning and improving my skills

    • Contributing to the growth and success of the company

  • Answered by AI
  • Q4. Why should we hire you?
  • Ans. 

    I have a strong technical background and a passion for software development.

    • I have a solid understanding of programming languages and software development principles.

    • I have experience working on various software projects, including [example project].

    • I am a quick learner and adapt easily to new technologies and frameworks.

    • I am a team player and have excellent communication skills, which are essential for collaborating w...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You can crack this but work hard

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

  • Q1. Path Queries

    You are given a weighted, undirected graph with ‘V’ vertices numbered from 1 to ‘V’ and ‘E’ bidirectional edges.

    You have to answer ‘Q’ queries. Every query has two integers, ‘u’, ‘v’, repre...

  • Ans. Dijkstra Algorithm

    We will run Dijkstra Algorithm for all vertices in this approach and store the minimum distance in an array. Then we can answer the queries using this distance array.
     

    Dijkstra Algorithm is one of the most popular algorithms in graph theory. A single-source shortest path algorithm gives the shortest path length to all vertices from a given vertex known as the source vertex. It is a greedy algorith...

  • Answered Anonymously
  • Q2.  Merge Sort

    Given a sequence of numbers ‘ARR’. Your task is to return a sorted sequence of ‘ARR’ in non-descending order with help of the merge sort algorithm.

    Example :

    Merge Sort Algorithm -
    
    Merge so...
  • Ans. Recursion

    The basic idea is that we divide the given ‘ARR’ into two-part call them ‘leftHalves’ and ‘rightHalves’ and call the same function again with both the parts. In the end, we will get sorted ‘leftHaves’ and sorted ‘righthalves’ which we merge both of them and return a merged sorted ‘ARR’.

    We implement this approach with a divide and conquer strategy.

     

    Here is the algorithm : 

     

    1. Divide ‘ARR’ into two-p...
  • Answered Anonymously
  • Q3. Rat In a Maze: All Paths

    You are given a 'N' * 'N' maze with a rat placed at 'MAZE[0][0]'. Find and print all paths that rat can follow to reach its destination i.e. 'MAZE['...

  • Ans. Backtracking Approach

    Initialize, all the cells of the solution matrix used to print the path matrix to 0. First, you cannot make use of the existing maze to print the solution maze as you have to distinguish b/w 1 of maze or 1 of ‘SOLUTION matrix.

     

    Form a recursive function, which will follow a path and check if the path reaches the destination or not. If the path does not reach the destination then backtrack and t...

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dronacharya College of Engineering. I applied for the job as SDE - 1 in NoidaEligibility criteriaNo criteriaLido Learning interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming etcTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Practice Atleast 250 Questions
Tip 2 : Do atleast 2 projects
 

Application resume tips for other job seekers

Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Tell us how to improve this page.

Assistant Manager
25 salaries
unlock blur

₹12 L/yr - ₹14 L/yr

Deputy Manager
13 salaries
unlock blur

₹15.5 L/yr - ₹20 L/yr

Finance Executive
7 salaries
unlock blur

₹3 L/yr - ₹4.2 L/yr

Executive
7 salaries
unlock blur

₹10 L/yr - ₹12 L/yr

Management Trainee
6 salaries
unlock blur

₹12 L/yr - ₹13 L/yr

Explore more salaries
Compare EDCIL with

National Institute of Open Schooling

3.5
Compare

Indira Gandhi National Open University

4.2
Compare

NATIONAL SKILL DEVELOPMENT CORPORATION

3.5
Compare

NIELIT

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