Upload Button Icon Add office photos

Filter interviews by

Amicorp Group Trainee Interview Questions and Answers

Updated 31 Mar 2022

Amicorp Group Trainee Interview Experiences

1 interview found

Trainee Interview Questions & Answers

user image Anonymous

posted on 31 Mar 2022

I applied via Referral and was interviewed in Oct 2021. There was 1 interview round.

Round 1 - HR 

(3 Questions)

  • Q1. Tell me about yourself.
  • Q2. What is your interest area
  • Q3. Tell me about your family

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Confident do your best do not hesitate to make mistake

Interview questions from similar companies

Associate Interview Questions & Answers

JPMorgan Chase & Co. user image SHUBHAM VINAYAK KALE shubham

posted on 4 Dec 2016

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. Project/DDP based questions
  • Q2. Any coding done in curriculum, explain the most complex one
  • Ans. 

    Yes, I have coded in curriculum. The most complex one was a project on building a web application using React and Node.js.

    • Built a full-stack web application using React and Node.js

    • Implemented user authentication and authorization using JSON Web Tokens (JWT)

    • Used MongoDB as the database and Mongoose as the ODM

    • Implemented real-time updates using Socket.IO

    • Deployed the application on Heroku

    • Handled errors and implemented log

  • Answered by AI
  • Q3. What is 'Big data'? Why is it called 'Big'
  • Ans. 

    Big data refers to large and complex data sets that cannot be processed using traditional data processing methods.

    • Big data is characterized by its volume, velocity, and variety

    • It is used in various industries such as healthcare, finance, and retail

    • Examples of big data include social media data, sensor data, and transactional data

    • It is called 'big' because it involves processing massive amounts of data

    • Big data requires ...

  • Answered by AI
  • Q4. Why do you want to switch to IT sector from your respective branch
  • Ans. 

    I am passionate about technology and eager to learn new skills in the IT sector.

    • I have always had a keen interest in technology and enjoy working with computers.

    • I believe the IT sector offers more opportunities for growth and advancement in my career.

    • I have seen the impact of technology on various industries and want to be a part of that innovation.

    • I have taken courses in programming and networking to prepare myself fo

  • Answered by AI
  • Q5. I did a course on compute simulation and had extra curricular in chess, so was asked to simulate a chess game
  • Q6. Two friends A & B meet after long time, A asks B about his family. B says he has 3 children, product of their ages is 36, and sum of their ages is equal to the (point towards a house on street) house numbe...
  • Q7. A rat has 3000 gm of rice, he has to travel a distance of 3000m, he eats 1gm rice/m, his maximum carrying capcity is 1000 gm,how should he travel the distance to reach with maximum rice left
  • Q8. A new software has 3 functions SelectSum(), log() and exp(). You have a table of 1000 data points, how will you find product of all points using only the above mentioned functions
  • Ans. 

    To find the product of all data points using SelectSum(), log(), and exp() functions.

    • Use the log() function to convert the product into a sum of logarithms

    • Apply the SelectSum() function to calculate the sum of logarithms

    • Finally, use the exp() function to convert the sum back into the product

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Aptitude part has easy questions, including number series, picture series, interest rate and some quant based questions.

The coding part is difficult.2-3 coding questions, Codes will be related to linked lists , trees or sorting.
Tips: Try to get maximum marks in aptitude, which should be fine with some practice . One of the code will be easy, so complete it and make a try for second
Duration: 1 hour
Total Questions: 30

Round: Puzzle Interview
Experience: very easy puzzles, I was able to solve all puzzles in first attempt
Tips: Be confident in your approach they are locking for approach more than result

Round: Technical Interview
Experience: I answered all resume based questions, he liked my choice of projects, though they were not exactly related to the profile. He liked me and said I would recommend you directly to HR round
Tips: Prepare in details about all points in resume, course work mentioned and projects, Based on performance in this interview, they decide to whether to take one more technical interview or send directly to HR

Skills: Behavioural Skills, Puzzle Solving Capability, Approaching A Problem, Basic Coding
College Name: IIT Madras

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

13 Questions

  • Q1. Tell me about yourself?
  • Ans. 

    I am a highly motivated individual with a passion for learning and achieving my goals.

    • I have a degree in computer science and have worked as a software developer for 3 years.

    • I am proficient in multiple programming languages including Java, Python, and C++.

    • I enjoy working in a team environment and collaborating with others to solve complex problems.

    • In my free time, I enjoy hiking and exploring new places.

  • Answered by AI
  • Q2. Tell me about your family or life before college?
  • Ans. 

    I grew up in a small town with my parents and younger sister. We were a close-knit family.

    • Grew up in a small town

    • Close-knit family

    • Parents and younger sister

    • Participated in community events

    • Enjoyed outdoor activities

  • Answered by AI
  • Q3. What do you do in free time?
  • Ans. 

    I enjoy reading, hiking, and trying new recipes in my free time.

    • Reading books on various topics, including fiction, non-fiction, and self-improvement

    • Hiking in local parks and nature reserves to explore new trails and enjoy the outdoors

    • Experimenting with new recipes and cooking techniques in the kitchen

    • Attending cultural events such as concerts, plays, and art exhibits

    • Spending time with family and friends, playing board

  • Answered by AI
  • Q4. What would you expect from this company?
  • Ans. 

    I would expect a supportive work environment, opportunities for growth and development, and a commitment to excellence.

    • Supportive and collaborative team culture

    • Clear communication and feedback

    • Opportunities for professional development and advancement

    • Commitment to high-quality work and customer satisfaction

    • Competitive compensation and benefits package

  • Answered by AI
  • Q5. Questions related to family and past life?
  • Q6. Do you have any family member or friend in Bangalore?
  • Ans. 

    Yes, I have a cousin who lives in Bangalore.

    • I have a cousin who has been living in Bangalore for the past 5 years.

    • We keep in touch and he has shown me around the city during my visits.

    • He works in the IT industry and enjoys the vibrant culture of Bangalore.

  • Answered by AI
  • Q7. How will you find loop in the circular linked list?
  • Ans. 

    Loop in a circular linked list can be found using Floyd's cycle-finding algorithm.

    • Initialize two pointers, slow and fast, both pointing to the head of the linked list.

    • Move slow pointer by one node and fast pointer by two nodes in each iteration.

    • If there is a loop, both pointers will eventually meet at some point.

    • If there is no loop, fast pointer will reach the end of the linked list.

    • Time complexity of this algorithm is

  • Answered by AI
  • Q8. How will you perform pre-fix and post-fix operation for the given string expression?
  • Ans. 

    Pre-fix and post-fix operations can be performed on a string expression using appropriate operators.

    • Pre-fix operation involves placing the operator before the operand in the expression.

    • Post-fix operation involves placing the operator after the operand in the expression.

    • Examples of pre-fix operators include ++, --, !, and ~.

    • Examples of post-fix operators include ++ and --.

  • Answered by AI
  • Q9. What is data analytics(cause I had mentioned it on the resume)? Just explain the basic and tell them how it can help us make decision/inference
  • Ans. 

    Data analytics is the process of examining data sets to draw conclusions about the information they contain.

    • Data analytics involves collecting, cleaning, and analyzing data to identify patterns and trends.

    • It can help businesses make informed decisions by providing insights into customer behavior, market trends, and operational efficiency.

    • For example, a retail company can use data analytics to analyze sales data and ide...

  • Answered by AI
  • Q10. In my final year project I have used random forest. So he asked me to explain random forest. And other projects related questions
  • Q11. What is your strength and weakness? why J P Morgan Chase? What do you expect from this company? I am from Mechanical Engineering, so she asked me why non-core?
  • Ans. 

    Strengths include adaptability and teamwork. Weaknesses include public speaking. Non-core background allows for diverse perspective. JPMorgan Chase's reputation and opportunities attract me.

    • Strengths: adaptability, teamwork

    • Weakness: public speaking

    • Non-core background brings diverse perspective

    • Attracted to JPMorgan Chase's reputation and opportunities

  • Answered by AI
  • Q12. Few behavioral questions: What will you do if you have enough money and good idea to start your own company?
  • Ans. 

    I would pursue my entrepreneurial dream and start my own company.

    • I would conduct market research to validate my idea and identify potential competitors.

    • I would create a business plan outlining my goals, strategies, and financial projections.

    • I would secure funding through investors or loans.

    • I would assemble a team of talented individuals with diverse skills and experiences.

    • I would continuously evaluate and adapt my busi

  • Answered by AI
  • Q13. How would you resolve team conflict between your idea and other idea, supported by majority?
  • Ans. 

    I would listen to both sides, gather more information, and try to find a compromise that satisfies everyone.

    • Listen to both sides and understand their perspectives

    • Gather more information about both ideas

    • Try to find common ground and a compromise that satisfies everyone

    • Encourage open communication and respect for each other's ideas

    • Consider the potential impact and benefits of each idea

    • Involve a neutral third party if nec

  • Answered by AI

Interview Preparation Tips

Round: Resume Shortlist
Experience: The company came to our campus on day 3 and agreed to take walk-ins.
Therefore resume shortlisting was the procedure.
They had a cut off of 7 CGPA.
Tips: It would be good if you have some coding background with few projects. It could anything from class projects to your internships, extra-curricular or final year projects. Don't forget to mention what all programming language you know on your resume.

Round: Technical + HR Interview
Experience: The first round consists of two panels. One of them was asking HR. And the other was asking technical questions. They were just looking whether you have the basic technical knowledge and if given an offer you will join or not.
Tips: For technical knowledge, you can refer OOPs basic concepts, standard coding interview problems, geeksforgeeks, cracking the coding interview by Laxman Gayle etc. It would be better if you can first practice hr questions among your friends instead of going directly to interview. I found a youtube channel explains technical relatively easier and simpler way. you can follow that. Just try to show that you are interested in that company.
For HR questions, one can prepare from 64 HR questions.
For the basic OOPs concepts, one can read first 10 chapters from E.Balaguruswamy but any other OOPs book will also be fine.
Confidence is the key ace any interview!!

Round: HR Interview
Experience: This round was mainly to check your personality. He was trying to know whether you will fit in the company or not. Most of the question was from my personal life. They will see whether you are serious about your life or not.
Tips: Be ready to give them instances of your life where you did things differently. Try to show that you are passionate about the company. Try to show you have a clear vision in your life and working hard to achieve that.

Round: HR Interview
Experience: This round was just a formality. The HR from the second round interview introduced me to the third interviewer. He asked few question related to the family.
Tips: One important thing I would like to is that NEVER ASSUME THAT WHATEVER YOU TOLD TO YOUR PREVIOUS INTERVIEWER WILL BE KNOWN TO THE NEXT INTERVIEW. So, if you think some specific points will help you do good in an interview...just let him know. I could be anything your project, conference, paper presentation or your past life as well.

Skills: Programming, Object Oriented Programming (OOP) Basics, Team Working Ability, Passion, Data Strrutures, Algorithm
College Name: IIT Madras

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Dec 2016. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Tested DSA and Aptitude
  • Q2. Checked design aspect questions
  • Q3. What do you know about company
  • Ans. 

    Company is a global technology company known for its innovative products and services.

    • Founded in 1976 by Steve Jobs, Steve Wozniak, and Ronald Wayne.

    • Known for products such as iPhone, iPad, Mac computers, and Apple Watch.

    • Offers services like Apple Music, iCloud, and Apple Pay.

    • Has a strong focus on design and user experience.

  • Answered by AI

Interview Preparation Tips

College Name: IIT Madras

I was interviewed in Dec 2016.

Interview Questionnaire 

5 Questions

  • Q1. Write the algorithm for reversing the string
  • Ans. 

    The algorithm reverses a given string.

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

    • Append each character to a new string or an array in reverse order.

    • Return the reversed string or array.

  • Answered by AI
  • Q2. Write an algorithm to select the number between min and maximum from a number series and that number shouldn't be a multiple of 10
  • Q3. This was puzzle: you have 2 eggs and 100 floors. Eggs will start break beyond a particular floor. You can throw eggs from any of the floor. How will you minimise the total number of throws.
  • Q4. Assume yourself as CEO of a company. You have vacancies and you are conducting interviews. 4 candidates (1. An IITian, 2. A woman, 3. Gay, 4.Physically handicapped) are equally capable and qualified have a...
  • Ans. 

    As the CEO, I would select the candidate based on their qualifications and skills, regardless of their background or personal characteristics.

    • I would focus on the qualifications, skills, and experience of each candidate.

    • I would consider their ability to contribute to the company's goals and objectives.

    • I would ensure a fair and unbiased selection process.

    • I would prioritize diversity and inclusion in the workplace.

    • I woul...

  • Answered by AI
  • Q5. My interview was just after demonetization. So question was, assume you are CEO of Paytm. What will be your key values and what will be your strategy to add more customers.

Interview Preparation Tips

Round: Test
Experience: Aptitude part was pretty straightforward. Make sure you don't loose too much time on one question. Most of the questions were very easy. Number series, men working hours, probability and simple math calculations are enough to crack the test.
Coding part will definitely have one easy question (mostly will be on sorting algos). Basic coding knowledge is enough for this part.
Tips: Aptitude : Speed is the key. Since questions are easy, one who gets more than others will be shortlistled for the Interviews.
Coding: Make sure you solve atleast 1 problem correctly. And then try to attempt others.
Duration: 1 hour
Total Questions: 28

Round: Behavioural Interview
Experience: They also asked basic interview hr questions. Be prepared with your stories. If One of your story can make you look out of the stand, it will definitely work for this round. Strengths, weakness and where do you see yourself after 5 years.
Tips: Be confident. And be ready to defend your answers.

Skills: Math Puzzles, Algorithms And Data Structures, HR Skills, Inter Person Communication Skills
College Name: IIT Madras

Skills evaluated in this interview

Associate Interview Questions & Answers

UBS user image Anonymous

posted on 23 Feb 2022

Round 1 - One-on-one 

(1 Question)

  • Q1. What are bonds? And types of bonds?
  • Ans. 

    Bonds are debt securities issued by companies or governments to raise capital. Types include corporate, municipal, and treasury bonds.

    • Bonds are essentially loans that investors make to the issuer.

    • The issuer promises to pay back the principal amount plus interest over a set period of time.

    • Corporate bonds are issued by companies, municipal bonds by local governments, and treasury bonds by the federal government.

    • Bonds are...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Difficult level Interview. There were 3 rounds.

I applied via Campus Placement

Round 1 - Case Study 

Tell me about yourself.
[Please note that I stands for Interviewer and C stands for Candidate.

C- Good evening, Sir. My name is Dhanushmanth and I come from a town called Palvancha in Telangana. Its specialty is that it hosts multiple industries such as a thermal power plant, spong iron unit, heavy water plant etc. Its unique standpoint is that it is very nearby to the place where according to hindu mythology, Lord Ram spent his days of exile. This lead to inculcation of not just scientific temper but also philosophical sense in me.

I was always curious as to how so many industrial units come together to create a universe that is much greater than their sum total. My parents were teachers in Mathematics and Physics.

They had a profund impact on me. My father prodded me to always stay curious and understand how this universe works. My mother on the othered, contributed a lot towards my all round development. She introduced me to the world of Aesop Fables, Jataka Tales, Vikram Betal etc. She used to help me participate in elocution and debating competitions. She made me understand how vital it is to inculcate a habit of reading and besides, underscored the significance of learning lessons for life.

I- Okay, so you are interested in books?

C- Yes, Sir. I am.

I- What are your favorite books?

C- Harry Potter

I- (Chuckles) That's very common book.

C- ( I felt he was overlooking me.) I also like the works of Frederick Beckmann, Mitch Albomm, Sudha Murthy, and Ruskin Bond.

I- : Well, those are some quite contrasting choices.

C- Yes, Sir. They are.

I- Okay, let us do a case. Do you shop online?

C- Yes, Sir. But not very frequently.

I- Where do you shop?

C- Amazon, but mostly for books

I- : Okay, let us do a case around books only. Imagine yourself as the Senior Product Manager for 3-5 year old children's books category in Amazon. ( He explained to me the importance of maintaining optimal inventory levels). Tell me the 5 most important data points according to you in order to decide for this and rank them.

C- To begin with, our objective is to find out the 5 most important data points using which we can decide upon the optimal inventory level in
our firm, right?

I- Yes

C- Can you please tell me our operational level? Are we planning to supply to the entire country?

I- yes

C- To decide upon the inventory levels, the key factors we have to see is that whenever there is any demand, we must never have any shortfall and whatever supply we are getting, we must be able to send it out.

Now, if there is excess demand and we are unable to cater to the needs of the customer, we would lose the customer for life. On the other hand, if we have excess supply and less demand, it is us who suffer the loss. To me, the first case is more damaging. So, I would first like to analyze the supply side.

I- Okay, how would you go about it?

C- I have to check about our supply sources. One thing is if we have enough quantity coming from our suppliers such as wholesalers. We have to look if we are sourcing the books of the latest authors in trend.

Once we confirm the availability of source, then transporting it to go down and from go down has to be seen. Then the option of last-mile delivery has to be seen.

I- We have a single go down in Madhya Pradesh. It is in the center of the country so that we can supply it easily to the entire nation. Does your preference remain the same now?

C- No Sir. In that case, we won't have much f a problem with our supply as long as we have enough material coming into our go down which means I have to look at demand an accordingly source the material as well.

C- I have to forecast the demand for the period we want to maintain optimal inventory.

I- Yes, for 6 months.

C- One way for this is to see the demand over the last 18 months. Another can be to analyze the recent activities of customers.

I- How would you do that?

C- We can look at the online behavior of the parents in this category who are the subscribers of Amazon. Also, we can monitor the behavior of customers who have begun to recently search for children related content online.

I- So, what is the data point?

C- Number of customers who are visiting these sites.

I- Yes, this is something I want.

C- I went on to describe some more data points such as how the children's books market is currently operating( market share, growth rate, etc.,) and I began ranking them.

The interviewer was satisfied and he ended the case.

I- Why Amex?

C- I told him about the example of Shop Small initiative by Amex mentioned in the MM-1 Kotler book. According to it, Amex has nudged its customers to shop in the local shops on Saturdays.

They started to give customers incentives for doing so. I said that this not only increased Amex's base by bringing the small shoppers into their network but also denoted a sustainable growth. Apart from that, I mentioned that I attended their PPT and have observed that people who began their careers in Amex are now in positions such as CTO of Uber, etc. I mentioned that since I have the interest to get into policy and administrative roles, that encouraged me to apply for Amex.

I- Did you ever work with data during your undergrad or do you have any experience with analytics or are you even interested in working with data?

C- I explained to him that as a Mining student, I was very interested in understanding the risk of rock failures since it posed a grave threat to the industry. I mentioned that I took courses such as Probability and Statistics, Fuzzy Set theory as part of my curriculum as open elective.

I- Let me give you a problem on Probability. Your section has 27 students. Calculate the probability that no tow people share their birthdays in the same year?

C- I solved it.

Round 2 - Case Study 

Why Amex?

What do you know about Amex?
I answered based on what I heard in PPT. I told him that Amex has three divisions: Global Risk and Credit Banking, Risk and Fraud Analytics, and Digital Marketing Enterprise Analytics.

I mentioned my interest in understanding the risk of an economy and that Amex is one of the best options I have since it provides a bird's eye view of the economy.

So you are interested in risk analytics?
Yes, Sir.

Let me give you a case on risk analytics. You have 1000 customers who have not been paying their bills. They are called delinquent customers. Now, there are 5 action plans:

1. Do nothing because you trust them.

2. Do nothing because you cannot extract money from them.

3. Write a letter to them.

4. Make a phone call.

5. Go for a court case.

Tell me how you will categorize these 1000 customers into these five categories.
I restated the objective and gave him a step by step plan as to how we can determine who we can trust and on whom we have to take immediate action.

I asked him if we have the credit history of these customers with us. The interviewer said yes. Then I said we could look into that and see if their transaction pattern has seen a recent spike. I also mentioned that we could check if there is any geographic, demographic, work-related commonality among these 1000 customers.

I also suggested checking the details of the shops they are shopping in since if there is a common shop, it could be possible that they are swiping the card there and cartelling with the shopkeeper to steal money.

Later I also suggested using CIBIl data. Overall he saw my approach to the case and appeared to be satisfied. In between the case, he used to go out of the room giving me 2-3 minutes. He told me to wait outside so that his colleague could tell me the result.

Interview Preparation Tips

Interview preparation tips for other job seekers - I basically had prepared for consulting. The shortlist for Amex was unexpected and it came just the previous night. Once I got to know that I was not selected for BCG, I contacted Shubham Singh, a senior who worked in Amex as an intern. He gave me a brief idea about how his interview went on.

He asked me to look into the trends in the credit card industry. I also talked to a friend who worked in a bank. He gave me an idea of the payment services industry.

Just mention your calm. They only were interested in my approach rather than the final answer. They observed how confident I was with my answers.

Especially, the interviewer tried to ask me multiple times if I was sure about my probability problem answer. I always said yes and tried to explain to him the reason behind it.

Most importantly, have some person whom you trust around you. Their support matters a lot.

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

Interview Questionnaire 

4 Questions

  • Q1. First ques was a basic one - tell about yourself
  • Q2. They had elaborated about derivatives my new job profile and asked why do you want to change the domain since I was in cash and asked if I'll be able to copeup
  • Q3. Achievements and an example of how well u handled a situation in prev job
  • Q4. New process related terminologies

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and do not beat around bushes.
Be straight forward with respect to your answer and learn the terminologies well for the role that u are hire bacsically do some homework.

I applied via Company Website and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Most of the questions were asked about KYC and what information and documentation will be collecting while updating KYC for the clients.
  • Q2. What is your expectations and where do you see yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on the concepts and answer them carefully

I applied via Company Website and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Quest weee related to job profile (roles & responsibilities) of current job and about the roles and understanding of the job at Morgan Stanley.

Interview Preparation Tips

Interview preparation tips for other job seekers - Main thing js be positive and dont lie if you have not worked about anything in past.
If we are unsure, say upfrontly with understanding
Interview process was very much smooth

Amicorp Group Interview FAQs

How many rounds are there in Amicorp Group Trainee interview?
Amicorp Group interview process usually has 1 rounds. The most common rounds in the Amicorp Group interview process are HR.

Tell us how to improve this page.

Interview Questions from Similar Companies

Citicorp Interview Questions
3.7
 • 564 Interviews
Wells Fargo Interview Questions
3.9
 • 564 Interviews
American Express Interview Questions
4.2
 • 358 Interviews
UBS Interview Questions
3.9
 • 331 Interviews
Morgan Stanley Interview Questions
3.7
 • 291 Interviews
Morningstar Interview Questions
3.9
 • 241 Interviews
FactSet Interview Questions
3.9
 • 205 Interviews
BNP Paribas Interview Questions
3.8
 • 178 Interviews
View all
Team Lead
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Officer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Amicorp Group with

Wells Fargo

3.9
Compare

JPMorgan Chase & Co.

4.0
Compare

Citicorp

3.7
Compare

American Express

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