Upload Button Icon Add office photos
Engaged Employer

i

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

Indegene Verified Tick

Compare button icon Compare button icon Compare
3.4

based on 1.1k Reviews

Filter interviews by

Indegene Junior Software Developer Interview Questions and Answers

Updated 12 Apr 2024

Indegene Junior Software Developer Interview Experiences

2 interviews found

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Dec 2022. There were 2 interview rounds.

Round 1 - Assignment 

Mostly sql ,html questions with one sql coding question

Round 2 - Technical 

(2 Questions)

  • Q1. Basic html definations like html element,html tag
  • Q2. How to write comments in javascript
  • Ans. 

    Comments in JavaScript are used to explain code and make it more readable.

    • Single-line comments start with //

    • Multi-line comments start with /* and end with */

    • Comments should be concise and relevant to the code

    • Avoid commenting obvious code

    • Use comments to explain complex logic or algorithms

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just study basic html definitions and basic js. some managerial questions will also be asked and he asked me one quiz type question too which was honestly incomplete but I couldn't say it to him.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Easy questions according to the role.

Round 2 - One-on-one 

(1 Question)

  • Q1. Interview was for 30 min
Round 3 - HR 

(1 Question)

  • Q1. Basic HR Questions like Introduce yourself etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Study according to the job requirements.

Junior Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Given n coins for two players playing a game. Each player picks c ... read more
asked in Pisolv Tech
Q2. Did You Know what is golang and where did You uses that? Why You ... read more
Q3. int x:4; what does it mean ? a) x is a four digit number. b)x is ... read more
Q4. what is a lint? a) Analyzing tool. b)compiler. c)debugger. d)inte ... read more
asked in Infogain
Q5. What is deadlock .what are the conditions of deadlock?

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a software developer with 5 years of experience in developing web applications using Java, JavaScript, and SQL.

    • 5 years of experience in software development

    • Proficient in Java, JavaScript, and SQL

    • Developed web applications for various clients

    • Strong problem-solving skills

    • Excellent team player

  • Answered by AI
  • Q2. What is your roles and responsibilities
  • Ans. 

    As a Software Developer, my roles and responsibilities include designing, developing, testing, and maintaining software applications.

    • Designing and developing software applications based on client requirements

    • Testing and debugging code to ensure functionality and performance

    • Collaborating with team members to brainstorm and implement new features

    • Maintaining and updating existing software applications

    • Staying up-to-date wi

  • Answered by AI
  • Q3. Explain about bug lifecycle
  • Ans. 

    Bug lifecycle involves identification, reporting, fixing, retesting, and closing of software bugs.

    • Identification: Bug is identified by testers or users through testing or real-world usage.

    • Reporting: Bug is reported to developers with detailed information like steps to reproduce.

    • Fixing: Developers analyze and fix the bug in the code.

    • Retesting: Testers verify the fix to ensure the bug is resolved.

    • Closing: Bug is closed o

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Case study with the topic provided
  • Q2. Questions on the resume

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
2-4 weeks
Result
No response

I applied via Newspaper Ad and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was good and easy

Round 2 - Coding Test 

Questions were medium

Round 3 - HR 

(2 Questions)

  • Q1. Why u choose this company?
  • Q2. Brief introduction
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What fifo? diff btwn fifo and lifo
  • Ans. 

    FIFO stands for First In, First Out. LIFO stands for Last In, First Out.

    • FIFO is a method for organizing and manipulating a data buffer, where the first element added is the first to be removed.

    • LIFO is a method where the last element added is the first to be removed.

    • FIFO is like a queue, while LIFO is like a stack.

    • Example: In a FIFO queue, if elements A, B, and C are added in that order, they will be removed in the same...

  • Answered by AI

Skills evaluated in this interview

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 - Technical 

(2 Questions)

  • Q1. Uikit explaination
  • Q2. Model classes with uikit
  • Ans. 

    Model classes in UIKit are used to represent data in an application's user interface.

    • Model classes in UIKit typically subclass NSObject and are used to store and manage data for views.

    • They can include properties to represent different data fields, methods to manipulate the data, and sometimes protocols for delegation.

    • For example, a model class for a user profile in a social media app might have properties like username...

  • Answered by AI
Round 2 - Coding Test 

Project related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Js questions and 2 coding questions
  • Q2. Questions on angular, html and css
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is a bloom filter in hbase ?
  • Ans. 

    A bloom filter in HBase is a data structure used to test whether a given element is a member of a set.

    • Bloom filters are used to reduce the number of disk reads in HBase by quickly determining if a row may exist in a table.

    • They are implemented as a compact array of bits, with multiple hash functions used to map elements to bits.

    • Bloom filters can produce false positives but not false negatives, making them useful for pre...

  • Answered by AI
  • Q2. Write a query to remove duplicate rows in pyspark based on primary key.
  • Ans. 

    Use dropDuplicates() function in pyspark to remove duplicate rows based on primary key.

    • Use dropDuplicates() function on the DataFrame with the primary key column specified.

    • Specify the subset parameter in dropDuplicates() to specify the primary key column.

    • Example: df.dropDuplicates(['primary_key_column'])

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Revise pyspark and sql really well

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. All questions based on your resume and recent project you have done including OOPS concept, MVC , Design patterns, SOLID principles
Round 2 - Behavioral 

(1 Question)

  • Q1. Here test the communications, problem solving skills, Decision making skill, Situation handle, conflict management
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Typical questions about your experience, technical background and working knowledge relevant to their technical stack.
  • Q2. Tell me about your experience in network security.
  • Q3. Tell me about your experience in Java and Springboot.

Interview Preparation Tips

Interview preparation tips for other job seekers - There was no formal technical assesment but the technical architect will ask about experience, logic based and system based questions.

Indegene Interview FAQs

How many rounds are there in Indegene Junior Software Developer interview?
Indegene interview process usually has 3 rounds. The most common rounds in the Indegene interview process are Resume Shortlist, Assignment and Technical.
What are the top questions asked in Indegene Junior Software Developer interview?

Some of the top questions asked at the Indegene Junior Software Developer interview -

  1. How to write comments in javascr...read more
  2. Basic html definations like html element,html ...read more
  3. Interview was for 30 ...read more

Tell us how to improve this page.

Indegene Junior Software Developer Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more
Indegene Junior Software Developer Salary
based on 20 salaries
₹5.2 L/yr - ₹6.5 L/yr
41% more than the average Junior Software Developer Salary in India
View more details

Indegene Junior Software Developer Reviews and Ratings

based on 2 reviews

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 2 Reviews and Ratings
Web Developer
459 salaries
unlock blur

₹2.7 L/yr - ₹10 L/yr

Project Associate
230 salaries
unlock blur

₹5.1 L/yr - ₹10.6 L/yr

Software Engineer
221 salaries
unlock blur

₹3.4 L/yr - ₹14.8 L/yr

Senior Project Associate
159 salaries
unlock blur

₹7 L/yr - ₹16.3 L/yr

Associate Manager
157 salaries
unlock blur

₹11 L/yr - ₹35 L/yr

Explore more salaries
Compare Indegene with

Cognizant

3.8
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

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