Upload Button Icon Add office photos

Filter interviews by

Acquia Interview Questions and Answers

Updated 23 Nov 2024

Acquia Interview Experiences

Popular Designations

7 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. Complete Computer Science Fundamentals like Computer networks, DBMS, Operating Systems, Linux, Data Structure and Algoritgms
  • Q2. All Linux Commands
  • Ans. 

    Linux commands are used to interact with the operating system and perform various tasks.

    • ls - list directory contents

    • cd - change directory

    • pwd - print working directory

    • mkdir - make directory

    • rm - remove files or directories

    • cp - copy files or directories

    • mv - move files or directories

    • grep - search for patterns in files

    • chmod - change file permissions

    • sudo - execute a command as a superuser

  • Answered by AI
  • Q3. OSI models, HTTPs request codes
  • Q4. Difference b/w list and tuple
  • Ans. 

    List is mutable, tuple is immutable in Python.

    • List can be modified after creation, tuple cannot.

    • List uses square brackets [], tuple uses parentheses ().

    • List is used for collections of items that may change, tuple for fixed collections.

    • Example: list_example = [1, 2, 3], tuple_example = (4, 5, 6)

  • Answered by AI
Round 2 - Behavioral 

(1 Question)

  • Q1. Discussion about resume, job description and role
Round 3 - Aptitude Test 

UCAT exam - 40 question - 20min

Skills evaluated in this interview

Technical Support Associate Interview Questions asked at other Companies

Q1. What is a difference between router and modem?
View answer (31)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Java multithreading questions
  • Q2. Some joins related Sql queries

Staff Engineer Interview Questions asked at other Companies

Q1. Swap Adjacent Bit PairsYou are given an integer 'N'. Your task is to find the number formed after swapping each even bit of 'N' in its binary representation with its adjacent bit on the right, assuming that the least significant bit is an o... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Apr 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

The first round consists of Math questions such as profit and loss, verbal reasoning and spatial questions. .You'll be provided a link for preparation before you appear for the test .

Round 2 - Technical 

(1 Question)

  • Q1. Situational questions around customer support
Round 3 - Technical 

(1 Question)

  • Q1. Question around PHP , VPN , HTTP , SQL
Round 4 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself . What are my hobbies /What do I do in my free time?

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviews are very easy if well prepared .

Associate Support Engineer Interview Questions asked at other Companies

Q1. Oops and four pillars, Difference between abstract class and interface, method overloading and overriding.
View answer (1)

I applied via LinkedIn and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java oops and multithreading related questions. SQL queries mostly using joins

Interview Preparation Tips

Interview preparation tips for other job seekers - Full knowledge of your current project.

Staff Engineer Interview Questions asked at other Companies

Q1. Swap Adjacent Bit PairsYou are given an integer 'N'. Your task is to find the number formed after swapping each even bit of 'N' in its binary representation with its adjacent bit on the right, assuming that the least significant bit is an o... read more
View answer (2)

Acquia interview questions for popular designations

 Staff Engineer

 (2)

 Accounts Payable Specialist

 (1)

 Associate Support Engineer

 (1)

 Implementation Consultant

 (1)

 Senior Software Engineer

 (1)

 Technical Support Associate

 (1)

I applied via Approached by Company and was interviewed before Apr 2021. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Composer dependency management
Round 2 - Coding Test 

System design of atm

Round 3 - HR 

(1 Question)

  • Q1. Salary, location, flexibility

Interview Preparation Tips

Interview preparation tips for other job seekers - Be fully prepared . Be confident.

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

I applied via Indeed and was interviewed in Feb 2021. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. SQL scripting
  • Q2. Table joins
  • Q3. Window function
  • Q4. Analytical functions

Interview Preparation Tips

Interview preparation tips for other job seekers - Make it interactive

Implementation Consultant Interview Questions asked at other Companies

Q1. In a factory as per govt rule how much leave is applicable
View answer (1)

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. PO, Non po, debit note credit note

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing. It was alreqdy good

Accounts Payable Specialist Interview Questions asked at other Companies

Q1. 1)What is accounts payable 2)Golden rules 3)P2p cycle 4)What is 3way match 5)2way mstch 6)What is po 7)Types of po's 8)What is non po
View answer (2)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Basic JavaScript output-based questions were presented in the form of multiple-choice questions (MCQs).

Round 2 - Technical 

(3 Questions)

  • Q1. What is custom diractives in Angular
  • Ans. 

    Custom directives in Angular allow you to create reusable components with custom behavior.

    • Custom directives are used to extend the functionality of HTML elements in Angular.

    • They can be used to create reusable components with custom behavior.

    • Directives are markers on a DOM element that tell Angular to attach a specified behavior to that DOM element or even transform the DOM element and its children.

    • Examples include crea...

  • Answered by AI
  • Q2. What is pipes in Angular
  • Ans. 

    Pipes in Angular are used for transforming data in templates.

    • Pipes are used to format data before displaying it in the view.

    • They can be used to filter, sort, or transform data in various ways.

    • Examples include currency, date, uppercase, and lowercase pipes.

  • Answered by AI
  • Q3. What is interceptor in Angular
  • Ans. 

    An interceptor in Angular is a service that can be used to intercept and modify HTTP requests and responses.

    • Interceptors can be used to add headers, modify requests, handle errors, etc.

    • They are implemented as classes that implement the HttpInterceptor interface.

    • Interceptors are added to the HttpClientModule providers array in the app module.

    • Example: LoggingInterceptor implements HttpInterceptor to log all HTTP requests

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

(2 Questions)

  • Q1. Do you know writing Unit test case?
  • Ans. 

    Yes, I am familiar with writing unit test cases to ensure code quality and functionality.

    • I have experience writing unit test cases using testing frameworks like JUnit, NUnit, or pytest.

    • I understand the importance of writing testable code and creating comprehensive test suites.

    • I can write test cases to cover different scenarios, including edge cases and boundary conditions.

    • I know how to use mocking frameworks like Mocki...

  • Answered by AI
  • Q2. What state management library do you have used?
  • Ans. 

    I have used Redux for state management in my previous projects.

    • Redux is a predictable state container for JavaScript apps.

    • It helps in managing the state of the application in a single immutable state tree.

    • Actions are dispatched to update the state and components can subscribe to changes.

    • Selectors can be used to efficiently extract data from the state tree.

    • Middleware can be added to handle asynchronous actions.

    • Example:

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. What is your expected Salary?
  • Ans. 

    My expected salary is based on my experience, skills, and the market rate for Software Development Engineers.

    • Research the average salary for Software Development Engineers in the specific location and industry

    • Consider your years of experience and level of expertise

    • Factor in any additional benefits or perks offered by the company

    • Be prepared to negotiate based on the job responsibilities and requirements

  • Answered by AI
  • Q2. How soon would you be able to join if you receive the offer letter today?
  • Ans. 

    I can join within 2 weeks of receiving the offer letter.

    • I can start within 2 weeks of receiving the offer letter.

    • I need to give notice at my current job before starting.

    • I may need to relocate, which could affect my start date.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - No work from home opportunity. No AI access due to security reasons. Appraisal is very less
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Behavior, worst personality, useless manager
  • Q2. Always keeping eyes on girls one of the worst manager

Interview Preparation Tips

Interview preparation tips for other job seekers - One of the most concerning behaviors was exhibited by an HR manager named Shoeb Ahmed. Despite having ten years of experience, he struggled to collaborate effectively with coworkers and demonstrated inappropriate conduct towards female employees. Unfortunately, no action was taken against him, leading to our eventual departure from the company
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Dec 2024.

Round 1 - Coding Test 

1. String input="aaabccccbbbdd";
Find how many a, b, c, d are there in the string. Did using java streams.
2.HashMaphm=new HashMap();
hm.put(55,"B");
hm.put(33,"Z");
hm.put(44,"M");
hm.put(99,"I");
hm.put(88,"X");
Sort this hashmap based on values(B, I, M, X, Z). Should be done using java streams.
3.List lists = Arrays.asList(Arrays.asList(1,2,3), Arrays.asList(2,3,4,5), Arrays.asList(5,7,8));
Question was wrong actually. But expectation is to do flatmap and print without duplicates.
Query:
get 3rd highest salary from employee table

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was good. Maybe interviewer was surprised when I tried to solve these questions using java streams.

Acquia Interview FAQs

How many rounds are there in Acquia interview?
Acquia interview process usually has 2-3 rounds. The most common rounds in the Acquia interview process are Technical, Aptitude Test and One-on-one Round.
How to prepare for Acquia 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 Acquia. The most common topics and skills that interviewers at Acquia expect are Drupal, Open Source, PHP, Agile and Linux.
What are the top questions asked in Acquia interview?

Some of the top questions asked at the Acquia interview -

  1. Difference b/w list and tu...read more
  2. All Linux Comma...read more
  3. Complete Computer Science Fundamentals like Computer networks, DBMS, Operating ...read more

Tell us how to improve this page.

Acquia Interview Process

based on 5 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.3k Interviews
Infosys Interview Questions
3.7
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 792 Interviews
View all

Acquia Reviews and Ratings

based on 54 reviews

4.4/5

Rating in categories

4.2

Skill development

4.3

Work-life balance

4.3

Salary

3.8

Job security

4.1

Company culture

3.8

Promotions

4.1

Work satisfaction

Explore 54 Reviews and Ratings
Senior Software Engineer

Pune

5-10 Yrs

₹ 24-25 LPA

Staff Software Engineer

New Delhi

7-12 Yrs

Not Disclosed

Explore more jobs
Software Engineer
66 salaries
unlock blur

₹11 L/yr - ₹28 L/yr

Senior Software Engineer
52 salaries
unlock blur

₹20 L/yr - ₹38 L/yr

Staff Software Engineer
22 salaries
unlock blur

₹32 L/yr - ₹49 L/yr

Engineering Manager
18 salaries
unlock blur

₹39.5 L/yr - ₹77.6 L/yr

Product Owner
15 salaries
unlock blur

₹17.8 L/yr - ₹29.3 L/yr

Explore more salaries
Compare Acquia with

Adobe

4.0
Compare

Wipro

3.7
Compare

TCS

3.7
Compare

Infosys

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