Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Acxiom Consulting Trainee Interview Questions and Answers

Updated 30 Nov 2017

Acxiom Consulting Trainee Interview Experiences

1 interview found

Trainee Interview Questions & Answers

user image Anonymous

posted on 30 Nov 2017

I applied via Approached by Company and was interviewed in Aug 2017. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Ques1: There is a big file of words which is dynamically changing. We are continuously adding some words into it. How would you keep track of top 10 trending words at each moment? Ques2:Write a function t...
  • Ans. 

    The first question is about keeping track of top 10 trending words in a dynamically changing file. The second question is about finding the length of the longest leaf-to-leaf path in a binary tree. The third question is about navigating through an integer matrix.

    • For the first question, you can use a data structure like a priority queue or a hash map to keep track of the word frequencies and update the top 10 trending w...

  • Answered by AI
  • Q2. Ques 1: You are given pairs of numbers. In a pair the first number is smaller with respect to the second number. Suppose you have two sets (a, b) and (c, d), the second set can follow the first set if b
  • Ans. 

    The second set can follow the first set if the second number of the first set is smaller than the first number of the second set.

    • Check if b < c

    • If true, the second set can follow the first set

    • If false, the second set cannot follow the first set

  • Answered by AI
  • Q3. Ques 1: An array of n integers is there in which the range of elements is n, i.e., the difference between maximum and minimum number is n. Find the repeating numbers. Ques 2: An extension of Question 1. W...
  • Ans. 

    The interview questions involve finding repeating numbers in an array, counting the number of times each number is repeated, arranging data elements in increasing order, and finding the row with the maximum number of 1s in a 2D array.

    • For Question 1, iterate through the array and use a hash set to track repeating numbers.

    • For Question 2, use a hash map to count the occurrences of each number.

    • For Question 3, merge all the...

  • Answered by AI
  • Q4. Ques1:Tell us something about yourself. Ques2:Why do you consider yourself a suitable candidate for this position? Ques3:What kind of a person are you - Introvert/Extrovert? Ques4:Do you believe in competi...
  • Ans. 

    I am a motivated and hardworking individual with a passion for learning and growth.

    • I have a strong work ethic and am always eager to take on new challenges.

    • I have relevant experience and skills that make me a suitable candidate for this position.

    • I am a team player and believe in the power of collaboration to achieve goals.

    • I am adaptable and able to work well in both competitive and team-oriented environments.

    • I am open ...

  • Answered by AI

Interview Preparation Tips

General Tips: Well technical Rounds were quite Tricky and level was good. You need to have strong technical knowledge especially coding skills and good command over programming. Must have good knowledge of Algorithms and Data Structures.
Skills: Technical Analysis, Communication, Body Language, Problem Solving, Analytical Skills
Duration: <1 week

Skills evaluated in this interview

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. 1. Why do you want to change?
  • Q2. 2. What is your goal?
  • Q3. 3. Critical project you have handled?

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be yourself and provide short and to the point answer

I applied via Recruitment Consultant and was interviewed before Apr 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Take about a chalanging task you did and how you handled it

Interview Preparation Tips

Interview preparation tips for other job seekers - Softskills is very important for getting in to ITIS sector. you clear softskills round you are almost there.

I applied via Campus Placement and was interviewed before Jan 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. First question in hr interview is tell about yourself then the hr asked questions what I mentioned in my resume. So put the information in resume what you known well. My unique talent is I'm a stage spea...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be bold, be confident, don't put irrelevant information in your resume update yourself relating to your studies

I applied via Campus Placement and was interviewed in Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1.interviewer asked about my mini Project, some questions from my project on Machine Learning and some basic HR questions 2.If you have mentioned some projects in resume the interviewer will surely ask fr...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and answer confidently
Be good on basics whatever domain you're from.
Good to know basics of one programming



I applied via Campus Placement and was interviewed in Jul 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Why Java is platform independent?
  • Ans. 

    Java is platform independent due to its bytecode and JVM.

    • Java code is compiled into bytecode which is platform-independent.

    • JVM (Java Virtual Machine) interprets the bytecode and executes it on any platform.

    • JVM acts as an abstraction layer between the Java code and the underlying hardware.

    • This allows Java programs to run on any platform that has a JVM installed.

    • For example, a Java program written on a Windows machine ca...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Java is platform-independent because it does not depend on any type of platform. Hence, Java is platform-independent language. In Java, programs are compiled into byte code and that byte code is platform-independent. ... Any machine to execute the byte code needs the Java Virtual Machine.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Difference between dbms and rdbms , project questions , different sdlc models explain , void means in java , difference between function overloading and function overriding .

I applied via Campus Placement and was interviewed before Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Description of project
  • Ans. 

    The project involved designing and implementing a new network infrastructure for a large corporation.

    • Conducted a thorough analysis of the existing network infrastructure

    • Designed a new network architecture that met the company's needs

    • Implemented the new network infrastructure with minimal disruption to business operations

    • Tested and optimized the new network to ensure optimal performance

    • Provided ongoing support and maint

  • Answered by AI
  • Q2. Your previous experince

Interview Preparation Tips

Interview preparation tips for other job seekers - Well prepare for your resume

I applied via Naukri.com and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Spring container and beans
  • Q2. Annotations used in Springboot
  • Ans. 

    Annotations are used in Springboot to simplify configuration and reduce boilerplate code.

    • Annotations are used to define the behavior of Spring components

    • They can be used to define the scope of a bean, inject dependencies, and handle exceptions

    • Some commonly used annotations include @Component, @Autowired, and @ExceptionHandler

  • Answered by AI
  • Q3. Java 8 New Features and explanation
  • Ans. 

    Java 8 introduced several new features including lambda expressions, streams, and default methods.

    • Lambda expressions allow for functional programming and simplify code.

    • Streams provide a way to process collections of data in a functional style.

    • Default methods allow for adding new methods to interfaces without breaking existing implementations.

    • Other features include the Optional class, Date and Time API, and Nashorn Java

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. What is your expected package

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the topics thoroughly with working examples. Theoretical knowledge is not enough to really grasp the concepts.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. 1.Tell me about yourself.
  • Q2. 2. Some basic questions from DBMS, iot and cloud.
  • Q3. 3. Explain your project ( technology u have used and what is it).
  • Q4. 4. Are you willing to relocate.

Interview Preparation Tips

Interview preparation tips for other job seekers - HR was nice and friendly. Overall it was a NYC experience.
All the best guys.
Contribute & help others!
anonymous
You can choose to be anonymous

Acxiom Consulting Interview FAQs

What are the top questions asked in Acxiom Consulting Trainee interview?

Some of the top questions asked at the Acxiom Consulting Trainee interview -

  1. Ques1: There is a big file of words which is dynamically changing. We are conti...read more
  2. Ques 1: An array of n integers is there in which the range of elements is n, i....read more
  3. Ques 1: You are given pairs of numbers. In a pair the first number is smaller w...read more

Recently Viewed

INTERVIEWS

Victorious Kidss Educares

No Interviews

INTERVIEWS

Education Culture

No Interviews

INTERVIEWS

Education Culture

No Interviews

INTERVIEWS

Sankey Solutions

No Interviews

INTERVIEWS

Accelerize 360

No Interviews

INTERVIEWS

Digite Infotech

No Interviews

INTERVIEWS

FinIQ Consulting

No Interviews

INTERVIEWS

Sankey Solutions

No Interviews

SALARIES

Education Culture

INTERVIEWS

Aurionpro Solutions

5.6k top interview questions

Tell us how to improve this page.

Trainee Interview Questions from Similar Companies

TCS Trainee Interview Questions
3.7
 • 59 Interviews
Wipro Trainee Interview Questions
3.7
 • 39 Interviews
Infosys Trainee Interview Questions
3.6
 • 15 Interviews
View all
Technical Consultant
60 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Functional Consultant
41 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Functional Consultant
21 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Technical Consultant
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Financial Consultant
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Acxiom Consulting with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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