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

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)
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 Pairs Problem Statement Given an integer N, your task is to compute the number that results from swapping each even position bit of N's binary representation with its adjacent odd bit to the right. Consider the least signi... read more
View answer (1)
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)

Acquia interview questions for popular designations

 Staff Engineer

 (2)

 Accounts Payable Specialist

 (1)

 Senior Software Engineer

 (1)

 Associate Support Engineer

 (1)

 Technical Support Associate

 (1)

 Implementation Consultant

 (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 Pairs Problem Statement Given an integer N, your task is to compute the number that results from swapping each even position bit of N's binary representation with its adjacent odd bit to the right. Consider the least signi... read more
View answer (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. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

Jobs at Acquia

View all

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

I applied via Naukri.com and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Database related questions
  • Q2. Api
  • Q3. Two basic coding questions
  • Q4. Some apti based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Just try to attempt all the sample questions available in geeks for geeks
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

30 mins Aptitude Question

Round 2 - Coding Test 

30 mins - 3 Coding Question

Round 3 - Technical 

(2 Questions)

  • Q1. Describe Rest API
  • Ans. 

    Rest API is a set of rules and conventions for building and interacting with web services using HTTP methods.

    • Rest API stands for Representational State Transfer Application Programming Interface.

    • It uses standard HTTP methods like GET, POST, PUT, DELETE to perform CRUD operations.

    • RESTful APIs use URLs to access resources, and return data in JSON or XML format.

    • Stateless communication allows for scalability and flexibilit...

  • Answered by AI
  • Q2. What is various Response code. Diffenrence b/w 200 & 201, 400 & 403
  • Ans. 

    Response codes indicate the status of a HTTP request. 200 & 201 are success codes, while 400 & 403 are client error codes.

    • 200 - OK: Request was successful

    • 201 - Created: Request was successful and a new resource was created

    • 400 - Bad Request: The server cannot process the request due to a client error

    • 403 - Forbidden: The server understood the request, but refuses to authorize it

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - HR 

(2 Questions)

  • Q1. About my self and experience
  • Q2. About my hobbies
Round 3 - Technical 

(2 Questions)

  • Q1. Document verify
  • Q2. Tel about my favorite topic
  • Ans. 

    My favorite topic is artificial intelligence and its impact on society.

    • AI has revolutionized various industries such as healthcare, finance, and transportation

    • Ethical considerations surrounding AI development and deployment are crucial

    • AI has the potential to both improve and disrupt society in significant ways

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - manager round 0ne to one and telling about my experience

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, One-on-one Round and Aptitude Test.
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 6 interviews

Interview experience

4.7
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 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
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 796 Interviews
View all

Acquia Reviews and Ratings

based on 57 reviews

4.4/5

Rating in categories

4.1

Skill development

4.3

Work-life balance

4.4

Salary

3.8

Job security

4.2

Company culture

3.9

Promotions

4.1

Work satisfaction

Explore 57 Reviews and Ratings
Senior Software Engineer (Golang/PHP + Kubernetes+AWS)

New Delhi,

Pune

5-10 Yrs

₹ 22.3-34.61856 LPA

DxP Support Engineer (Drupal,PHP)

New Delhi

2-5 Yrs

Not Disclosed

Senior Software Engineer (Java/Python & DevOps CI/CD)

Remote

5-10 Yrs

₹ 22.3-34.61856 LPA

Explore more jobs
Software Engineer
68 salaries
unlock blur

₹11 L/yr - ₹26.7 L/yr

Senior Software Engineer
59 salaries
unlock blur

₹20 L/yr - ₹38 L/yr

Staff Software Engineer
24 salaries
unlock blur

₹27 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

3.9
Compare

Cyfuture

3.0
Compare

Value Point Systems

3.6
Compare

JoulestoWatts Business Solutions

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