Upload Button Icon Add office photos

Filter interviews by

Acquia Interview Questions and Answers for Experienced

Updated 23 Nov 2024

Acquia Interview Experiences for Experienced

Popular Designations

4 interviews found

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)

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)

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)

Jobs at Acquia

View all

Interview questions from similar companies

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

Interview Questionnaire 

2 Questions

  • Q1. Object Oriented Concepts and basic list/tuple/dictionary/ datetime conversion
  • Q2. Project done in last company and how will you help Saama?

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to frame answers end to end and stick to what you have done. Don't try to exaggerate.

I applied via Walk-in and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test

Round 2 - Group Discussion 

Current affairs

Round 3 - Technical 

(1 Question)

  • Q1. Puzzle , sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself, whatever you know just be confident

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
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What languages do you know? Asked about the project I did and various clarification questions on that.
  • Q2. What are various assumption you made while implementing this project.

Intern Interview Questions & Answers

DISYS user image Anonymous

posted on 12 Oct 2023

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2022. There were 6 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

General aptitude questions

Round 3 - Coding Test 

Specific coding test based on your domain

Round 4 - Technical 

(1 Question)

  • Q1. Explain about the programming language you know
  • Ans. 

    I am proficient in programming languages such as Java, Python, and C++.

    • Experienced in Java for backend development

    • Skilled in Python for data analysis and machine learning

    • Knowledgeable in C++ for system programming

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

(1 Question)

  • Q1. Explain about the final year project that you have done
Round 6 - HR 

(1 Question)

  • Q1. What is your expected salary

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare yourself to the best of your ability

Interview Questionnaire 

10 Questions

  • Q1. What is dispose and finalize?
  • Ans. 

    Dispose and finalize are methods used for releasing resources in .NET.

    • Dispose is used to release unmanaged resources immediately.

    • Finalize is used to release managed resources when the garbage collector runs.

    • Dispose can be called manually or through the using statement.

    • Finalize is called automatically by the garbage collector.

    • Dispose is implemented by IDisposable interface.

    • Finalize is implemented by Object class.

  • Answered by AI
  • Q2. Explain oops concepts?
  • Ans. 

    OOPs concepts are the principles of Object-Oriented Programming that help in designing and implementing software solutions.

    • Encapsulation - binding data and functions together

    • Inheritance - creating new classes from existing ones

    • Polymorphism - ability of objects to take on multiple forms

    • Abstraction - hiding implementation details

    • Objects - instances of classes that encapsulate data and behavior

  • Answered by AI
  • Q3. What is inheritance and disadavantages of it?
  • Ans. 

    Inheritance is a mechanism in OOP where a new class is derived from an existing class.

    • It allows for code reusability and promotes a hierarchical structure.

    • It can lead to tight coupling and make the code harder to maintain.

    • It can also result in the creation of unnecessary classes and increase complexity.

    • Example: A Car class can inherit properties and methods from a Vehicle class.

    • Example: A Square class can inherit prope

  • Answered by AI
  • Q4. Explicite interface?
  • Ans. 

    Explicit interface is a way to implement multiple interfaces with same method names.

    • Explicit interface is used to avoid naming conflicts when implementing multiple interfaces.

    • It is implemented by prefixing the interface name to the method name.

    • It is useful when implementing COM interfaces in .NET.

    • Example: void IInterface1.Method() and void IInterface2.Method()

  • Answered by AI
  • Q5. Interface vs abstract classes
  • Ans. 

    Interface defines only method signatures while abstract class can have method implementations.

    • Interfaces can be implemented by multiple classes while abstract classes can only be extended by one class.

    • Interfaces are used for achieving multiple inheritance in Java while abstract classes are used for single inheritance.

    • Interfaces cannot have constructors while abstract classes can have constructors.

    • An example of an inter...

  • Answered by AI
  • Q6. Startup method in .net core?
  • Ans. 

    Startup method in .NET Core is used to configure the application's services and middleware.

    • Startup method is defined in Startup.cs file.

    • It includes ConfigureServices and Configure methods.

    • ConfigureServices is used to add services to the dependency injection container.

    • Configure is used to configure the HTTP request pipeline.

    • Example: public void ConfigureServices(IServiceCollection services) { services.AddMvc(); }

    • Example...

  • Answered by AI
  • Q7. What are Http verbs?
  • Ans. 

    HTTP verbs are used to indicate the type of action being performed on a resource.

    • HTTP verbs include GET, POST, PUT, DELETE, PATCH, HEAD, OPTIONS

    • GET is used to retrieve data from a server

    • POST is used to submit data to a server

    • PUT is used to update an existing resource on a server

    • DELETE is used to delete a resource from a server

    • PATCH is used to partially update a resource on a server

    • HEAD is used to retrieve only the head...

  • Answered by AI
  • Q8. Questions related to logging in webapi?
  • Q9. Sql profiler?
  • Q10. Explain project architecture?
  • Ans. 

    Project architecture refers to the overall design and structure of a software project.

    • It includes the organization of components and modules

    • Defines the relationships between them

    • Specifies the technologies and tools used

    • Determines the overall performance and scalability

    • Examples include MVC, microservices, and client-server architecture

  • Answered by AI

Skills evaluated in this interview

Acquia Interview FAQs

How many rounds are there in Acquia interview for experienced candidates?
Acquia interview process for experienced candidates usually has 3 rounds. The most common rounds in the Acquia interview process for experienced candidates are One-on-one Round, Coding Test and HR.
How to prepare for Acquia interview for experienced candidates?
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 for experienced candidates?

Some of the top questions asked at the Acquia interview for experienced candidates -

  1. Complete Computer Science Fundamentals like Computer networks, DBMS, Operating ...read more
  2. Java oops and multithreading related questions. SQL queries mostly using joi...read more
  3. PO, Non po, debit note credit n...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Cyfuture Interview Questions
3.0
 • 45 Interviews
Revature Interview Questions
3.5
 • 40 Interviews
Equifax Interview Questions
3.3
 • 32 Interviews
VDart Interview Questions
4.0
 • 29 Interviews
Black Knight Interview Questions
3.6
 • 28 Interviews
DISYS Interview Questions
3.0
 • 27 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 Demo Engineer

Remote

5-8 Yrs

Not Disclosed

DxP Support Engineer (Drupal,PHP)

New Delhi

2-5 Yrs

Not Disclosed

Software Engineer (K8)

Remote

2-4 Yrs

₹ 12-18 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

Software Development Engineer II
26 salaries
unlock blur

₹30 L/yr - ₹42 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

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