Upload Button Icon Add office photos

Filter interviews by

Global IDs Software Developer Interview Questions and Answers

Updated 12 Nov 2024

Global IDs Software Developer Interview Experiences

3 interviews found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Over riding vs over loading?
  • Ans. 

    Overriding is when a subclass provides a specific implementation for a method that is already provided by its parent class, while overloading is when multiple methods have the same name but different parameters.

    • Overriding involves changing the behavior of a method in a subclass, while overloading involves creating multiple methods with the same name but different parameters.

    • Overriding is used for runtime polymorphism, ...

  • Answered by AI
  • Q2. What is oops? How to explain oops in Java.
  • Ans. 

    OOPs stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects.

    • OOPs is a programming paradigm that uses objects to design applications.

    • It focuses on data encapsulation, inheritance, polymorphism, and abstraction.

    • In Java, OOPs concepts are implemented using classes and objects.

    • Example: Class Car { String color; void start() { //code } } Car myCar = new Car();

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn core Java

Skills evaluated in this interview

Software Developer Interview Questions & Answers

user image Dipankar Mishra

posted on 12 Nov 2024

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

I applied via Campus Placement and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - Coding Test 

Digonal sum of 2D array

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

Software Developer Interview Questions & Answers

user image Trinanjan Gupta

posted on 18 Aug 2022

Round 1 - Aptitude Test 

Normal level aptitude and codes

Round 2 - Technical 

(1 Question)

  • Q1. Basic Technical questions asked on your cv
Round 3 - HR 

(1 Question)

  • Q1. Normal hr type questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company friendly behaviour they treat you very well

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Questions from C, Data structure, OS,Database
  • Q2. Technical + HR

Interview Preparation Tips

Round: Test
Experience: This round was simple.
It consist of 5 sections ..1.Aptitude (10 questions). 2.Operating System Basics and Unix Commands(16 questions) 3.Data Structure(9 questions) 4.Output C Questions(6 questions) 5.Programming questions out of 4 any 2 you can do.(2 questions from data structure and 2 from sorting)
Tips: If you know the basics of all these topics then you can easily clear this round.Try to score as more marks as possible because this score counts in the next round too.

Round: Technical Interview
Experience: Moderate
Tips: Be confident and don't get panic.If you don't know anything simply say no don't waste time.

Round: Technical Interview
Experience: Moderate

Skill Tips: Be Confident and keep calm.You must have the complete knowledge of the projects which you have written in your resume.
Skills: C, Data Structure, os, Database
College Name: VIT VELLORE

I applied via Naukri.com

Interview Preparation Tips

Round: Resume Shortlist
Experience: Properly formatted
No spelling mistakes
Proper Educational and Professional background with proper dates

Round: Test
Experience: There will be written test so be prepared.

Round: Group Discussion
Experience: No. I did not come across

Round: HR Interview
Experience: There will questions on your experience, salary, negotiations.

Round: Technical Interview
Experience: Questions based on your subjects, technical skills, algorithms, data structures, aptitude

General Tips: Stay calm and focussed.
Skills: Implementation Of Code Using OOPS, Analyzing And Problem Solving Skills, Algorithm Analysis, Datastructures And Algorithms
College Name: Amity School Of Engineering And Technology, Noida
Motivation: I liked the work at Keyideas. One of my friend was working here so I knew the company was good, they paid well and on-time, never delay the salary and projects are from US clients so there is more to learn.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
-

I applied via Company Website and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

Write a code for HTML DOM

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Simple Coding questions without DSA

Round 2 - One-on-one 

(1 Question)

  • Q1. Basic C#, DSA Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy selection
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

It consists of basic aptitude questions and some coding output questions followed by basic SQL questions. Overall the difficulty level was medium.

Round 2 - Technical 

(1 Question)

  • Q1. They asked me to write code for 4 problems. All questions consists array medium level and then there are difficult SQL questions to solve. Unfortunately I couldn't passed this round. But it was a great lea...
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

It has general aptitude questions with moderate difficulty

Round 2 - Coding Test 

It was mixed coding plus SQL question after the exam I had explain my solution.

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types or classes.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q2. Find missing number from nth number array.
  • Ans. 

    Find missing number from nth number array.

    • Iterate through the array and calculate the sum of all numbers

    • Calculate the sum of numbers from 1 to n using the formula n*(n+1)/2

    • Subtract the sum of array from the sum of numbers from 1 to n to find the missing number

  • Answered by AI
  • Q3. Explain inheritance and it types
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows a class to reuse code from another class.

    • Types of inheritance include single inheritance, where a class inherits from only one parent class, and multiple inheritance, where a class inherits from multiple parent classes.

    • Example: Class B inherits from Class A, so Class B can access

  • Answered by AI
  • Q4. Find 2nd max elements from aaray
  • Ans. 

    Find 2nd max element from array of strings

    • Sort the array in descending order

    • Skip the first element (max element)

    • Return the second element

  • Answered by AI

Skills evaluated in this interview

Global IDs Interview FAQs

How many rounds are there in Global IDs Software Developer interview?
Global IDs interview process usually has 1-2 rounds. The most common rounds in the Global IDs interview process are Coding Test, Aptitude Test and Technical.
What are the top questions asked in Global IDs Software Developer interview?

Some of the top questions asked at the Global IDs Software Developer interview -

  1. What is oops? How to explain oops in Ja...read more
  2. Over riding vs over loadi...read more
  3. Normal hr type questi...read more

Tell us how to improve this page.

Global IDs Software Developer Interview Process

based on 3 interviews

Interview experience

4
  
Good
View more
Global IDs Software Developer Salary
based on 62 salaries
₹3.9 L/yr - ₹10 L/yr
33% less than the average Software Developer Salary in India
View more details

Global IDs Software Developer Reviews and Ratings

based on 7 reviews

2.6/5

Rating in categories

3.0

Skill development

3.6

Work-life balance

2.8

Salary

1.6

Job security

2.6

Company culture

2.4

Promotions

2.6

Work satisfaction

Explore 7 Reviews and Ratings
Software Developer
62 salaries
unlock blur

₹3.9 L/yr - ₹10 L/yr

Data Management Consultant
16 salaries
unlock blur

₹4.5 L/yr - ₹13 L/yr

Quality Analyst
9 salaries
unlock blur

₹4 L/yr - ₹7 L/yr

Linux Administrator
8 salaries
unlock blur

₹6.8 L/yr - ₹8.5 L/yr

Linux System Administrator
6 salaries
unlock blur

₹3.8 L/yr - ₹9 L/yr

Explore more salaries
Compare Global IDs with

Busibud

4.0
Compare

Baoiam Innovations

4.5
Compare

GrapplTech

4.8
Compare

Plada Infotech Services

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