Upload Button Icon Add office photos

Filter interviews by

Andavar Texchem Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Interview Questionnaire 

4 Questions

  • Q1. Tell about yourself
  • Q2. Example of Team work
  • Q3. Any Situation : Ex: One small island,only one person,island is full of dry grass and it is firing,then how he will escape
  • Ans. 

    The person can escape the island by creating a firebreak or finding a body of water.

    • Create a firebreak by clearing a path of grass around oneself to prevent the fire from spreading.

    • Look for a body of water such as a lake, river, or ocean to escape the fire.

    • If no water source is available, try to find a sheltered area with less dry grass to wait for the fire to pass.

    • Use any available tools or materials to help create a

  • Answered by AI
  • Q4. One situation people appreciated you

Interview Preparation Tips

Round: Test
Experience: APTITUDE: General questions about ages,interests,trains,percentages etc. VERBAL: Antonyms,synomys,two
passages,basic English grammar. REASONING: Blood relations,graphs,sillograms etc.
Total Questions: 85

Round: HR Interview
Experience: Written test is some what difficult ,interview is easy.

General Tips: Prepare well for written test. Only HR Interview is easy. ALL THE BEST
College Name: NIT WARANGAL

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

Interview Preparation Tips

Round: Test
Experience: Questions were based on basic maths and english but time duration as per level of questions was very less. I was hardly able to attempt 90 question.
Tips: Firstly attempt questions from the topics in which you are more comfortable. Don't spend much time in thinking.
Duration: 60 minutes
Total Questions: 120

Round: Technical Interview
Experience: As I am from statistics background ao they asked me questions from regression and inference in depth. Rest all question were from basic stats. And yes they ask question from everything what is there in your resume.
Tips: Be ready for question from everything what is there in your resume and prepare them in advance.

Round: HR Interview
Experience: It was easy and hardly last for 10 min
Tips: Be confident on whatever you speak and prepare for general HR questions in advance.

College Name: IIT BOMBAY

Interview Preparation Tips

Round: Resume Shortlist
Experience: Candidates with CG equal to or higher than 8.0 were selected.

Round: Test
Experience: It was divided in 2 sets of 45 minutes each.
Coding: To write a function to find if a string is palindrome or not. 
Verbal+quant: These were CAT model questions.
Duration: 90 minutes

Round: Interview
Experience: There were 2 rounds of this interview. Both were HR and questions based on resume and some general questions were asked.
Tips: I think I was selected because of my CG, coding skills and communication skills.

General Tips: If you're preparing for core, make sure you start revising your subjects soon. Keep your notes and concentrate on structures.
Skill Tips: I started my preparations in November by going through case study material available in lan and solving CAT questions.
College Name: IIT MADRAS

Interview Questions & Answers

Deloitte user image Anonymous

posted on 20 Jan 2015

Interview Questionnaire 

2 Questions

  • Q1. Why IT consultancy?
  • Q2. What would be the advantages of chemical background?

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 & Answers

HCLTech user image Anonymous

posted on 11 Apr 2015

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself
  • Q2. Why should I hire you
  • Q3. Are you willing to relocate

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

Interview Preparation Tips

Round: Test
Experience: Simple Aptitude - just brush up basics - be quick in your solving.
Duration: 120min minutes
Total Questions: 50+10

Round: HR Interview
Experience: Pretty simple interview round - was asked few HR questions. Majorly it was a informative session where i was told about the job profile and tested whether I was willing to take up the responsibility & commitment.

College Name: IIT MADRAS
Motivation: Just applied gen. Got through.

Interview Questionnaire 

6 Questions

  • Q1. Given a Linked list , print yes if it is palindrome else print no
  • Q2. Print the level order traversal of the binary tree in the spiral form
  • Ans. 

    Print the level order traversal of binary tree in spiral form

    • Perform level order traversal of the binary tree

    • Alternate the direction of traversal for each level

    • Use a stack to reverse the order of nodes in each level

    • Print the nodes in the order of traversal

  • Answered by AI
  • Q3. Maximum of all subarrays of size k(Expected Time Complexity O(N). Input : arr[] = {1, 2, 3, 1, 4, 5, 2, 3, 6} k = 3 Output : 3 3 4 5 5 5 6
  • Ans. 

    Find the maximum element in each subarray of size k in a given array.

    • Iterate through the array from index 0 to n-k.

    • For each subarray of size k, find the maximum element.

    • Store the maximum elements in a separate array.

    • Return the array of maximum elements.

  • Answered by AI
  • Q4. Given Two sorted array of size size n each. Find the Kth largest element in these two array (Expected Time Complexity Log(n))
  • Ans. 

    To find the Kth largest element in two sorted arrays, we can use the merge step of merge sort algorithm.

    • Merge the two arrays into a single sorted array using a modified merge sort algorithm.

    • Return the Kth element from the merged array.

  • Answered by AI
  • Q5. Website having several web-pages. And also there are lot many user who are accessing the web-site. say user 1 has access pattern : x->y->z->a->b->c->d->e->f user 2 has access pattern : z->a->b->c->d user 3...
  • Q6. Given two array , one of size m+n and contains m element and other position are empty , 2nd array is of size n and contains n element. both array are sorted , now merge the second array to first one such t...
  • Ans. 

    Merge two sorted arrays into one sorted array with expected time complexity of (m+n).

    • Use a two-pointer approach to compare elements from both arrays and merge them into the first array.

    • Start comparing elements from the end of both arrays and place the larger element at the end of the first array.

    • Continue this process until all elements from the second array are merged into the first array.

  • Answered by AI

Interview Preparation Tips

Round: Test
Duration: 90 minutes

Skills: Algorithm , OS, DBMS, data structure
College Name: NIT BHOPAL

Skills evaluated in this interview

Banking Interview Questions & Answers

ICICI Bank user image Anonymous

posted on 24 May 2015

Interview Questionnaire 

8 Questions

  • Q1. Project finance questions based on lenders perspective, borrowers perspective, loan syndication
  • Q2. How to decide on limit of debt etc
  • Q3. Comercial bank management questions. Gross NPA, Net NPA, Provisions, NIM, Other performnace measures of banks etc
  • Q4. Questions based on whatever Finance points you have mentioned on your CV
  • Q5. They asked some sector specific knowledge related to summer internship and workexperience
  • Q6. The interviewers asked me why did I chose to specialise in Finance
  • Q7. They asked me the relevance of your previous work ex with the profiles applied for
  • Q8. Mostly other questions were CV based

Interview Preparation Tips

Round: HR Interview
Experience: I had a good attitude in the interview, was always confident and smiling even when they were trying to put stress. Secondly i was very true and genuine in whatever answers I gave and that worked positive for me

General Tips: For interview which was mostly CV based it is important to know every line of your interview. Some people wrote projects on their CV which they were not through with. So its very important to be aware of each and every line of your CV.Don’t be very aggresive and don’t enter into unnecessary details regarding the job. Be calm, humble and flexible during your Interview. speak few good points in GD and don’t make it too noisy.
Skills: Banking, Economics
College Name: NA

Interview Questions & Answers

IBM user image Anonymous

posted on 3 Feb 2015

Interview Preparation Tips

Round: Test
Experience: Counter, types, difference, synchronous vs asynchronous Various designs using logic gates like full adder, multiplexer, XOR, XNOR, D-FF etc. Design of inverter with different rise and fall times. Anything invented by company or any big achievement of company must be known. eg- for IBM they asked me Who designed RISC microprocessor as it was designed by IBM.
Tips: Just practice from any book available in market for aptitude and reasoning book by R.S.Aggarwal is sufficient. try to solve some question papers. Be calm. Don’t be nervous when questions are hard because the level of questions will be same for everyone.

Round: Interview
Experience: Questions on Favorite Subject(at least 2), Project and Internships.
Tips: Be confident If you don’t know say NO. However if possible try to answer something and you may say that you forgot and if time will be given you can solve. After getting the question, think and then reply. At the end ask some questions which will show your enthusiasm to for them. Smile. Sell yourself. Don’t be nervous and get rejected by underperforming.

Round: Interview
Experience: Introduction About Company, PPT etc. About your hobbies/interests/home/paren’ts/previous places you visited or stayed. Your extra curricular activities.
Tips: Say about your strengths, use the usual ones like hardworking, honest and so on.Substantiate with examples which happened in your life and you handled it properly. Any social activity will add much advantage.

General Tips: For written test R S Agarwaal aptitude and reasoning is sufficient. For Technical, whatever is studied in curriculum is sufficient. Also project and internship parts should be well known. At last One thing one should keep in mind that one has to sell oneself so do whatever you think can describe yourself and that will be beneficial for your customer(company). All the best for all the participants from my heart and soul.
Skill Tips: CGPA Greater than 8 is a positive point. Mine is 7.8 so i got 1.75 lack less salary than my colleagues. Tell about Social activity Any group activity in college. Projects are required because it teaches us how to use our knowledge. Also we get practical experience of theories. Internships, if done will be much more beneficial. One has to sell oneself so show them that you are better than others in some fields and that will be beneficial for the company. How company can utilize your strengths.
Skills: Math, Quantitative Aptitude, Reasoning, Cadence/ verilog
College Name: IIT KHARAGPUR

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.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

Andavar Texchem Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

3.9

Skill development

3.9

Work-Life balance

4.1

Salary & Benefits

4.0

Job Security

3.7

Company culture

3.9

Promotions/Appraisal

3.9

Work Satisfaction

Explore 2 Reviews and Ratings
Compare Andavar Texchem 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