Upload Button Icon Add office photos

Filter interviews by

Ang India Software Developer Interview Questions and Answers

Updated 8 Feb 2022

Ang India Software Developer Interview Experiences

1 interview found

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 - Case Study 

B.tech

Interview Preparation Tips

Interview preparation tips for other job seekers - Information technology and basics of java

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. C,c++ questions like oops
Round 2 - Coding Test 

Networking and linux internals

Interview Preparation Tips

Interview preparation tips for other job seekers - easy to crack the interview, just be mindful

I appeared for an interview before Jan 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 120 Minutes
Round difficulty - Hard

This round had 3 preety good questions to be solved under 2 hours . The first question was from Graphs and DSU , the second question was related to DP and the third one was from Recursion.

  • Q1. 

    Most Stones Removed with Same Row or Column

    On a 2-D plane, there are ‘N’ stones placed at some integer coordinate points. Each coordinate point can have at most one stone. A stone can be removed if it sh...

  • Ans. 

    Given a 2-D plane with stones at integer coordinate points, find the maximum number of stones that can be removed by sharing the same row or column.

    • Iterate through the stones and create a graph where stones in the same row or column are connected.

    • Use depth-first search (DFS) to find connected components in the graph.

    • The maximum number of stones that can be removed is the total number of stones minus the number of conne

  • Answered by AI
  • Q2. 

    Gold Mine Problem Statement

    You are provided with a gold mine, represented as a 2-dimensional matrix of size N x M with N rows and M columns. Each cell in this matrix contains a positive integer represent...

  • Ans. 

    The task is to determine the maximum amount of gold a miner can collect by moving in allowed directions in a gold mine represented as a 2D matrix.

    • Create a 2D DP array to store the maximum gold collected at each cell

    • Iterate through the matrix from left to right and update the DP array based on the allowed directions

    • Return the maximum value in the last column of the DP array as the final result

  • Answered by AI
  • Q3. 

    All Possible Balanced Parentheses Problem Statement

    Given a positive integer N, generate all possible sequences of balanced parentheses using N pairs of parentheses.

    A sequence of brackets is called bala...

  • Ans. 

    Generate all possible sequences of balanced parentheses using N pairs of parentheses.

    • Use backtracking to generate all possible combinations of balanced parentheses.

    • Keep track of the number of opening and closing parentheses used.

    • Add opening parentheses if there are remaining, and add closing parentheses only if there are more opening parentheses than closing.

    • Recursively generate all valid combinations.

    • Return the list o

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had 2 questions from DSA. Both the questions were preety straightforward and were asked to check my implementation skills and how well do I handle Edge Cases for tricky problems.

  • Q1. 

    Stack using Two Queues Problem Statement

    Develop a Stack Data Structure to store integer values using two Queues internally.

    Your stack implementation should provide these public functions:

    Explanation:

    ...
  • Ans. 

    Implement a stack using two queues to store integer values.

    • Use two queues to simulate stack operations: push elements to one queue, then move all elements to the other queue to simulate pop and top operations.

    • Maintain the size of the stack and check for empty stack using the size of the queues.

    • Handle edge cases such as popping or getting top element from an empty stack.

    • Ensure the implementation follows the specified pu...

  • Answered by AI
  • Q2. 

    Rotate Matrix by 90 Degrees Problem Statement

    Given a square matrix 'MATRIX' of non-negative integers, rotate the matrix by 90 degrees in an anti-clockwise direction using only constant extra space.

    Inpu...

  • Ans. 

    Rotate a square matrix by 90 degrees in an anti-clockwise direction using constant extra space.

    • Iterate through each layer of the matrix and swap elements in groups of 4

    • Transpose the matrix and then reverse each row to achieve the rotation

    • Ensure to handle edge cases like odd-sized matrices

  • Answered by AI
Round 3 - Video Call 

(4 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round also had 2 questions related to DSA where I was first expected to explain my approaches and then discuss the time and space complexities of my solution. After that , I was asked some core concepts related to OOPS and OS.

  • Q1. 

    Triplets with Given Sum

    Given an array ARR consisting of N integers, find all distinct triplets in the array that add up to a given number K.

    Example:

    Input:
    T = 2
    N = 5
    ARR = [1, 2, 3, 4, 5]
    K = 9
    N = 4
    ...
  • Ans. 

    Find all distinct triplets in an array that add up to a given number.

    • Use three nested loops to iterate through all possible triplets.

    • Sort the array first to easily skip duplicates.

    • Use two-pointer technique to find the remaining element for each triplet.

    • Handle edge cases like empty list or no triplet summing up to K.

  • Answered by AI
  • Q2. 

    Trapping Rain Water Problem Statement

    You are given a long type array/list ARR of size N, representing an elevation map. The value ARR[i] denotes the elevation of the ith bar. Your task is to determine th...

  • Ans. 

    Calculate the total amount of rainwater that can be trapped between given elevations in an array.

    • Iterate through the array and calculate the maximum height on the left and right of each bar.

    • Calculate the amount of water that can be trapped at each bar by taking the minimum of the maximum heights on the left and right.

    • Sum up the trapped water at each bar to get the total trapped water for the entire array.

  • Answered by AI
  • Q3. What is the Diamond Problem in C++ and how can it be resolved?
  • Ans. 

    Diamond Problem is a multiple inheritance issue in C++ where a class inherits from two classes that have a common base class.

    • Diamond Problem occurs when a class inherits from two classes that have a common base class, leading to ambiguity in accessing members.

    • It can be resolved in C++ using virtual inheritance, where the common base class is inherited virtually to avoid duplicate copies of base class members.

    • Example: c...

  • Answered by AI
  • Q4. What is thrashing in operating systems?
  • Ans. 

    Thrashing in operating systems occurs when the system is spending more time swapping data between memory and disk than actually executing tasks.

    • Occurs when the system is constantly swapping data between memory and disk

    • Causes a decrease in system performance as it spends more time on swapping than executing tasks

    • Usually happens when the system does not have enough physical memory to handle the workload efficiently

  • Answered by AI
Round 4 - HR 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

This was my last round and I hoped it to go good just like the other rounds. The interviewer was very straight to point and professional. The interview lasted for 30 minutes.

  • Q1. What is something about you that is not included in your resume?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPASamsung interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in May 2017.

Interview Questionnaire 

4 Questions

  • Q1. Why is string immutable
  • Ans. 

    String is immutable because it ensures data integrity and allows for efficient memory management.

    • Immutable strings prevent accidental modification of data.

    • Immutable strings can be easily shared and reused, improving memory efficiency.

    • Immutable strings enable efficient string interning and caching.

    • Immutable strings support thread safety in concurrent environments.

  • Answered by AI
  • Q2. Do @requestparam has default value
  • Ans. 

    Yes, @RequestParam has a default value if not specified.

    • If a @RequestParam is not provided in the request, it will use its default value.

    • The default value can be set using the 'defaultValue' attribute of @RequestParam annotation.

    • If no default value is specified, the parameter will be considered as required and an exception will be thrown if not provided.

  • Answered by AI
  • Q3. Singleton and prototype
  • Q4. Why abstract class is required
  • Ans. 

    Abstract classes are required to provide a common interface and share code among related classes.

    • Abstract classes allow for code reusability and promote modular design.

    • They provide a common interface for a group of related classes.

    • Abstract classes can define abstract methods that must be implemented by subclasses.

    • They can also provide default implementations for common methods.

    • Abstract classes cannot be instantiated, b

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions & Answers

Samsung user image Gaurav Srikant Mokhasi

posted on 3 Dec 2015

Interview Preparation Tips

Round: PRE PLACEMENT OFFER
Experience: Interns (both CS and IT) were selected in my third year. Pre-placement offers were rolled out to 16 of us which was roughly a conversion ratio of 1:3. A couple of ECE hires were added when SRI-B visited campus later.

General Tips: If you're in CS or IT, this is the only format your resume should be in: -----
Take your internship seriously. Have fun and all but also get your project done. It's not the end of the world if you don't get a PPO. Campus placements are tension-filled, no doubt, but a lot of people get equally good if not better jobs after missing out on PPOs.
Make sure you talk to your manager about the PPO process. She will be the one giving you your final review. So ensure that she knows you want the job. Prepare a fancy presentation for the HR. By fancy, I mean slick and professional. Think Apple, not flashy Microsofty graphics and stupid word art.
Skill Tips: Google GSAT (Global Samsung Aptitude Test) a week before the test and make sure you practice some similar CAT type questions. Questions are of medium difficulty and time management is a real issue (most of us were unable to finish properly). - I didn't have to use these but I've heard good things about codechef/topCoder and books such as Cracking the Coding Interview by Gayle Laakmann McDowell.
Skills:
College Name: NIT Surathkal

Interview Questionnaire 

2 Questions

  • Q1. Multiple
  • Q2. Multiple.

Interview Preparation Tips

Round: Test
Experience: Graph problem.
First step was to formulate the question into graph problem.

Then solve using standard graph algo (Dijkstra, bellmen ford, e.tc).
Tips: Practice writing whole code without using standard library.
Duration: 3 hours
Total Questions: 1

Round: Technical Interview
Experience: Question related to dfs.
Asked about networking, OS and integers.

One puzzle.(available on geeksforgeeks)
Tips: Prepare for puzzle. Generally they go for standard puzzle.

Round: Technical Interview
Experience: It was mostly related to technical project and internship.

General discussion on machine learning.
Tips: Prepare for the projects mentioned on the resume

Round: HR Interview
Experience: He was testing me regarding how I will explain a technical project to a non-technical guy.. And also general HR questions like why u want to join Samsung and other similar questions.
Tips: Nothing new.

Skills: Basic programming stuff. , Algorithm, Graph Theory, Machine Learning, Problem Solving Skills
College Name: IIT Kharagpur

I applied via Campus Placement

Interview Preparation Tips

Round: Test
Experience: Lengthy aptitude section. Technical was easy.
Tips: Revise operating on arrays
Duration: 120 minutes
Total Questions: 63

Round: Group Discussion
Experience: Interviewer was supportive

General Tips: Prepare well for GD
Skills: Ability To Make Quick Calculations, C Programming, LOGICAL THINKING ABILITIES
Duration: 2
College Name: IIT Madras
Motivation: A top company. Will get good experience

Software Developer Interview Questions & Answers

Samsung user image VINAY KUMAR REDDY C

posted on 30 Aug 2016

I applied via Campus Placement

Interview Preparation Tips

Round: Test
Experience: Questions are very easy but you have to manage it in time and no need of any prerequisites to answer them.They are very straight forward questions.
Tips: make sure u don't spend more than 1 min on any questions.Time is very important in this round because 60 questions and 60 mins.
Duration: 60 minutes

Round: Test
Experience: 3 Questions were given and 1st question is very straight forward and 2nd question is a little bit tricky and 3rd question is a difficult one.If you were able to solve at least 2 questions then u will be selected for next round.
Tips: concentrate on basic most algorithms because most questions are from that area only.
Duration: 60 minutes

Round: Group Discussion
Experience: I took regular problems faced by common people which are not reaching the respective authorities as my social problem and spoke about that topic for about 3 mins
Tips: free your mind and write down the main points on a paper and present them.

General Tips: Make sure u prepare well for the interview and don't get panic.
Skill Tips: Learn basic most algorithms
Skills: Algorithmic Approach To Problem Solving, General Coding And Problem Solving
Duration: 2
College Name: IIT Madras
Motivation: I love to work on cool projects.

I applied via Campus Placement

Interview Preparation Tips

Round: Test
Experience: Each section has 20 questions. The first two rounds are well finished in time but the numerical section left me time deficient.
Tips: No special practice is needed. Just be calm during the entire test and don't get stuck at any question. Immediately move to next question if got stuck at any question.
Total Questions: 60

Round: Test
Experience: Most questions are pretty much simple testing the basics.
Tips: Practice string problems from hackerrank.
Duration: 60 minutes
Total Questions: Coding

Round: Group Discussion
Experience: Not like the usual Gd's. It's more of group interview. Every one gets their turn to share #t opinion.
Tips: They want to test your interest in technology. So, know abt the current advancements in technology.

Skills: Basics Of Computer Science, Algorithms And Data Structures, Accuracy
Duration: 2
College Name: IIT Madras

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Asked me about my research work That's it
  • Q2. Asked about the course project that i did in BE and MS

Interview Preparation Tips

Round: Test
Experience: There was one question which was little tricky , but not that difficult
Total Questions: 1

Round: Technical + HR Interview
Experience: There was one question which was little tricky , but not that difficult

College Name: IIT Madras

Ang India Interview FAQs

How many rounds are there in Ang India Software Developer interview?
Ang India interview process usually has 2 rounds. The most common rounds in the Ang India interview process are Resume Shortlist and Case Study.

Tell us how to improve this page.

Service Engineer
105 salaries
unlock blur

₹1.5 L/yr - ₹4.2 L/yr

Technical Support Engineer
68 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Surveillance Officer
41 salaries
unlock blur

₹1.8 L/yr - ₹3.5 L/yr

MIS Executive
30 salaries
unlock blur

₹1.7 L/yr - ₹3.5 L/yr

Cctv Engineer
30 salaries
unlock blur

₹1.8 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Ang India with

Samsung

3.9
Compare

OPPO

4.0
Compare

LG Electronics

4.0
Compare

HARMAN

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