Upload Button Icon Add office photos

Adda 247

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Adda 247 Software Developer Interview Questions and Answers

Updated 14 Feb 2025

Adda 247 Software Developer Interview Experiences

2 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-

I was interviewed in Jan 2025.

Round 1 - Coding Test 

Data structures, particularly strings, play a crucial role in problem-solving.

Round 2 - HR 

(4 Questions)

  • Q1. Please tell me about yourself.
  • Ans. First of all , thank you! For this opportunity to introduce my self. I am Akash kumar kushwaha, I was born in bihar 2001 , but I live in ghaziabad now. I m currently pursuing my b.tech from IMS engineering college ghaziabad. And I completed my 10th and 12th from co-operative uchh vidyalaya jagdishpur with score 60% in 10th and 65% in 12th . And my hobby is playing cricket and travelling.
  • Answered by AKASH KUMAR KUSHWAHA
  • Q2. Why should we hire you?
  • Ans. 

    I have a strong technical background, excellent problem-solving skills, and a passion for software development.

    • I have a Bachelor's degree in Computer Science and 5 years of experience in software development.

    • I am proficient in multiple programming languages such as Java, Python, and JavaScript.

    • I have a track record of delivering high-quality code on time and within budget.

    • I am a quick learner and always eager to stay u...

  • Answered by AI
  • Q3. What are your strength and weakness .
  • Ans. 

    Strength: Problem-solving skills, Weakness: Impatience

    • Strength: Strong problem-solving skills demonstrated through successful projects

    • Weakness: Impatience when tasks take longer than expected, working on improving patience through time management techniques

  • Answered by AI
  • Q4. Why did you choose career in software developer.
  • Ans. 

    Passion for problem-solving and creating innovative solutions drove me to pursue a career in software development.

    • Fascination with technology and its potential to improve lives

    • Enjoyment of logical thinking and coding challenges

    • Desire to constantly learn and adapt in a fast-paced industry

    • Previous experience in programming projects or internships

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. What is your area of expertise in programming languages?
  • Ans. 

    My area of expertise in programming languages is in web development, specifically with JavaScript, HTML, and CSS.

    • Proficient in JavaScript for client-side scripting and server-side development with Node.js

    • Experienced in building responsive and interactive web applications using HTML and CSS

    • Familiar with popular frameworks and libraries like React, Angular, and Bootstrap

  • Answered by AI
  • Q2. What is JavaScript, and what are its benefits?
  • Ans. 

    JavaScript is a high-level, interpreted programming language used for creating interactive websites.

    • JavaScript is commonly used for client-side web development.

    • It allows for dynamic content updates without reloading the page.

    • JavaScript can be used to create interactive elements like forms, animations, and games.

    • It is supported by all major web browsers.

    • JavaScript can also be used for server-side development with Node.j

  • Answered by AI

I applied via Referral and was interviewed in Nov 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What is latest technology you have worked on
  • Ans. 

    I have worked on React Native for mobile app development.

    • Developed a mobile app for a client using React Native

    • Used Redux for state management

    • Integrated with Firebase for real-time database and authentication

    • Implemented push notifications using Firebase Cloud Messaging

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Why you want to join us

Interview Preparation Tips

Interview preparation tips for other job seekers - Be true to what you know and answer with good confidence

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 Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn and was interviewed in Feb 2023. There were 6 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Data structures
Round 3 - Technical 

(1 Question)

  • Q1. System Design fundamentals
Round 4 - Technical 

(1 Question)

  • Q1. System Design questions
Round 5 - Behavioral 

(1 Question)

  • Q1. What do you think about the negative news going around the company
Round 6 - HR 

(1 Question)

  • Q1. Why join this company

Interview Preparation Tips

Interview preparation tips for other job seekers - They took 5 rounds of interview. 3 of them were technical and had easy to moderate level of questions. Rest 2 were more of HR rounds.
After taking 5 rounds, they have the audacity of not even calling back, picking up the calls or providing us with any information. If you are not interested in taking the candidate then why waste their time?

Funniest part is that they are fully aware of what a rubbish organization it is. In the later rounds they talked about cost cutting, negative news around the company, and employee complaints for work life balance. However, they are great at gaslighting as well because they make these sound like employee problems not employer problems.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain about Android lifecycle
  • Ans. 

    Android lifecycle refers to the series of states that an activity or fragment goes through from creation to destruction.

    • Android lifecycle includes states like onCreate, onStart, onResume, onPause, onStop, onDestroy, etc.

    • Activities and fragments transition between these states based on user interactions and system events.

    • Understanding Android lifecycle is crucial for managing resources, saving state, and handling config...

  • Answered by AI
  • Q2. Explain about fragment lifecycle
  • Ans. 

    Fragment lifecycle refers to the series of events that occur in the lifespan of a fragment in an Android app.

    • Fragments go through various states like created, started, resumed, paused, stopped, and destroyed.

    • Fragment lifecycle methods include onCreate(), onCreateView(), onResume(), onPause(), onStop(), onDestroy(), etc.

    • Fragment lifecycle is closely tied to the hosting activity's lifecycle.

    • Understanding fragment lifecyc...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Look into basics

Skills evaluated in this interview

I was interviewed in Aug 2022.

Round 1 - Coding Test 

2 hrs duration with 2 easy level dsa questions and 15 around mcqs based on core cs concepts.

Round 2 - Technical 

(2 Questions)

  • Q1. Implement stack using linked list.
  • Ans. 

    Implementing stack using linked list

    • Create a Node class with data and next pointer

    • Create a Stack class with top pointer

    • Implement push() method to add element to top of stack

    • Implement pop() method to remove element from top of stack

    • Implement peek() method to return top element without removing it

  • Answered by AI
  • Q2. Print first duplicate value in a string.
  • Ans. 

    Find the first duplicate value in an array of strings.

    • Create a hash table to store the frequency of each string.

    • Iterate through the array and check if the string already exists in the hash table.

    • If it does, return the string. If not, add it to the hash table.

    • If no duplicates are found, return null or an appropriate message.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Revise basic dsa and cs core concepts.
Can do Blind 75 for practice.

Skills evaluated in this interview

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

Simple coding questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Simple coding questions
  • Q2. Whats your Name

Interview Preparation Tips

Interview preparation tips for other job seekers - Grab It
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Talk about your projects
  • Q2. Some Node JS question
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Mother vertex and connected city

Interview Preparation Tips

Interview preparation tips for other job seekers - keep practicing DSA
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Asking the dp and tree and other

Round 2 - One-on-one 

(1 Question)

  • Q1. Asking the project based question and
Round 3 - HR 

(1 Question)

  • Q1. Some question asking base on cultural base and resume based
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

Contribute & help others!
anonymous
You can choose to be anonymous

Adda 247 Interview FAQs

How many rounds are there in Adda 247 Software Developer interview?
Adda 247 interview process usually has 2-3 rounds. The most common rounds in the Adda 247 interview process are Technical, HR and Coding Test.
What are the top questions asked in Adda 247 Software Developer interview?

Some of the top questions asked at the Adda 247 Software Developer interview -

  1. What is latest technology you have worked...read more
  2. What is your area of expertise in programming languag...read more
  3. What is JavaScript, and what are its benefi...read more

Recently Viewed

INTERVIEWS

Arcon TechSolutions

No Interviews

DESIGNATION

SALARIES

Artech Infosystems

SALARIES

Artech Infosystems

INTERVIEWS

Mentorsity

No Interviews

INTERVIEWS

Artech Infosystems

No Interviews

INTERVIEWS

Artech Infosystems

No Interviews

SALARIES

Arcon TechSolutions

INTERVIEWS

Artech Infosystems

No Interviews

LIST OF COMPANIES

Mentorsity

Locations

Tell us how to improve this page.

Adda 247 Software Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Adda 247 Software Developer Salary
based on 18 salaries
₹5 L/yr - ₹14.5 L/yr
23% more than the average Software Developer Salary in India
View more details

Adda 247 Software Developer Reviews and Ratings

based on 8 reviews

3.3/5

Rating in categories

3.5

Skill development

3.7

Work-life balance

2.8

Salary

3.2

Job security

3.0

Company culture

3.0

Promotions

3.5

Work satisfaction

Explore 8 Reviews and Ratings
Team Lead
40 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Manager
30 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Content Writer
29 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Tele Sales Executive
25 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
18 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Adda 247 with

Unacademy

3.0
Compare

BYJU'S

3.1
Compare

upGrad

3.7
Compare

Toppr

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