Upload Button Icon Add office photos

Filter interviews by

GALE Partners Software Developer Interview Questions and Answers

Updated 1 Dec 2022

GALE Partners Software Developer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2022. 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 - Technical 

(2 Questions)

  • Q1. Questions on sorting and searching algorithms.
  • Q2. Few django and python basic questions.
Round 3 - Technical 

(2 Questions)

  • Q1. Leet code easy to medium questions
  • Q2. Sql and django querry

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics of python django and leetcode easy to medium

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Core python
  • Q2. OOPS concept

I applied via Naukri.com and was interviewed before Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Mostly Technical related to Python, OOPS, Multithreading, Django architecture etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and answers should be to the point. Use a pen and paper in case interviewer is not getting your point.

I appeared for an interview before Jul 2021.

Round 1 - Aptitude Test 

This will be a general apptitude test where a questionnaire is consist of reasoning, English and Maths questions

Round 2 - One-on-one 

(3 Questions)

  • Q1. Tell us about yourself
  • Q2. What do you know about our company
  • Q3. Where do you see yourself in the next 5 years

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare yourself for general apptitude. And for interview one-on-one, Stay calm and focused. Just be yourself, know you gonna provide to the company

I applied via Campus Placement and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

13 Questions

  • Q1. What technologies you are familiar with?
  • Ans. 

    I am familiar with a wide range of technologies used in software development.

    • Java

    • Python

    • C++

    • JavaScript

    • HTML/CSS

    • SQL

    • Git

    • Linux

    • RESTful APIs

    • Agile methodologies

  • Answered by AI
  • Q2. What are the OOPs concept in Java?
  • Ans. 

    OOPs concepts in Java include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods together in a class.

    • Inheritance: Creating new classes from existing ones, inheriting their properties and behaviors.

    • Polymorphism: Objects of different classes can be treated as objects of a common superclass.

    • Abstraction: Hiding complex implementation details and providing a simplified interfa

  • Answered by AI
  • Q3. What are the ways to achieve abstraction?
  • Ans. 

    Abstraction can be achieved through interfaces, abstract classes, and encapsulation.

    • Using interfaces to define a set of methods that a class must implement

    • Using abstract classes to provide a base implementation that can be extended by subclasses

    • Encapsulating implementation details to hide complexity and provide a simpler interface

    • Using design patterns such as Factory and Strategy to abstract away implementation details

  • Answered by AI
  • Q4. Difference between class and Interface object and fucntion instance and all the differences?
  • Ans. 

    Class is a blueprint for creating objects while interface defines a contract for implementing classes.

    • Class is a template for creating objects with properties and methods.

    • Interface is a contract that defines a set of methods and properties that a class must implement.

    • Object is an instance of a class that has its own set of properties and methods.

    • Function instance is a reference to a function that can be called with arg...

  • Answered by AI
  • Q5. Some graph question and some more questions from data structure like about linkedlist queue.
  • Q6. Inheritance
  • Q7. Scope of access modifiers
  • Ans. 

    Access modifiers control the visibility and accessibility of class members.

    • Access modifiers include public, private, protected, and internal.

    • Public members can be accessed from anywhere.

    • Private members can only be accessed within the same class.

    • Protected members can be accessed within the same class and its subclasses.

    • Internal members can be accessed within the same assembly.

    • Access modifiers help enforce encapsulation ...

  • Answered by AI
  • Q8. Some tree questions
  • Q9. Some graph question
  • Q10. What do you know about cloud
  • Ans. 

    Cloud refers to the delivery of computing services over the internet.

    • Cloud computing allows users to access data and applications from anywhere with an internet connection.

    • Cloud services can be categorized into three main types: Infrastructure as a Service (IaaS), Platform as a Service (PaaS), and Software as a Service (SaaS).

    • Cloud providers include Amazon Web Services (AWS), Microsoft Azure, and Google Cloud Platform.

    • ...

  • Answered by AI
  • Q11. Some basic question like which things come in Iaas
  • Q12. What are the ways to achieve some task on aws
  • Ans. 

    There are multiple ways to achieve tasks on AWS depending on the specific task.

    • Using AWS Management Console

    • Using AWS CLI

    • Using AWS SDKs

    • Using AWS CloudFormation

    • Using AWS Elastic Beanstalk

    • Using AWS Lambda

    • Using AWS Step Functions

    • Using AWS Batch

  • Answered by AI
  • Q13. About ec2 and many more

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be honest about what you know and how much you know tell them very clearly you do not know much about this do not try to make stories they know more than you

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Are you interested to work in Wipro

Interview Preparation Tips

Interview preparation tips for other job seekers - I have successfully completed all the rounds.....even HR round is done....I didn't received offer yet.....very bad experience bin Wipro ...HR is not responding properly in email...

I appeared for an interview before Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Timing was around 10am
It was quite a normal online examination kind of environment 
People from the company were there to invigilate 
All were quite nice and helpful in case the exam got stuck

  • Q1. 

    Ninja and Alien Language Order Problem

    An alien dropped its dictionary while visiting Earth. The Ninja wants to determine the order of characters used in the alien language, based on the given list of wor...

  • Ans. 

    Determine the order of characters in an alien language based on a list of words.

    • Create a graph data structure to represent the relationships between characters in the words.

    • Perform a topological sort on the graph to find the order of characters.

    • Return the smallest lexicographical order of characters as the result.

  • Answered by AI
  • Q2. 

    Check Duplicate Within K Distance

    Given an array of integers arr of size N and an integer K, determine if there are any duplicate elements within a distance of K from each other in the array. Return "true...

  • Ans. 

    Check if there are any duplicate elements within a distance of K from each other in the array.

    • Iterate through the array and keep track of the indices of elements using a hashmap.

    • For each element, check if it already exists in the hashmap within distance K.

    • Return true if a duplicate is found within distance K, otherwise return false.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

Timing was 2pm when it started
Interviewer was polite

  • Q1. 

    Kth Largest Element Problem Statement

    Ninja enjoys working with numbers, and Alice challenges him to find the Kth largest value from a given list of numbers.

    Input:

    The first line contains an integer 'T...
  • Ans. 

    The task is to find the Kth largest element in a given list of numbers for each test case.

    • Read the number of test cases 'T'

    • For each test case, read the number of elements 'N' and the Kth largest number to find 'K'

    • Sort the array in descending order and output the Kth element

  • Answered by AI
Round 3 - HR 

Round duration - 20 minutes
Round difficulty - Easy

Timing was 9 am onwards 
Interviewer was good enough

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Developer in DelhiEligibility criteriaAbove 7 CGPA with no pending backlogsWipro Limited interview preparation:Topics to prepare for the interview - Java, C++, DBMS, Data Structures, Dot net, HTML, CSS, JSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Focus on specialization of any one skill and keep a basic knowledge of all the skills you mention in your resume
Tip 2 : Gain confidence in presenting yourself by practicing well before
Tip 3 : Gain a basic knowledge of the company you go for selection

Application resume tips for other job seekers

Tip 1 : Resume should be simple and precise but pretty smart to cover your skills 
Tip 2 : Mention what you really know,no false things

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview before May 2016.

Interview Questionnaire 

3 Questions

  • Q1. Inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows for code reuse and promotes code organization.

    • The new class is called the subclass or derived class, and the existing class is called the superclass or base class.

    • The subclass inherits all the properties and methods of the superclass, and can also add new properties and...

  • Answered by AI
  • Q2. Oops concepts
  • Q3. Database management

Interview Preparation Tips

Round: Test
Tips: Aptitude level was very high so work on it
Duration: 1 hour

Round: Technical Interview
Tips: Make your command on one subject wheather dbms,c++,java anyone

Skills: Confidence , Technical skills
College Name: Khalsa college for women

I appeared for an interview before May 2016.

Interview Questionnaire 

1 Question

  • Q1. Tell me abt yourself???
  • Ans. 

    I am a passionate software developer with experience in building web applications using various technologies.

    • Experienced in developing web applications using HTML, CSS, JavaScript, and frameworks like React and Angular

    • Proficient in backend development with Node.js and databases like MongoDB and MySQL

    • Familiar with version control systems like Git and deployment tools like Heroku

    • Strong problem-solving skills and ability

  • Answered by AI

Interview Preparation Tips

Round: Group Discussion
Experience: It was a typical group discussion round . there were 8 of us in room seated in a circular manner facing each other .our topic for gd was increasing crime rate everybody started sharing their opinions. as the gd proceeded i shared my opinion. in my opinion crime rate is increasing due to inflation , keeping unlicensed guns, unemployment. i elaborated all my points in a concise manner.
Tips: Look confident.
Be confident.
Put forward your opinion assertively.
Never shout . Be respectful
Duration: 10 hours

Round: Technical + HR Interview
Experience: in the beginning he asked me " tell ne about yourself?" to which i replied by telling briefly abt myself . educational qualification and my strong points then he asked me a few technical questions . i was able to answer 3 out of 5. then he asked me that why i think i am the best suited for this job.
Tips: you should know about the company .
what you are good at and what you are not

Interview Questionnaire 

1 Question

  • Q1. What is your activity
  • Ans. 

    As a software developer, my activity involves designing, coding, testing, and maintaining software applications.

    • Designing software architecture and user interfaces

    • Writing code in programming languages such as Java, Python, or C++

    • Testing software to ensure it meets requirements and is free of bugs

    • Maintaining and updating software to keep it running smoothly

    • Collaborating with other developers and stakeholders to ensure p

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: Tell in detail about what happened
Tips: Provide tip for specily

Round: HR Interview
Experience: Tell in detail about what happened
Tips: Provide tip for specily

Round: Test
Experience: Tell in detail what all happened
Tips: Provide tips specially

GALE Partners Interview FAQs

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

Some of the top questions asked at the GALE Partners Software Developer interview -

  1. Questions on sorting and searching algorith...read more
  2. Leet code easy to medium questi...read more
  3. Few django and python basic questio...read more

Tell us how to improve this page.

GALE Partners Software Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
GALE Partners Software Developer Salary
based on 5 salaries
₹10 L/yr - ₹23 L/yr
68% more than the average Software Developer Salary in India
View more details
Associate
15 salaries
unlock blur

₹7.5 L/yr - ₹17 L/yr

Project Manager
6 salaries
unlock blur

₹12 L/yr - ₹24.2 L/yr

Full Stack Developer
6 salaries
unlock blur

₹9 L/yr - ₹13.8 L/yr

Front end Developer
6 salaries
unlock blur

₹7 L/yr - ₹14 L/yr

Software Developer
5 salaries
unlock blur

₹10 L/yr - ₹23 L/yr

Explore more salaries
Compare GALE Partners with

Wipro

3.7
Compare

HGS

3.8
Compare

G4S

4.0
Compare

SGS

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