Upload Button Icon Add office photos

Filter interviews by

Great Developers Infotech Interview Questions, Process, and Tips

Updated 27 Feb 2025

Top Great Developers Infotech Interview Questions and Answers

Great Developers Infotech Interview Experiences

Popular Designations

6 interviews found

DOT NET Developer Interview Questions & Answers

user image Shailesh Agarmore

posted on 1 Jan 2025

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

I applied via Company Website and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

30 question in 30 min of Quant.

Round 2 - Coding Test 

They gave me 3 coding questions including one SQL query.
Questions difficulty was easy.

Round 3 - Technical 

(3 Questions)

  • Q1. Explain Turnary operators in Java.
  • Ans. 

    Ternary operators in Java are shorthand for if-else statements, with syntax: condition ? expression1 : expression2

    • Ternary operator is used to assign a value to a variable based on a condition

    • Syntax: condition ? expression1 : expression2

    • Example: int x = (a > b) ? a : b;

  • Answered by AI
  • Q2. What is Method Overloading?
  • Ans. 

    Method overloading is the ability to define multiple methods with the same name but different parameters in a class.

    • Allows multiple methods with the same name but different parameters

    • Parameters can differ in number, type, or order

    • Helps improve code readability and reusability

  • Answered by AI
  • Q3. Explain Code logic of find minimum of from the array.
  • Ans. 

    Find the minimum value from an array of strings using code logic.

    • Convert the array of strings to an array of integers for comparison.

    • Initialize a variable with a very large value as the initial minimum.

    • Iterate through the array and update the minimum value if a smaller value is found.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Coding question logic is mandatory.

DOT NET Developer Interview Questions asked at other Companies

Q1. What is the difference between windows application development and web based development?
View answer (12)
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Tell me your technical expertise
  • Ans. 

    I have expertise in full-stack web development, database management, and cloud computing.

    • Proficient in languages such as JavaScript, Python, and SQL

    • Experience with frameworks like React, Node.js, and Django

    • Knowledge of cloud platforms like AWS and Azure

    • Skilled in designing and optimizing databases

  • Answered by AI
  • Q2. Ternary operator
  • Q3. Find minimum element of an array Exception handling abstract class and abstract method Swap two numbers without third variable
  • Ans. 

    Find minimum element in an array, implement exception handling, and swap two numbers without a third variable.

    • To find the minimum element in an array, iterate through the array and keep track of the smallest element found so far.

    • Implement exception handling by creating an abstract class with abstract methods for handling different types of exceptions.

    • To swap two numbers without a third variable, use arithmetic operatio

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I advise don't waste your time they ask same question in interview ,they will not hire you just doing Time pass

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (220)

DOT NET Developer Interview Questions & Answers

user image utkarsh jaiswal

posted on 20 Dec 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Some basic aptitude ques

Round 2 - Technical 

(1 Question)

  • Q1. Which class is used to prevent method overriding
Round 3 - Coding Test 

It was a nice experience

Round 4 - HR 

(1 Question)

  • Q1. Tell me about yourself

DOT NET Developer Interview Questions asked at other Companies

Q1. What is the difference between windows application development and web based development?
View answer (12)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic questions based on oops

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on your basics

Engineer Trainee Interview Questions asked at other Companies

Q1. If 10 people had a meeting and they shake hands only once with each of the others, then how many handshakes will be there in total ?
View answer (8)

Great Developers Infotech interview questions for popular designations

 Software Engineer

 (2)

 DOT NET Developer

 (2)

 Software Trainee

 (1)

 Engineer Trainee

 (1)

Software Trainee Interview Questions & Answers

user image versha verma

posted on 4 Jul 2022

I applied via Naukri.com and was interviewed in Jun 2022. There were 5 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 - Aptitude Test 

Aptitude test is very simple

Round 3 - Coding Test 

This is also simple not so much tough

Round 4 - One-on-one 

(1 Question)

  • Q1. This is very basic round
Round 5 - Got job 

(1 Question)

  • Q1. Basic aptitude and basic any programming language, English spoken good

Interview Preparation Tips

Interview preparation tips for other job seekers - If you have basic knowledge about any programming you will get select any company easily

Software Trainee Interview Questions asked at other Companies

Q1. 1. What is java and it's features ? 2. Why it is called platform independent language? 3. What is static memory allocation, dynamic memory allocation? 4. types of variable 5. Type casting 4. what is oops ? Is java contains a 100% opp's conc... read more
View answer (1)

Interview Questionnaire 

1 Question

  • Q1. 4 basic SQL server questions and 2 quiz

Interview Preparation Tips

Interview preparation tips for other job seekers - Believe me if you thought you might got job but you are going in trouble. Unemployed is far better than this job.

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (220)

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Sep 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 - Coding Test 

Coding on python programming, any language is used in in coding.

Round 3 - Technical 

(2 Questions)

  • Q1. Good ask simple question and simple program
  • Q2. Python programming string reverse the string
  • Ans. 

    Python provides a simple way to reverse a string using slicing.

    • Use slicing to reverse the string: string[::-1]

    • Assign the reversed string to a new variable or print it directly

    • Alternatively, use the reversed() function to create a reversed iterator and join it back into a string

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Study oops concepts, algorithm , logical questions , -----

Skills evaluated in this interview

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

I appeared for an interview before Feb 2024.

Round 1 - Coding Test 

There were two coding questions; one was related to linked lists, and the other was linked to binary trees.

Round 2 - Technical 

(4 Questions)

  • Q1. Can you elaborate on the project discussion you mentioned in your resume?
  • Ans. 

    Developed a web application for tracking inventory and sales data

    • Used React for front-end development

    • Implemented RESTful APIs using Node.js and Express for back-end

    • Utilized MongoDB for database management

    • Integrated authentication and authorization features for secure access

    • Implemented data visualization using Chart.js

  • Answered by AI
  • Q2. Can you provide the code to reverse a linked list?
  • Ans. 

    Reversing a linked list involves changing the direction of pointers to go from the end to the beginning.

    • Start by initializing three pointers: current, previous, and next.

    • Iterate through the linked list, updating the pointers to reverse the direction of the links.

    • Update the head of the linked list to point to the new first node, which was the original last node.

  • Answered by AI
  • Q3. Some questions were asked regarding the four pillars of Object-Oriented Programming (OOP)?
  • Q4. Questions related to pointers, dangling pointers.
Round 3 - Technical 

(4 Questions)

  • Q1. Program for finding the perfect squares between two numbers.
  • Ans. 

    Program to find perfect squares between two numbers

    • Iterate through numbers between the given range

    • Check if the square root of the number is an integer

    • If yes, then it is a perfect square

  • Answered by AI
  • Q2. What are smart pointers in C++?
  • Ans. 

    Smart pointers in C++ are objects that act like pointers but provide automatic memory management.

    • Smart pointers help prevent memory leaks by automatically managing memory allocation and deallocation.

    • Examples include unique_ptr, shared_ptr, and weak_ptr.

    • unique_ptr is used for exclusive ownership, shared_ptr for shared ownership, and weak_ptr to prevent circular references.

  • Answered by AI
  • Q3. What is mutual exclusion in the context of concurrent programming?
  • Ans. 

    Mutual exclusion is a concept in concurrent programming where only one thread can access a shared resource at a time.

    • Ensures that only one thread can access a critical section of code at a time

    • Prevents race conditions and data corruption

    • Commonly implemented using locks, semaphores, or mutexes

    • Example: Using a mutex to protect a shared variable in a multi-threaded application

  • Answered by AI
  • Q4. What is the process for implementing multithreading?
  • Ans. 

    Implementing multithreading involves creating and managing multiple threads to execute tasks concurrently.

    • Identify the tasks that can be executed concurrently

    • Create and manage multiple threads to execute these tasks simultaneously

    • Use synchronization techniques like locks and semaphores to prevent race conditions

    • Handle communication and coordination between threads

    • Consider thread safety and resource sharing issues

  • Answered by AI

Skills evaluated in this interview

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
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Aptitude Test 

Logical reasoning 20 character

Interview Preparation Tips

Topics to prepare for Anywhere Data Analyst interview:
  • Advanced Excel SQL
Interview preparation tips for other job seekers - Aptitude test

Great Developers Infotech Interview FAQs

How many rounds are there in Great Developers Infotech interview?
Great Developers Infotech interview process usually has 2-3 rounds. The most common rounds in the Great Developers Infotech interview process are Coding Test, One-on-one Round and Aptitude Test.
How to prepare for Great Developers Infotech interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Great Developers Infotech. The most common topics and skills that interviewers at Great Developers Infotech expect are IT Sales, HR, Sales Achievement, .NET Framework and SQL Server.
What are the top questions asked in Great Developers Infotech interview?

Some of the top questions asked at the Great Developers Infotech interview -

  1. find minimum element of an array Exception handling abstract class and abstract...read more
  2. Explain Code logic of find minimum of from the arr...read more
  3. What is Method Overloadi...read more

Tell us how to improve this page.

Great Developers Infotech Interview Process

based on 4 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Odoo Interview Questions
3.2
 • 28 Interviews
Anywhere Interview Questions
4.5
 • 14 Interviews
Apptunix Interview Questions
3.4
 • 7 Interviews
QuickRide Interview Questions
2.9
 • 6 Interviews
Octro Interview Questions
3.3
 • 5 Interviews
MS Technology Interview Questions
4.0
 • 5 Interviews
View all

Great Developers Infotech Reviews and Ratings

based on 9 reviews

2.3/5

Rating in categories

2.2

Skill development

1.8

Work-life balance

1.9

Salary

1.8

Job security

1.7

Company culture

1.9

Promotions

1.8

Work satisfaction

Explore 9 Reviews and Ratings
Software Developer
14 salaries
unlock blur

₹2.4 L/yr - ₹4.3 L/yr

Software Engineer
13 salaries
unlock blur

₹2 L/yr - ₹5 L/yr

Business Development Executive
3 salaries
unlock blur

₹1.2 L/yr - ₹4 L/yr

Software Trainee
3 salaries
unlock blur

₹2.5 L/yr - ₹4 L/yr

Associate Information Technology Consultant
3 salaries
unlock blur

₹24 L/yr - ₹24 L/yr

Explore more salaries
Compare Great Developers Infotech with

Bhash Software Labs

4.0
Compare

HirePro Consulting

3.8
Compare

Apptunix

3.4
Compare

Prometric Testing

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