Upload Button Icon Add office photos

Filter interviews by

GTR Technology Interview Questions and Answers

Updated 20 Apr 2024

1 interview found

Sort by: Popular
Interview experience
4
 Good
Difficulty level
 -
Duration
 -
Result
 -

1 Interview Round

1

One-on-one Round (2 Questions)

  • Q1. Past experience
  • Q2. Goals and expectations

Interview questions from similar companies

System Engineer Interview Questions

Infosys user image Anonymous

posted on 14 Feb 2015

3 Interview Rounds

Interview Preparation Tips

Round: Test
Experience: Aptitude test consists of simple questions which are available in R.S.Agarwal verbal test consists of two paragraph questions and remaining are correct the sentence questions. reasoning is the toughest of all.It consists of some data analysing questions and some fuzzy questions.
Total Questions: 60

Round: HR Interview
Experience: Interview starts with tell me about ur self and then he asked to select one topic from given three topics and asked me to talk for about 5 min. after that some situation questions.and he asked the questions about my project.

College Name: NIT WARANGAL

Process Engineer Interview Questions

TCS user image Anonymous

posted on 13 Jan 2015

3 Interview Rounds

Interview Preparation Tips

Round: Resume Shortlist
Experience: CPI based shortlisting. Around 6-7 people from MME with CPI > 7.9 were shortlisted.

Round: Interview (Telephonic)
Experience: Duration: 10-15 minutes
Questions :
1. Name 
2. Resume Based Questions 
3. Internships and projects 
4. Technical Questions 
5. Favorite Subject and questions on that 
6. BTP

General Tips: 1. Choose which subject you will say as your favorite and prepare that thoroughly. 
2. Read Proforma of company and prepare accordingly. 
3. It is most secure if you can direct the interviewer to ask questions about your internships and projects, because that is something you know better than him/her. 
4. Prepare puzzles etc. generally asked in interviews. 
5. Keep a Positive Attitude in general. Have an attitude of “I don’t need the company, the company needs me”.
Skill Tips: This company basically needed only 1 MME student was selected - who did both his interns and projects in ‘Modeling and Simulation’.
Skills: Thermodynamics of Materials, Characterization, Manufacturing Processes ,
College Name: IIT- Kanpur

Associate Interview Questions

Cognizant user image Anonymous

posted on 10 Feb 2015

4 Interview Rounds

Interview Questions

Interview Preparation Tips

Round: Test
Experience: Questions were simple but demanded faster solving ability especially the Quantitative ability section.
Tips: Solve every bit of R.S.Aggarwal for Aptitude problems. www.indiabix.com is a good site to solve questions from all the sections.
Duration: 90 minutes

Round: Interview
Experience: Started with self description to explaining what projects I was involved in. Talked about my role in the project. Then answered questions from C++ programming language and then wrote the program that the interviewer gave me to do.
Tips: Be Confident. Have the problem solving & "Yes I can Do" attitude. Go with a open mind. Listen to the interviewer carefully. Do not stammer. Keep yourself calm and cool. Be honest.

Round: Interview
Experience: Faced normal questions
Tips: Be confident & keep smiling. Keep track of your body language. Be fluent in speaking English.

General Tips: Be confident and a "can do" attitude will help you grab the job.
Skill Tips: """"
Skills: Communication Skill, Proficiency in English, Basic Computer Progamming Knowledge, Learning ability, Aptitude
College Name: IIT Madras

Skills evaluated in this interview

Project Engineer Interview Questions

Wipro user image Anonymous

posted on 31 Jan 2015

3 Interview Rounds

Interview Preparation Tips

Round: Interview
Experience: The round was of 1 hour

Round: Group Discussion
Experience: 10 people per group

General Tips: This company, as I understand, is looking for future managers. No technical preparation is required as didn’t ask a single question related to academics. You just need to convince them that you are ready to do whatever they want you to do in the company be it coding or data entry and depending on your luck and soft skills you will get through.
Skill Tips: Cut off is 8.
College Name: IIT KHARAGPUR

Interview Questions

Deloitte user image Anonymous

posted on 20 Jan 2015

5 Interview Rounds

Interview Questions

Interview Preparation Tips

Round: Test
Experience: CAT type questions were asked in English and DI.
Tips: Accuracy will matter and preparations for CAT will help.
Duration: 30 minutes
Total Questions: 40

Round: Technical Interview
Experience: Questions were based on Data Abstraction. Internship was the main topic around which the rest of the interview went on.
Tips: Coding skills should be good.

Round: HR Interview
Tips: Work on communication skills.

College Name: IIT KANPUR

Interview Questions

HCLTech user image Anonymous

posted on 11 Apr 2015

4 Interview Rounds

Interview Questions

Interview Preparation Tips

Round: Test
Experience: One written test. It contains four sections. Each section is of 15 minutes duration.
Tips: Prepare for general aptitude and learn the basics of C, C++ and Java.
Duration: 60 minutes

Round: HR Interview
Experience: General HR round questions were asked.
Tips: You must show your confidence and maintain eye contact with the interviewer.

General Tips: Brush up all the basics of your core subjects.
Skills: Good technical skills., Good communication skills.
College Name: NA

Software Engineer Interview Questions

Capgemini user image Siddhesh Sawant

posted on 29 Mar 2015

5 Interview Rounds

Interview Questions

Interview Preparation Tips

Round: Test
Experience: Be confident but dont be over confident
Tips: solve as many papers u can to crack dis test
Duration: 60 minutes
Total Questions: 50

Round: Group Discussion
Experience: Be clear about ur thots.
Tips: Try to speak more & relevant to the topic.
Duration: 15 minutes

Round: Technical Interview
Experience: being honest will help u clear this round
Tips: Be UP to DATE..

General Tips: Develop coding skills& logics also understand the basic math formulaes
College Name: TERNA ENGINEERING COLLEGE
Motivation: If u can Dream IT , U can Definetly Achieve IT.. :)
Funny Moments: :D

Interview Questions

Amazon user image Anonymous

posted on 5 Apr 2015

4 Interview Rounds

Interview Questions

  • Q1. Given n-ary tree, print the nodes in level-order zig-zag manner. O(n) time Add Answer
  • Q2. Given a BST find the number of pair of nodes which sum upto a given value. O(n) time, O(1) space Add Answer
  • Q3. Given a 2D plane and n points, find the line which passes through maximum number of lines Add Answer
  • Q4. If a/b is recurring like 10/3 print 10/3 as 3.(3), 16/6 as 2.(6) Add Answer
  • Q5. Explain caching, implement LRU caching View Answers (1)
  • Q6. Explain working of DNS, implement domain search in DNS Add Answer
  • Q7. What is hashing. Implement domain search using hashing Add Answer
  • Q8. Given a string of alphabet of at most 5 characters. Write a function which returns a unique number for each string with O(1) space Add Answer
  • Q9. Explain working of virtual function Add Answer
  • Q10. There is pointer of base class pointing to derived class. Explain the working with respect to the pointer, if this pointer calls the virtual function of base cl...read more Add Answer
  • Q11. How does write head take a value from process buffer and writes on a particular address (Explanation of address bus and register needed) Add Answer
  • Q12. Clone a linked list having an arbit pointer Add Answer
  • Q13. You are given deque(), enque(), isEmpty() function for queue, implement push(), pop(), min() functions of stack. O(1) time was required for min() Add Answer
  • Q14. Convert a binary tree to a DLL such that a next node for DLL is selected in a top down order in zig-zag manner. O(n) space was allowed, but not O(2n) Add Answer

Interview Preparation Tips

Round: ONLINE ROUND
Experience: 1. 20 MCQ
2. 2 coding questions
• Find the diameter of a tree
• Print all anagrams pair in separate line

Round: Technical Interview
Experience: Find the next larger element in a BST, given key might not be in the BST. O(logn) time and O(1) space.Delete all nodes on a DLL whose data is a multiple of 5. O(n) time

College Name: BIT Mesra

Skills evaluated in this interview

5 Interview Rounds

Interview Preparation Tips

Round: Resume Shortlist
Experience: Shortlisted on CGPA>8

Round: Test
Experience: Only one test was conducted on data interpretations and then shortlisting based on test scores was done.

Round: Group Discussion
Experience: Group discussion was conducted and mostly related to their sector topics were given.

Round: HR Interview
Experience: Interview was of only one round and in it both HR and technical were completed in 15 minutes.

Skill Tips: Quantifying most of things in your resume and also in interview would give a good impression.Internships also does matter and questions on AVOVA in statistical courses are also focused.For chemical dept, Statistical design and analysis of experiments course gives the edge over others.Questions related to logistic regress were also asked.
College Name: IIT MADRAS

GTR Technology Interview FAQs

How many rounds are there in GTR Technology interview?
GTR Technology interview process usually has 1 rounds. The most common rounds in the GTR Technology interview process are One-on-one Round.
How to prepare for GTR Technology 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 GTR Technology. The most common topics and skills that interviewers at GTR Technology expect are SEO, Social Media, Web Analytics, Articles and Blogs.

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Accenture Interview Questions
3.9
 • 7.9k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.4k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all

GTR Technology Reviews and Ratings

based on 4 reviews

4.2/5

Rating in categories

4.0

Skill development

3.8

Work-Life balance

4.0

Salary & Benefits

3.6

Job Security

3.6

Company culture

4.0

Promotions/Appraisal

4.2

Work Satisfaction

Explore 4 Reviews and Ratings
Customer Service Associate
3 salaries
unlock blur

₹2.2 L/yr - ₹2.2 L/yr

Senior SEO Executive
3 salaries
unlock blur

₹2 L/yr - ₹3 L/yr

Explore more salaries
Compare GTR Technology with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview