Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Golden Eagle IT Technologies Team. If you also belong to the team, you can get access from here

Golden Eagle IT Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Golden Eagle IT Technologies Software Developer Trainee Interview Questions and Answers

Updated 1 Feb 2022

Golden Eagle IT Technologies Software Developer Trainee Interview Experiences

2 interviews found

I applied via Campus Placement and was interviewed in Jan 2022. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 1. Tell me about your self 2. Difference Between c & c++. 3. what is class? 4. what is object? 5. what is polymorphism? types of polymorphism explain real example of polymorphism. 6. what is inheritence? D...
  • Ans. 

    Answers to interview questions for Software Developer Trainee position.

    • C is a procedural programming language while C++ is an object-oriented programming language.

    • A class is a blueprint for creating objects in object-oriented programming.

    • An object is an instance of a class that encapsulates data and behavior.

    • Polymorphism is the ability of an object to take on many forms. Example: a shape class with different subclasses...

  • Answered by AI
Round 2 - HR 

(4 Questions)

  • Q1. Why should we hire you?
  • Q2. What is your family background?
  • Q3. Where do you see yourself in 5 years?
  • Q4. Tell me about yourself.
Round 3 - HR 

(3 Questions)

  • Q1. What are your strengths and weaknesses?
  • Q2. Where do you see yourself in 5 years?
  • Q3. Tell me about yourself.

Interview Preparation Tips

Topics to prepare for Golden Eagle IT Technologies Software Developer Trainee interview:
  • questions
  • OOPS
  • Data Structures
  • DBMS
  • Operations
  • Computer Networking
Interview preparation tips for other job seekers - Golden Eagle is very good company and i have also joined.got to learn a lot. I want to give this reference.The nature of the employee here is very friendly.

I applied via Campus Placement and was interviewed in Jan 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Tell me about yourself? Class and object in oops Program for Intialize an array oops concepts.
Round 2 - Technical 

(1 Question)

  • Q1. Tell me about yourself? friend function and also program for friend function. Program for store family details with the help of struct. OOPS concept

Interview Preparation Tips

Topics to prepare for Golden Eagle IT Technologies Software Developer Trainee interview:
  • OOPS
  • DBMS
  • Programming
Interview preparation tips for other job seekers - Hello, job seekers ,
Learn oops concept,dbms concept and good knowledge in programming language.
Communication skills is must important.

Software Developer Trainee Interview Questions Asked at Other Companies

Q1. 1. Tell me about your self 2. Difference Between c & c++. 3. ... read more
Q2. What is a static keyword in java? Where are the static variables ... read more
Q3. 1.Do you use social media? What is the use of it? 2.Tell us about ... read more
Q4. 2.You are given a chess board and the position of queen find the ... read more
asked in CodeAegis
Q5. 4 pills are medicine, in which 2 pills for fever and 2 pills for ... read more

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. HTML, CSS, BOOTSTRAP, PHP. SQL

I applied via Company Website and was interviewed before May 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Explain about your project you did
  • Q2. I did the kolhapur tourism websites in visual studio using asp.net c# sql server and html css javascript

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident and try to answer every question . And good communication skills are important

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. SOLID principals, oops, c# basics, SQL server, azure, design pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear basics of oops and design pattern

I applied via Campus Placement and was interviewed before May 2021. There were 4 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 Resume tips
Round 2 - Aptitude Test 

VERBAL QUANT DI/LR and Picture based test

Round 3 - Technical 

(1 Question)

  • Q1. Write a fibonaci series in c++ or C?
  • Ans. 

    Fibonacci series can be easily implemented using loops in C++ or C.

    • Declare variables for first two numbers of the series

    • Use a loop to calculate and print the next number in the series

    • Repeat the loop until desired number of terms are printed

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Informed about the policies and made us sign a document

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be calm and composed while answering the questions.

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Many technical questions
  • Q2. Application tools

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare more tools,practical working technic

I applied via Company Website and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I surprised with one question that is are u ready to do job in anywhere

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi guys I just suggest you that you have to focus on your resume and don't use the words which you don't know if you release a word which you don't know then hr will take that word so prepare well for TR and HR I hope my suggestion will helpful

I applied via Company Website and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. What questions will be asked Aptitude
  • Q2. What questions will be aske Technical round
  • Q3. What questions will be aske hr

Interview Preparation Tips

Interview preparation tips for other job seekers - He

I was interviewed before Sep 2020.

Round 1 - Face to Face 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

The questions ranged from prime number concepts to one question on linked list.

  • Q1. 

    Prime Time Again Problem Statement

    You are given two integers DAY_HOURS and PARTS. Consider a day with DAY_HOURS hours, which can be divided into PARTS equal parts. Your task is to determine the total ins...

  • Ans. 

    Given DAY_HOURS and PARTS, find total instances of equivalent prime groups in a day divided into equal parts.

    • Divide the day into equal parts and check for prime groups at the same position in different parts.

    • Each prime group consists of prime numbers occurring at the same position in different parts.

    • Return the total number of equivalent prime groups found.

    • Ensure DAY_HOURS is divisible by PARTS and each hour in a prime

  • Answered by AI
  • Q2. 

    Add Two Numbers Represented as Linked Lists

    Given two linked lists representing two non-negative integers, where the digits are stored in reverse order (i.e., starting from the least significant digit to ...

  • Ans. 

    Add two numbers represented as linked lists in reverse order and return the sum as a linked list.

    • Traverse both linked lists simultaneously, adding corresponding digits and carrying over if necessary.

    • Handle cases where one list is longer than the other by considering carry over.

    • Create a new linked list to store the sum digits in reverse order.

    • Return the head of the new linked list as the result.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Maharaja Agrasen College, University Of Delhi. I applied for the job as SDE - 1 in DelhiEligibility criteriaAbove 6 CGPA, No pending backlogsTata Consultancy Services (TCS) interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Operating Systems, System design, Puzzles, AptitudeTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Do practice aptitude faithfully because it will help you in cracking the first round.
Tip 2 : Study concepts from different sites like Coding Ninjas, Geeks for Geeks for better understanding.

Application resume tips for other job seekers

Tip 1 : Resume should be one pager.
Tip 2 : Mention your job specific projects on the resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Golden Eagle IT Technologies Interview FAQs

How many rounds are there in Golden Eagle IT Technologies Software Developer Trainee interview?
Golden Eagle IT Technologies interview process usually has 2-3 rounds. The most common rounds in the Golden Eagle IT Technologies interview process are Technical and HR.
What are the top questions asked in Golden Eagle IT Technologies Software Developer Trainee interview?

Some of the top questions asked at the Golden Eagle IT Technologies Software Developer Trainee interview -

  1. 1. Tell me about your self 2. Difference Between c & c++. 3. what is class? 4. ...read more
  2. Tell me about yourself? Class and object in oops Program for Intialize an array...read more

Recently Viewed

CAMPUS PLACEMENT

Lovely Professional University (LPU)

INTERVIEWS

Sutherland Global Services

No Interviews

INTERVIEWS

Mahindra & Mahindra

5.6k top interview questions

INTERVIEWS

Mahindra & Mahindra

No Interviews

INTERVIEWS

Mountblue Technologies

No Interviews

INTERVIEWS

Head Digital Works

No Interviews

INTERVIEWS

Mahindra & Mahindra

No Interviews

INTERVIEWS

ZeMoSo Technologies

No Interviews

INTERVIEWS

Clarivate

No Interviews

INTERVIEWS

Astrea IT Services

No Interviews

Tell us how to improve this page.

Python Developer
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

HR Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Angular Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Golden Eagle IT Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent