Upload Button Icon Add office photos

Filter interviews by

Great Developers Infotech DOT NET Developer Interview Questions and Answers

Updated 1 Jan 2025

Great Developers Infotech DOT NET Developer Interview Experiences

2 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 & 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

asked in Infosys
Q1. What is the difference between windows application development an ... read more
Q2. What is Trigger,Store procedure, join in sql query and their synt ... read more
asked in Infosys
Q3. What kind of database you used in projects
Q4. How many ways are there to send data to controller from View?
asked in Nagarro
Q5. Can Two Primary keys can be made possible in Sql Table ?

Interview questions from similar companies

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

I appeared for an interview in Aug 2023.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Aptitude Test 

180 mins test calculatogn

Round 3 - One-on-one 

(2 Questions)

  • Q1. OOPS questions
  • Q2. Design Pattern test
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via AmbitionBox and was interviewed in Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

DSA question and DBMS SQL

Round 2 - Technical 

(1 Question)

  • Q1. Basic concepts and your project

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA and your basics
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It's normal question easy to cark

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

I applied via LinkedIn and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Coding Test 

It was online test with 3 coding questions and 18 mcqs

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

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

Round 1 - Coding Test 

Give you 5 problem in maths , string, sql etc

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is struct keyword
  • Ans. 

    The struct keyword is used in programming languages to define a user-defined data type that contains multiple variables of different types.

    • Structs are used to group related data together.

    • They can have different types of variables, including other structs.

    • Structs can be used to create complex data structures.

    • They are commonly used in object-oriented programming languages.

  • Answered by AI
  • Q2. What is Class keyword
  • Ans. 

    The class keyword is used in object-oriented programming to define a blueprint for creating objects.

    • The class keyword is used in languages like Java, C++, and Python.

    • It allows the programmer to define the properties and behaviors of an object.

    • Objects created from a class are called instances.

    • Classes can have attributes (variables) and methods (functions).

    • Inheritance allows classes to inherit properties and behaviors fr...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - this is a test message to test platform. Best of luck.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Frontend development with react

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

Great Developers Infotech Interview FAQs

How many rounds are there in Great Developers Infotech DOT NET Developer interview?
Great Developers Infotech interview process usually has 3-4 rounds. The most common rounds in the Great Developers Infotech interview process are Aptitude Test, Technical and Coding Test.
What are the top questions asked in Great Developers Infotech DOT NET Developer interview?

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

  1. Explain Code logic of find minimum of from the arr...read more
  2. What is Method Overloadi...read more
  3. Explain Turnary operators in Ja...read more

Tell us how to improve this page.

Great Developers Infotech DOT NET Developer Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

Odoo Interview Questions
3.2
 • 28 Interviews
Anywhere Interview Questions
4.5
 • 14 Interviews
Acviss Interview Questions
4.3
 • 8 Interviews
Apptunix Interview Questions
3.4
 • 7 Interviews
Reveation Labs Interview Questions
4.3
 • 7 Interviews
View all

Great Developers Infotech DOT NET Developer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
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