Upload Button Icon Add office photos

Filter interviews by

Veer Aluminium Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: Data interpretation questions,english vocabulary(GRE BARRONS) is most important , apptitude questions and reasoning are from R S agarwal.
Total Questions: 65

Round: Technical Interview
Experience: Interviewer asked about your core subject littlebit and dont have any deep questions from c and c++.

Round: HR Interview
Experience: Given a topic and asked me to speak about that topic for one minute and given a situation asked me how would you react on that situation.

General Tips: It is easy to get a job in infosys comparatively other companies because you dont need to prepare for software side.
Prepare aptitude and reasoning from R S Agarwal and GRE BARRONS for vocabulary
College Name: NIT WARANGAL

Assistant Trainee Interview Questions & Answers

TCS user image YATISH KUMAR KESHWANI

posted on 9 Feb 2015

Interview Questionnaire 

22 Questions

  • Q1. What are the subjects you have command in?
  • Q2. Tell me about your final year project?
  • Q3. Tell me about the industrial training you had?
  • Q4. How does an induction motor works?
  • Q5. Why motor is rated in KW whereas Transformer and generator in KVA?
  • Ans. 

    Motors are rated in KW because they consume power, while transformers and generators are rated in KVA because they produce power.

    • Motors convert electrical energy into mechanical energy, so they consume power and are rated in KW.

    • Transformers and generators produce electrical energy, so they are rated in KVA based on their apparent power.

    • KVA takes into account both the real power (KW) and the reactive power (KVAR) produc...

  • Answered by AI
  • Q6. What is the type of motor used in ceiling fans?
  • Ans. 

    The type of motor used in ceiling fans is an induction motor.

    • Ceiling fans typically use single-phase induction motors.

    • These motors are designed to provide a constant speed and are efficient in converting electrical energy into mechanical energy.

    • The motor consists of a stator and a rotor, with the stator being the stationary part and the rotor being the rotating part.

    • The stator contains windings that create a rotating m...

  • Answered by AI
  • Q7. Hoe does a thermal power plant works?
  • Ans. 

    A thermal power plant generates electricity by converting heat energy into mechanical energy.

    • Thermal power plants use fossil fuels or nuclear energy to heat water and produce steam.

    • The steam drives a turbine, which is connected to a generator that produces electricity.

    • The heat source can be coal, natural gas, oil, or nuclear reactions.

    • The steam is condensed back into water and recycled in a closed-loop system.

    • Thermal p...

  • Answered by AI
  • Q8. Write a program to make a GP
  • Ans. 

    A program to generate a geometric progression (GP).

    • Take the first term, common ratio and number of terms as input.

    • Use a loop to calculate each term of the GP.

    • Print the generated GP as output.

  • Answered by AI
  • Q9. Write a program to print factorial using recursion
  • Ans. 

    A program to print factorial using recursion

    • Define a function to calculate factorial recursively

    • Base case: if the number is 0 or 1, return 1

    • Recursive case: multiply the number with factorial of (number - 1)

    • Print the factorial of a given number

  • Answered by AI
  • Q10. Write the logic to reverse a string without using string fnctions
  • Ans. 

    Logic to reverse a string without using string functions

    • Iterate through the string from the last character to the first

    • Create a new string and append each character to it in reverse order

  • Answered by AI
  • Q11. Tell me about yourself?
  • Q12. What are your hobbies?
  • Q13. Apart from your technical pat and studies what have you done in college?
  • Q14. What do you prefer, ethics or values?
  • Q15. Suppose you are working in office and somebody came and slapped you, what will you do?
  • Q16. Tell me about yourself for 5 minutes
  • Q17. What are your views about Mr. Narendra Modi as PM of India
  • Q18. Any extra curricular activities you have participated in school or college
  • Q19. What are your strengths?
  • Q20. What are your weaknesses?
  • Q21. Being an Electrical engineer why do you want to join an IT company
  • Q22. What do you know about TCS?

Interview Preparation Tips

Round: Test
Experience: In email writing one question was given describing the situation and maximum word limit. It has the keywords given to be used. 1 question, 10 minutes.This section is generally used to check your verbal ability. Make sure to use all the keywords given and complete it within time, with no spelling mistakes of course. Missing a keyword or a spelling mistake could be your goodbye to qualified list.The second section had 30 questions of quantitative aptitude. Duration 70 mins. There are questions from various sections, such as Time and speed, Time and distance, Data interpretation,etc.There are 2-3 star marked questions which have more weight-age. There my also be a dummy question who doesn't have any matching answer. Make sure uh don't attempt these questions.26-27 questions is the cut-off for qualified list.But you have to do the email writing part correctly.
Tips: Practice email writing online from various websites such as technicalbaba.com, indiageeks.comPractice quantitative aptitude as it is a must in any interview you will face. you can use R.S.Agarwal or CAT material.
Duration: 90 minutes
Total Questions: 30 + 1

Round: Interview
Experience: Greeting the interviewer is a must. Be confident and enthusiastic. Have your resume properly ready. Technical questions from your subject will be asked. Not a must that you should know any programming language like C, C++, JAVA.
Tips: Prepare 3-4 subjects of your core branch. Never try to flatter the interviewer. Be confident and answer the questions appropriately. Dont say directly " I DON'T KNOW". Atleast try even if you dont know the answer.

Round: Interview
Experience: There are certain questions which doesnt have direct answers. You have to be diplomatic about them. You should be able to see all the possible situation when a question like that is asked.

Round: Interview
Experience: The HR head may manipulate you, try to stress you, etc. Be calm and confident.Think before you speak. Prepare your answers before hand for general questions. Write your introduction on a paper and prepare it well so that you speak it confidently...
Tips: Be yourself. Be confident. Never argue with the interviewer.All the best

General Tips: Be presentable in the interview. Wear a watch. Show respect to the interviewer. Prepare 3-4 technical subjects well. Read last 15 days newspaper. Be confident when you speak. Improve your English if you are weak in it.
Skill Tips: ""
Skills: Verbal ability, Attitude, Technical knowledge, General knowledge
College Name: IMS ENGINEERING COLLEGE, GHAZIABAD
Motivation: TCS is a semi government company with a decent package and high job security.

Skills evaluated in this interview

Interview Questionnaire 

7 Questions

  • Q1. Say something about yourself?
  • Q2. Asked on college project
  • Q3. Which programming language do you know?
  • Ans. 

    I know multiple programming languages including Java, Python, and C++.

    • Proficient in Java with experience in developing web applications using Spring framework

    • Familiar with Python for data analysis and machine learning

    • Experience in C++ for developing high-performance applications

    • Also familiar with HTML, CSS, and JavaScript for front-end development

  • Answered by AI
  • Q4. What is class, encapsulation and other feature of OOP?
  • Ans. 

    Class is a blueprint for creating objects, encapsulation is the process of hiding data and methods within a class.

    • Class is a template or blueprint that defines the properties and behaviors of an object.

    • Encapsulation is the process of bundling data and methods together within a class, hiding the internal details from the outside world.

    • Other features of OOP include inheritance, polymorphism, and abstraction.

    • Inheritance a...

  • Answered by AI
  • Q5. Write a program to find the sum of the squares of each term of Fibonacci series
  • Ans. 

    Program to find the sum of squares of each term of Fibonacci series

    • Generate Fibonacci series using loop or recursion

    • Calculate square of each term

    • Add all squares to get the sum

  • Answered by AI
  • Q6. What can I do for you?
  • Q7. Why would you like to join Cognizant?
  • Ans. 

    I would like to join Cognizant because of its reputation as a leading global technology and consulting company.

    • Cognizant has a strong presence in the industry and is known for its innovative solutions.

    • I am impressed by Cognizant's commitment to digital transformation and its ability to deliver value to clients.

    • The company offers excellent career growth opportunities and a supportive work environment.

    • Cognizant's diverse...

  • Answered by AI

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

Interview Preparation Tips

Round: Case Study Interview
Experience: No one would be eliminated in this round. They will provide you ample time - around 40-50 minutes to write a response on a case study. The topic would be new and unheard of, but you can think and write peacefully in that amount of time.
Tips: Make sure you highlight the points made and do remember them for the Group Discussion phase.

Round: Group Discussion
Experience: One-third of the guys will get selected for the interviews from each group of 8-10 guys. The topic of the GD would be same as the case study. Now, its time for you to recall the points you made during the writing section. The GD will last for around 15-20 minutes.
Tips: Good communication skills, relaxed but expressive tone. Don’t be silent and try to speak up whenever you get a chance. Try to bring new air into the discussion and think from all the different perspectives. You should speak at least 2-3 times, even if you just say 1-2 sentences each time. That will do. They also individually ask each person to speak, specifically those who could not speak, but you had better not be that guy or girl. There is no need to fight for summarizing the GD. Try to show that you are involved throughout the GD.

Round: HR Interview
Experience: There will be two guys, one from technical and the other HR. They both ask questions at the same time and they discuss among each other as well. They mostly try to detect any fraud or fake thing you did in your project or intern. All the technical questions come from your CV. So, your fate is kind of in your hands only.
Tips: Prepare hard for Projects, Internships etc. Don’t panic. They try to see how you react in a pressure situation and actually behave as if you are not impressing them. Just be calm and keep on speaking. If there is something you want to say and they interrupt you, its better you ask them to give you a chance to explain it in details. Do have a few questions in mind to ask them about your job profile and Wipro. That is the final nail in the coffin.

Skill Tips: A minimum CGPA of 8.0 was mentioned and later they relaxed it to 7.9. They were giving quite some importance to the Internships and Projects undertaken and were trying to judge if you actually did something new and genuine. They were dwelling deep into it. As I said, prepare well for them just like you prepare for BTech Project Viva. They do ask a lot of questions.HR questions should be prepared thoroughly. A background check of Wipro and IT sector companies is a must. Prepare well for group discussions. Try to get background information about the IT sector and the company. Prepare your CV thoroughly.
College Name: IIT KHARAGPUR

Interview Preparation Tips

Round: Resume Shortlist
Experience: Fundae session by seniors and a resume workshop by some company. Also, sent resume to some seniors for their opinions and I think this was an important part of it.
Tips: I suggest Pre-placement talks, are a must. What is more important is not to believe the PPTs completely and ask seniors about the level of fundaes (finance/tech/otherwise) and preparation required to crack the company. There is a lot of good material on ATKEARNEY and other website. Other than that I used the material available for years.

Round: Interview
Experience: Final offers in my division were 12. There were two levels of case interviews. The first interview was to judge if I would be suitable for the Strategy and Operations profile or for the Technology and Integration profile. There were two interviewers. They explained to me both the profiles and asked me what I wanted to choose and why. Then asked me some general HR questions like why consulting, why you etc. Then started off with an informal case study. It was about a new company which wanted to start a new low cost airline and had no experience in this market till now. It has two options: either to acquire an existing company or to build up all processes on their own. I was first asked to qualitatively mention what all aspects I would consider. After that they asked me what new things could this company do. They were pretty satisfied with my answers and I was confident of getting listed in the next round. In the next round there was single interviewer who was looking quite senior. Asked some HR questions. One case study about a consumer durables dealer which was again qualitative. Asked some HR questions that's it.

General Tips: Lack of interaction with seniors throughout IIT stay was one thing for which I had to pay. I had no seniors in my wing and I had no fundae of the amount of preparation required.
So make sure that you have certain information.
College Name: IIT-Bombay

Interview Questions & Answers

HCLTech user image Anonymous

posted on 13 Apr 2015

Interview Questionnaire 

10 Questions

  • Q1. Do you know Java? ---Yes
  • Ans. 

    Yes, I know Java.

    • I have experience in Java programming.

    • I am familiar with Java syntax and concepts.

    • I have worked on Java projects in the past.

  • Answered by AI
  • Q2. What is Thread and why are they used? ---told
  • Q3. What is JDBC? ---told
  • Q4. How to retrieve data from back end? ---told
  • Ans. 

    To retrieve data from the back end, you can use APIs or database queries.

    • Use API calls to fetch data from the back end server.

    • Execute database queries to retrieve data from the database.

    • Parse the response or query result to extract the required data.

    • Handle any necessary authentication or authorization for accessing the back end.

    • Examples: GET request to an API endpoint, SELECT query in SQL.

  • Answered by AI
  • Q5. Explain OOP concepts. ---explained the program
  • Ans. 

    OOP is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOP stands for Object-Oriented Programming

    • It focuses on creating objects that interact with each other to solve a problem

    • Encapsulation, inheritance, and polymorphism are key concepts in OOP

    • Example: A car object can have properties like color, make, and model, and methods like start and stop

    • OOP promotes code reusability and ma

  • Answered by AI
  • Q6. He gave me Java program and asked me to explain how memory is allocated? ---Explained with diagram
  • Q7. How was the day? ---A bit lagging one
  • Q8. Why? ---My token number is 197, I need to wait for long time since morning
  • Q9. About yourself? ---told
  • Q10. Tell me a special quality of yours which is not mentioned in your resume? ---Told

Interview Preparation Tips

Round: Test
Experience: 4 modules :
1. Computer Programing :- Code is given,we need to find output, basic questions in Java, C, Data Structures, DBMS.
2. Quantitative Aptitude :- Easy, Basics in Simple Interest, Profit&Loss, Numbers, Logs, Time and Work, Time Speed Distance, Prob, Perm&Comb.
3. Logical Reasoning :- Blood relations, Directions, Data sufficiency, Puzzle, Arrangements (circular & linear).
4. English :- Fill in appropriate meaning, Antonyms, Synonyms, Arrange the sentences, and 2 huge paragraphs (4+4=8 questions).

Out of 2000 members 400 were selected. I'm one among them.

Round: HR Interview
Experience: After 2 days I received mail from HCL (offer letter and letter of intent).
Tips: HR round is to test our communication only..

College Name: NA

Skills evaluated in this interview

Interview Questions & Answers

Capgemini user image Harika nambula

posted on 2 Apr 2015

Interview Preparation Tips

Round: Resume Shortlist
Experience: This is the first step of being eligible for the company.It depends upon the eligibility criteria given by the company.
Tips: Most companies ask for 60% right from 10th to the present degree..make sure you have 60% uptil present degree

Round: Test
Experience: This is the first feel good experience in the entire selection process,getting thtough the aptitude and getting shortlisted is the first step which takes us to the other rounds.
Tips: Here managing the time is really important thing..being smart is what all matters...Every  section should be given equal importance as there would be sectional cutoff.
Total Questions: 90 mins

Round: Group Discussion
Experience: The topic is infact related to us in common..we all know about smart phones advantages and disadvantages..i spoke both pros and cons with confidence nd without deviating from topic.
Tips: Utilise the time when u get to speak.Dont be over confident or show attitude towards others or fight with your group people..if anyone is deviating from the topic you hav rights to say in a polite manner.
Duration: 30 mins minutes

Round: HR Interview
Experience: My interview is combined technical and HR interview which is infact really cool..1 question is related to technical..other logical..next is about my personal life..it went on like this..my interview is nearly for an hour because i am the 1st candidate to attend interview for capgemini after the group discussion
Tips: Be cool..relaxed..make up your mind..have a pleasant smile on your face..dont be tensed..if you dont know anything..just reply sorry sir/maam..be confident..your every move is noticed by them..be polite.

General Tips: This is easy to achieve when you have good communication skills,time management and analytical ability..just prepare yourself with these and be confident
Skill Tips: Prepare yourself with lots of logical questions and make sure you have good communication skills
Skills: Logiacal ability , Communication
College Name: Sathyabama university
Motivation: The company's preplacement talk made me feel really good and the motives of the company are awesome..the way they organise activities and  treat employees made me to apply for capgemini
Funny Moments: In the group discussion round the judge asked us to give marks for ourselves for what we have spoke..i hv given 9 marks and those are the final marks given for us..

Interview Questionnaire 

2 Questions

  • Q1. Why would you like to join our company
  • Ans. 

    I am excited to join your company because of its reputation for excellent customer service and commitment to employee development.

    • I have researched your company and am impressed by the positive reviews from customers and employees alike.

    • I am excited about the opportunity to work with a team that values collaboration and innovation.

    • I am confident that I can contribute to the company's success by utilizing my strong comm...

  • Answered by AI
  • Q2. Online versant

Interview Preparation Tips

Round: Test
Experience: The test was all about how well you understand and write the English language as the company totally depends on the retail process, their high requirement was on the language understandability.
Tips: There are no much tips, Just be good with the English language.
Duration: 60 minutes

Round: Interview
Experience: I spoke about how well the company is doing in the present state and also few great achievements of the company.
Tips: Know about the company well before you attend any interview.

Round: Interview
Experience: The versant exam was of 6 rounds which was all about the communication skills and spontaneous answers to the question given ending with a specified length Email writing.

Skill Tips: Be good at communicating with the people around and also with good clever answers when asked.
Skills: Communication skills
College Name: Nalla Malla Reddy Engineering College

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

Interview Questions & Answers

IBM user image Anonymous

posted on 21 Jan 2015

Interview Preparation Tips

Round: Test
Experience: It’ll be tough. For CS and ECE people, it will be a smooth ride if you know algorithms and data structures.

Round: Interview
Experience: I was asked to solve puzzles. Mainly sorting algorithms; heap and bubble. To sum up, a lot of programming knowledge and algorithm analysis will be required.
Tips: Don’t fumble, it’s very important to be confident. If there’s something you don’t know, don’t hesitate to accept it.

College Name: IIT KHARAGPUR

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k 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

Veer Aluminium Reviews and Ratings

based on 3 reviews

3.7/5

Rating in categories

3.7

Skill development

3.7

Work-Life balance

3.7

Salary & Benefits

3.0

Job Security

3.7

Company culture

3.5

Promotions/Appraisal

3.7

Work Satisfaction

Explore 3 Reviews and Ratings
Compare Veer Aluminium 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