Premium Employer

i

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

Infosys Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Infosys Assistant Trainee Engineer Interview Questions and Answers

Updated 28 Feb 2017

Infosys Assistant Trainee Engineer Interview Experiences

1 interview found

I appeared for an interview in Sep 2016.

Interview Questionnaire 

16 Questions

  • Q1. Introduce yourself
  • Ans. 

    I am a recent graduate with a degree in engineering, eager to learn and grow in the field of engineering.

    • Recent graduate with a degree in engineering

    • Passionate about learning and growing in the field

    • Eager to gain hands-on experience as an Assistant Trainee Engineer

  • Answered by AI
  • Q2. Tell me about final year project
  • Ans. 

    Designed and implemented a smart irrigation system using IoT technology

    • Researched various IoT sensors and microcontrollers for data collection

    • Developed a mobile application for remote monitoring and control of the irrigation system

    • Implemented machine learning algorithms to optimize water usage based on weather forecasts

    • Conducted field tests to validate the system's effectiveness

    • Presented project findings at a universit...

  • Answered by AI
  • Q3. Tell me about summer training
  • Ans. 

    Summer training is a valuable opportunity for students to gain practical experience in their field of study.

    • Summer training provides hands-on experience in a real-world work environment.

    • It allows students to apply theoretical knowledge to practical situations.

    • Internships during summer training can lead to job opportunities after graduation.

    • Summer training helps students develop professional skills and build a network o...

  • Answered by AI
  • Q4. Toughest problem in the summer training project ? mysql syntax
  • Ans. 

    The toughest problem in the summer training project was dealing with complex MySQL syntax.

    • Understanding and implementing complex joins and subqueries

    • Handling nested queries and optimizing query performance

    • Dealing with advanced MySQL functions and operators

    • Resolving syntax errors and debugging SQL statements

  • Answered by AI
  • Q5. Describe how its different from standard sql ........... Bluff was caught i didn't do anything in summer training
  • Ans. 

    Standard SQL is a general-purpose programming language for managing relational databases, while Assistant Trainee Engineer focuses on specific tasks and functionalities.

    • Assistant Trainee Engineer is a specialized version of SQL that is tailored for the needs of trainee engineers.

    • It may have additional features or functionalities specific to the engineering field.

    • Assistant Trainee Engineer may have a different syntax or...

  • Answered by AI
  • Q6. What is Class and Object ? Got nervous couldn't explain
  • Q7. What is method? ...... Thinks got more complicated now I said its like function but he was not convinced
  • Q8. You did a course on Algorithm by NPTEL what was it about ? Designing an algo efficently
  • Q9. Practical exapmle ? Sieve of eratosthenes came to rescue
  • Q10. CALLED FOR A RE INTERVIEW IN ANOTHER PANEL
  • Q11. Introduce yourself ... Mentioned SQL and Algorithm to pull him in my zone
  • Q12. There is a employee table (empno,.....dept) Write a query to find the details of employee who get the maximum salary from each department .Suppose 3 department so 3 employee details with topper from each ...
  • Ans. 

    Query to find employees with the highest salary in each department from the employee table.

    • Use a subquery to find the maximum salary for each department.

    • Join the employee table with the subquery to get full details of the employees.

    • Example SQL: SELECT * FROM employee WHERE (dept, salary) IN (SELECT dept, MAX(salary) FROM employee GROUP BY dept);

    • This will return one employee from each department with the highest salary.

  • Answered by AI
  • Q13. Toughest program till now ? Interview bit helped here stated a problem from that site
  • Q14. How much did you score in algorithm ?
  • Ans. 

    I scored 90% in algorithm.

    • I scored 90% in the algorithm course.

    • I consistently performed well in algorithm assignments and exams.

    • I have a strong understanding of various algorithmic concepts.

    • I have implemented algorithms in projects and achieved successful outcomes.

  • Answered by AI
  • Q15. How can you optimize any algorithm ? Stated few things then explained how prime numbers are found generally O(n^2) then how Sieve of eratosthenes did it in o((n)^0.5*log n)
  • Ans. 

    Optimizing algorithms involves reducing time and space complexity. Example: Sieve of Eratosthenes for finding prime numbers.

    • Identify the bottleneck in the algorithm and try to reduce it

    • Use efficient data structures like hash tables, trees, etc.

    • Reduce unnecessary computations and iterations

    • Use dynamic programming to avoid redundant calculations

    • Example: QuickSort algorithm has an average time complexity of O(nlogn) compa...

  • Answered by AI
  • Q16. Any questions ?
  • Ans. 

    Yes, I have a few questions regarding the job role and responsibilities.

    • Can you provide more information about the training program for this role?

    • What are the key skills required for this position?

    • What are the opportunities for growth and advancement within the company?

    • Can you tell me more about the company culture and work environment?

    • What are the biggest challenges faced by the team in this role?

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: The verbal was tough with two reading comprehension time management was tough .
Tips: There is a general saying clear the aptitude and you are almost through and to clear infosys aptitude you are almost in. Focus on verbal that will decide you are in or out
Total Questions: 60

Round: Technical Interview
Experience: It was very bad interview I knew I was going to be rejected
Tips: Don't be overconfident I thought he might not go in training so just a small bluff would do

Round: Technical Interview
Experience: This interview was much better and I knew I am going to be selected after this
Tips: Lesson learnt in introduce yourself try to blabber about thing you want him to ask him it may help you . 30 people couldn't clear technical round

Skill Tips: If you have 30 days solve apti on all 30 days .And if you want to focus on interview maximum 2 hours not more than that .
Skills: Communication, OOPS definition , SQL, Algorithm
College Name: st.thomas college of engineering and technology

Skills evaluated in this interview

What people are saying about Infosys

View All
yedabhai
2d
works at
Hyperpure
Are we not even safe in our own workplaces?
An Infosys employee was arrested for secretly recording women in the office washroom. Over 30 videos were found on his phone. This isn't just shocking, it's horrifying. Offices are meant to be safe, respectful spaces. 🙎 When will companies truly prioritize safety and surveillance in all corners, not just the visible ones?
FeedCard Image
Got a question about Infosys?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

12 Questions

  • Q1. General question.. Tell me about urself
  • Q2. Tell me about your intern project and explain briefly,questions regarding on it
  • Q3. Write a program on largest of three numbers
  • Ans. 

    A program to find the largest of three numbers.

    • Take three numbers as input from the user.

    • Compare the first two numbers and store the larger one in a variable.

    • Compare the variable with the third number and store the largest one in the same variable.

    • Print the variable as the largest number.

  • Answered by AI
  • Q4. How security will provide in dbms?
  • Ans. 

    Security in DBMS is provided through access control, authentication, encryption, and auditing.

    • Access control restricts unauthorized access to data.

    • Authentication ensures that only authorized users can access the database.

    • Encryption protects data from unauthorized access by encrypting it.

    • Auditing tracks and logs all activities in the database for accountability.

    • Examples of security measures include password protection, ...

  • Answered by AI
  • Q5. Do u like SE? I said No,then they asked if ill give project under SE in your training what youll do? i said for me work is important rather than subject..(Biscuit)
  • Q6. Few questions on java about swings,applets
  • Q7. Last part is about my academic project i.e., on Data Mining explained briefly
  • Q8. Tell me about urself
  • Ans. 

    I am a recent graduate with a degree in engineering, passionate about learning and applying new technologies.

    • Recent graduate with a degree in engineering

    • Passionate about learning and applying new technologies

    • Strong problem-solving skills

    • Experience with project management

    • Excellent communication skills

  • Answered by AI
  • Q9. Again about my intern project
  • Q10. Why TCS?
  • Ans. 

    TCS is a global IT services company known for its innovative solutions and diverse opportunities for career growth.

    • TCS has a strong reputation in the IT industry for delivering high-quality services

    • TCS offers a wide range of projects and technologies to work on, providing valuable learning opportunities

    • TCS has a global presence, allowing for exposure to different cultures and markets

    • TCS invests in employee training and...

  • Answered by AI
  • Q11. Are u willing to work in the night?
  • Ans. 

    Yes, I am willing to work in the night as required for the job.

    • I understand that working night shifts may be necessary in certain situations.

    • I am flexible with my schedule and can adapt to working at night.

    • I have previous experience working night shifts and can handle the challenges that come with it.

  • Answered by AI
  • Q12. Are u comfortable to relocate?
  • Ans. 

    Yes, I am comfortable to relocate.

    • I am open to new opportunities and experiences in different locations.

    • I am willing to adapt to new environments and cultures.

    • I understand that relocation may be necessary for career growth and development.

    • I have previously relocated for educational or professional purposes.

    • I am excited about the prospect of exploring new places and meeting new people.

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: The interview was too cool and I felt tensed at the starting point but I didn't show it on my face..They were impressed about my boldness,eye contact, and praising about the company.Finally the TR went well.
Tips: U should have pleasent smile.(Don't smile much)
Eye contact
Voice clarity
If u don't know the answer so frankly that no idea sir
If ur confident with ur answer then say perfectly either they confuse u should be on ur word.
Body language should be perfect.

Round: HR Interview
Experience: HR is quite interesting.. Everything was cool and pleasent no need to worry in HR ..
Tips: Same tips which I have mentioned in TR
U should praise ur company and should say that is the best.

Round: Resume Shortlist
Experience: There is no selection in this

Round: Test
Experience: Actually I'm having cgpa above 8.. So no need to write the test.

Round: Group Discussion
Experience: No GD in TCS

Round: Group Activity
Experience: No

Skill Tips: It should be perfect.
Skills: Basic Knowledge Of DBMS, Java Programming, 1)communication
College Name: GITAM University, Visakhapatnam

Skills evaluated in this interview

Assistant Trainee Engineer Interview Questions Asked at Other Companies

asked in Infosys
Q1. Given an employee table (empno, ..., dept), write a query to find ... read more
asked in Infosys
Q2. Describe how its different from standard sql ........... Bluff wa ... read more
asked in Infosys
Q3. Toughest problem in the summer training project ? mysql syntax
Q4. What is the minimum thickness of ceiling plastering?
asked in Infosys
Q5. What was your score in algorithms?

I appeared for an interview before Feb 2016.

Interview Questionnaire 

1 Question

  • Q1. C language

Interview Preparation Tips

Round: Technical Interview
Experience: They asked about present innovation or trend going in it field

College Name: BMS College Of Engineering, Bangalore

Interview Preparation Tips

Round: Test
Experience: Click to add Your Experience
Tips: Go through campusgate site
Duration: 90 minutes
Total Questions: 30

Round: Technical Interview
Experience: Click to add Your Experience
Tips: Click to add

College Name: Vidyalankar Institute Of Technology

Interview Questionnaire 

1 Question

  • Q1. C language and Python based basic questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basics strong and be confident.

I applied via AmbitionBox and was interviewed in Mar 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Python, c, c++

Round 2 - HR 

(1 Question)

  • Q1. Hi what is ur NAME? Ans:my self ranjeeta

Interview Preparation Tips

Topics to prepare for Wipro Assistant Trainee Engineer interview:
  • Python
Interview preparation tips for other job seekers - Hi I am ranjeeta complete my pg, and sensierly I am working
Round 1 - Aptitude Test 

3hr test with ds , algo, logical reasoning, verbal, coding

Round 2 - Technical 

(1 Question)

  • Q1. 1. Introduction 2. Data structure 3. oops 4. based on resume
Round 3 - HR 

(4 Questions)

  • Q1. What is your family background?
  • Ans. 

    I come from a supportive family that values education and hard work, which has greatly influenced my career aspirations.

    • My father is an engineer, which inspired my interest in the field.

    • My mother is a teacher, emphasizing the importance of education.

    • I have a younger sister who is currently pursuing her studies in science.

    • Family gatherings often involve discussions about our professional experiences and aspirations.

  • Answered by AI
  • Q2. Why should we hire you?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your core concepts and make sure you know all the topics mentioned in your cv.
Are these interview questions helpful?

I applied via Naukri.com and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Technical questions : 1)oops concepts 2)plsql cursors, triggers, procedures 3)quick sort algorithm

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with your resume. None of the questions were asked out of resume.

Interview Questionnaire 

2 Questions

  • Q1. Tell me about yourself
  • Q2. Reverse string
  • Ans. 

    Reversing a string involves rearranging its characters in the opposite order, which can be done using various methods.

    • Use built-in functions: In Python, you can reverse a string with slicing: `reversed_string = original_string[::-1]`.

    • Iterative approach: Loop through the string from the end to the beginning and build a new string.

    • Using recursion: Define a function that calls itself with a smaller substring until it reac...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Average level interview

I applied via Recruitment Consulltant and was interviewed before Nov 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 tips
Round 2 - Assignment 

MCQ's and Coding Problem - 1 related with Java, RDBMS, JS

Round 3 - Technical 

(1 Question)

  • Q1. Basic Question on Java and Project related questions
Round 4 - HR 

(1 Question)

  • Q1. Introduction, Discussion regarding the roles and salary negotiation.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare with basics and be confident with the answers.

Infosys Interview FAQs

What are the top questions asked in Infosys Assistant Trainee Engineer interview?

Some of the top questions asked at the Infosys Assistant Trainee Engineer interview -

  1. There is a employee table (empno,.....dept) Write a query to find the details o...read more
  2. Describe how its different from standard sql ........... Bluff was caught i did...read more
  3. Toughest problem in the summer training project ? mysql syn...read more

Tell us how to improve this page.

Join Infosys Creating the next opportunity for people, businesses & communities

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.7
 • 8.7k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.7
 • 3.4k Interviews
LTIMindtree Interview Questions
3.7
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.5k Interviews
View all
Technology Analyst
55.8k salaries
unlock blur

₹4.8 L/yr - ₹11.1 L/yr

Senior Systems Engineer
53.8k salaries
unlock blur

₹2.5 L/yr - ₹6.3 L/yr

Technical Lead
35.1k salaries
unlock blur

₹9.4 L/yr - ₹16.4 L/yr

System Engineer
32.5k salaries
unlock blur

₹2.4 L/yr - ₹5.3 L/yr

Senior Associate Consultant
31.1k salaries
unlock blur

₹8.1 L/yr - ₹15 L/yr

Explore more salaries
Compare Infosys with

TCS

3.6
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Accenture

3.7
Compare
write
Share an Interview