Upload Button Icon Add office photos

Filter interviews by

Avineon India Associate Trainee Interview Questions and Answers

Updated 29 Mar 2024

Avineon India Associate Trainee Interview Experiences

3 interviews found

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

I applied via Referal and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Reasoning aptitude grammer

Round 2 - Technical 

(1 Question)

  • Q1. Auto cad and projects core subjects.
Round 3 - HR 

(1 Question)

  • Q1. About personal details

Interview Preparation Tips

Interview preparation tips for other job seekers - If you auto cad it would be a big plus

Associate Trainee Interview Questions & Answers

user image K.sai surya kantham

posted on 2 Jan 2022

I applied via Walk-in and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic questions ther are asked

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview is very gud and the hr aksed some basic questions. The work environment of the company is gud. iam very proud to the part of the company from 6 months.

Associate Trainee Interview Questions Asked at Other Companies

Q1. What is the difference between Web Browser and Search Engine?
Q2. You have to calculate the height of tree without cutting or measu ... read more
Q3. What is the difference between Accrual and Advance?
Q4. Why there are 2 Rates given for Rent in Sec 194I?
Q5. What do you mean by BRS? How will you do it?

I applied via Approached by Company and was interviewed before Jul 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 - Aptitude Test 

Aptitude, About AutoCAD

Round 3 - Technical 

(1 Question)

  • Q1. Questions on AutoCAD
Round 4 - HR 

(1 Question)

  • Q1. Personal Interview and About CTC

Interview Preparation Tips

Interview preparation tips for other job seekers - DO Trust one Word 👇
Whatever Happiness in Life But You believe in only one then definitely it will save from any situation

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Basic things.. same as any company

Round 2 - Coding Test 

Basic coding, 2 codes asked.

Round 3 - Technical 

(2 Questions)

  • Q1. Project discussion
  • Q2. Skills in my resule
  • Ans. 

    My skills include programming languages like Java, Python, and C++, as well as experience with databases and problem-solving.

    • Proficient in Java, Python, and C++ programming languages

    • Experience with databases such as MySQL and MongoDB

    • Strong problem-solving skills demonstrated through projects and coding challenges

  • Answered by AI
Round 4 - One-on-one 

(2 Questions)

  • Q1. Why incedo? Why job switch?
  • Ans. 

    Incedo offers exciting opportunities for growth and learning in the software engineering field. Job switch for new challenges and career advancement.

    • Incedo provides a dynamic work environment with cutting-edge technologies.

    • Opportunity to work on diverse projects and enhance skills.

    • Career growth prospects and learning opportunities at Incedo.

    • Desire for new challenges and professional development.

    • Alignment of career goal

  • Answered by AI
  • Q2. How re you useful for our organization

Interview Preparation Tips

Topics to prepare for Incedo Software Engineer Trainee interview:
  • Resume
Interview preparation tips for other job seekers - Be confident. Prepare basics very well.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Aptitude Test 

Coding C amd Apptitude

Round 2 - Technical 

(2 Questions)

  • Q1. String Reverse without predefined methods
  • Ans. 

    Reverse a string without using predefined methods

    • Iterate through the string from end to start and append each character to a new string

    • Use a temporary variable to swap characters from start to end until reaching the middle

    • Alternatively, convert the string to an array of characters, reverse the array, then join it back into a string

  • Answered by AI
  • Q2. Pattern programs
Round 3 - HR 

(2 Questions)

  • Q1. General discussion about family
  • Q2. Get to know the relocate

Skills evaluated in this interview

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

(1 Question)

  • Q1. What is the role of DNS in networking?
  • Ans. 

    DNS is a system that translates domain names to IP addresses, allowing users to access websites using human-readable names.

    • DNS stands for Domain Name System

    • It helps in translating domain names to IP addresses

    • DNS servers store a database of domain names and their corresponding IP addresses

    • DNS plays a crucial role in enabling users to access websites using human-readable names instead of IP addresses

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. What certifications have you earned?
  • Ans. 

    I have earned certifications in Java programming and AWS cloud computing.

    • Certification in Java programming

    • Certification in AWS cloud computing

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 Coding rounds with medium difficulty questions

Round 2 - Code Pairing 

(1 Question)

  • Q1. Given a problem statement and you pair with interviewer to solve it in real time
Round 3 - One-on-one 

(1 Question)

  • Q1. Technical interview mostly based on your experiences and language mentioned in the resume
Round 4 - HR 

(1 Question)

  • Q1. Cultural alignment round , who you see social change around you
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Oops concepts, Encapsulation, Abstraction in detail with example
  • Q2. Types of beans in Java
  • Ans. 

    Java has two types of beans: stateful and stateless beans.

    • Stateful beans maintain conversational state with the client, while stateless beans do not.

    • Stateful beans are typically used for long-running conversations, while stateless beans are used for short-lived operations.

    • Examples of stateful beans include session beans, while examples of stateless beans include message-driven beans.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Code to sort an Array in ascending order
  • Ans. 

    Use a sorting algorithm like bubble sort or quicksort to arrange elements in ascending order.

    • Use a sorting algorithm like bubble sort, quicksort, or merge sort to rearrange elements in ascending order.

    • For example, you can implement bubble sort to compare adjacent elements and swap them if they are in the wrong order.

    • Another example is using quicksort to divide the array into smaller subarrays and recursively sort them.

  • Answered by AI
  • Q2. Find the second greatest number in an array
  • Ans. 

    Iterate through the array to find the second greatest number.

    • Iterate through the array and keep track of the greatest and second greatest numbers.

    • Compare each element with the current greatest and second greatest numbers.

    • Update the second greatest number if a new number is found that is greater than the current second greatest but less than the greatest.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Let us assume we have an array of 0's and 1's,how would you find the first index for 1.
  • Ans. 

    Iterate through the array and return the index of the first occurrence of 1.

    • Iterate through the array using a loop.

    • Check each element of the array, if it is 1 then return its index.

    • If no 1 is found, return -1.

  • Answered by AI
  • Q2. SQL queries related to Order By and Group By

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on the basics.

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. First online assessment. Fundamental question from all computer science subjects.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for your projects very well. First elimination round in Technical interview is Project Round. Interviewer will ask you questions from your project in very detail.

Avineon India Interview FAQs

How many rounds are there in Avineon India Associate Trainee interview?
Avineon India interview process usually has 3-4 rounds. The most common rounds in the Avineon India interview process are Aptitude Test, Technical and HR.
How to prepare for Avineon India Associate Trainee 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 Avineon India. The most common topics and skills that interviewers at Avineon India expect are Communication Skills, AutoCAD, Arcgis, English Language and Laptop.
What are the top questions asked in Avineon India Associate Trainee interview?

Some of the top questions asked at the Avineon India Associate Trainee interview -

  1. Auto cad and projects core subjec...read more
  2. Basic questions ther are as...read more
  3. Questions on Auto...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 785 Interviews
Cyient Interview Questions
3.7
 • 279 Interviews
CitiusTech Interview Questions
3.4
 • 262 Interviews
View all
Avineon India Associate Trainee Salary
based on 34 salaries
₹1.1 L/yr - ₹2.2 L/yr
30% less than the average Associate Trainee Salary in India
View more details

Avineon India Associate Trainee Reviews and Ratings

based on 14 reviews

4.2/5

Rating in categories

3.8

Skill development

4.2

Work-life balance

3.5

Salary

3.7

Job security

4.1

Company culture

3.4

Promotions

3.6

Work satisfaction

Explore 14 Reviews and Ratings
GIS Engineer
80 salaries
unlock blur

₹1.4 L/yr - ₹4.2 L/yr

Associate
73 salaries
unlock blur

₹1.3 L/yr - ₹4.8 L/yr

Piping Engineer
50 salaries
unlock blur

₹1.4 L/yr - ₹5 L/yr

GIS Associate
46 salaries
unlock blur

₹1.7 L/yr - ₹4.2 L/yr

Associate Trainee
34 salaries
unlock blur

₹1.1 L/yr - ₹2.2 L/yr

Explore more salaries
Compare Avineon India with

Cyient

3.7
Compare

TCS

3.7
Compare

HCLTech

3.5
Compare

Infosys

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