Upload Button Icon Add office photos

Capillary Technologies

Compare button icon Compare button icon Compare

Filter interviews by

Capillary Technologies Interview Questions and Answers

Updated 26 Jun 2025
Popular Designations

6 Interview questions

A Technical Writer Intern was asked 8mo ago
Q. What is your understanding of technical writing?
Ans. 

Technical writing involves creating clear and concise documentation for complex technical information.

  • Technical writing is about communicating technical information in a clear and concise manner

  • It involves creating user manuals, guides, reports, and other documentation

  • Technical writers must have a good understanding of the subject matter and the target audience

  • They use tools like diagrams, charts, and screenshots ...

View all Technical Writer Intern interview questions
A Software Development Engineer Intern was asked 9mo ago
Q. Given an m x n 2D binary grid grid which represents a map of '1's (land) and '0's (water), return the number of islands.
Ans. 

Count the total number of islands in a grid where '1' represents land and '0' represents water.

  • Iterate through the grid and for each '1' encountered, perform a depth-first search to mark all connected '1's as visited.

  • Increment the island count for each new island encountered during the search.

  • Return the total count of islands at the end.

View all Software Development Engineer Intern interview questions
A Senior Software Engineer was asked
Q. Design a Least Recently Used (LRU) cache.
Ans. 

Design a Least Recently Used cache system.

  • Implement a doubly linked list to keep track of the order of usage of cache items.

  • Use a hashmap to store key-value pairs for quick access to cache items.

  • When a new item is accessed, move it to the front of the linked list. If the cache is full, remove the least recently used item from the end of the list.

View all Senior Software Engineer interview questions
A Software Developer was asked
Q. You are given an n x n 2D matrix representing an image, rotate the image by 90 degrees (clockwise). You have to rotate the image in-place, which means you have to modify the input 2D matrix directly. DO NOT...
Ans. 

Rotate a matrix by 90 degrees clockwise

  • Transpose the matrix

  • Reverse each row of the transposed matrix

  • Alternatively, swap elements in-place layer by layer

  • Example: [[1,2],[3,4]] -> [[3,1],[4,2]]

View all Software Developer interview questions
A Sde1 was asked
Q. Design a lift system.
Ans. 

Design a lift system

  • Determine the number of floors and the maximum weight capacity

  • Choose the type of lift system (hydraulic, traction, etc.)

  • Design the control system for the lift (buttons, sensors, etc.)

  • Consider safety features such as emergency brakes and backup power supply

View all Sde1 interview questions
A Software Development Engineer Intern was asked 9mo ago
Q. What is insertion sort and tell me implementation ?
Ans. 

Insertion sort is a simple sorting algorithm that builds the final sorted array one item at a time.

  • Iterate through the array starting from the second element.

  • Compare each element with the elements before it and insert it in the correct position.

  • Repeat until all elements are sorted.

  • Example: [5, 2, 4, 6, 1, 3] -> [2, 4, 5, 6, 1, 3] -> [2, 4, 5, 6, 1, 3] -> [1, 2, 4, 5, 6, 3] -> [1, 2, 3, 4, 5, 6]

View all Software Development Engineer Intern interview questions

Capillary Technologies Interview Experiences

20 interviews found

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. What is your past experience?
  • Q2. Degree and other educational info
Round 2 - Aptitude Test 

Asked to prepare a technical document based on a case study.

Round 3 - One-on-one 

(3 Questions)

  • Q1. What is my understanding of technical writing
  • Ans. 

    Technical writing involves creating clear and concise documentation for complex technical information.

    • Technical writing is about communicating technical information in a clear and concise manner

    • It involves creating user manuals, guides, reports, and other documentation

    • Technical writers must have a good understanding of the subject matter and the target audience

    • They use tools like diagrams, charts, and screenshots to en...

  • Answered by AI
  • Q2. Best practices to keep in mind as a technical writer
  • Q3. What is a push notification?
  • Ans. 

    A push notification is a message that pops up on a mobile device to alert the user about new updates or information.

    • Push notifications are commonly used by apps to engage users and provide timely information.

    • They can include text, images, and links to encourage users to take action.

    • Examples of push notifications include alerts for new messages, reminders for upcoming events, and notifications for app updates.

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

(2 Questions)

  • Q1. Basic education information
  • Q2. Questions to test my interest and inclination towards the role

Interview Preparation Tips

Topics to prepare for Capillary Technologies Technical Writer Intern interview:
  • Technical writing
  • API
  • Basic technical aptitude
Interview preparation tips for other job seekers - The interview process was quite straight forward and easy.

I had 3 interview rounds. First with the HR, second with the team manager and third with the product director. All 3 persons were friendly and enthusiastic. They asked basic questions related to the field. The entire process was online.

I had applied for a full time position but they suggested to do a 3 month internship and get converted.

Currently working full time after conversion.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Test duration was of 60 minutes and dsa, intermeditate aptitude

Round 2 - Technical 

(2 Questions)

  • Q1. What is insertion sort and tell me implementation ?
  • Ans. 

    Insertion sort is a simple sorting algorithm that builds the final sorted array one item at a time.

    • Iterate through the array starting from the second element.

    • Compare each element with the elements before it and insert it in the correct position.

    • Repeat until all elements are sorted.

    • Example: [5, 2, 4, 6, 1, 3] -> [2, 4, 5, 6, 1, 3] -> [2, 4, 5, 6, 1, 3] -> [1, 2, 4, 5, 6, 3] -> [1, 2, 3, 4, 5, 6]

  • Answered by AI
  • Q2. Total number of islands
  • Ans. 

    Count the total number of islands in a grid where '1' represents land and '0' represents water.

    • Iterate through the grid and for each '1' encountered, perform a depth-first search to mark all connected '1's as visited.

    • Increment the island count for each new island encountered during the search.

    • Return the total count of islands at the end.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - keep preparing and try to give your best

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 5 Feb 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Just a few basic questions were asked. Aptitude and Technical related. Test was paper based due to some issues with the online testing platform.

Round 2 - Technical 

(1 Question)

  • Q1. General questions about Java, SQL and Unix platforms. Projects was discussed in detail.
Round 3 - One-on-one 

(1 Question)

  • Q1. It was a techno-managerial round with mostly discussion with manager and few technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with your introduction and projects.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Behavioral question
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(1 Question)

  • Q1. Scenario-based questions for Incident management
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Design Least recently used cache.
  • Ans. 

    Design a Least Recently Used cache system.

    • Implement a doubly linked list to keep track of the order of usage of cache items.

    • Use a hashmap to store key-value pairs for quick access to cache items.

    • When a new item is accessed, move it to the front of the linked list. If the cache is full, remove the least recently used item from the end of the list.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Capillary Technologies Senior Software Engineer interview:
  • LLD
Interview preparation tips for other job seekers - Interviewer was not experience. I had to ask him what exactly he was looking for.

Skills evaluated in this interview

Intern Interview Questions & Answers

user image Anonymous

posted on 6 Jan 2025

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

I applied via Job Portal and was interviewed before Jan 2024. There were 3 interview rounds.

Round 1 - Group Discussion 

A general topic was provided.

Round 2 - Aptitude Test 

Basic aptitude questions.

Round 3 - HR 

(1 Question)

  • Q1. Sql and dbms questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal

Round 1 - One-on-one 

(1 Question)

  • Q1. DSA and python based web service
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Since I was from IIT, the manager asked me how I was and what projects I had worked on.
  • Q2. Discussed salary afterwards. All subsequent rounds were for namesake and the interviewers themselves had no questions. they were just sitting there and smiling and saying, what can we ask you!

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay away from this garbage. You will be abused and exploited.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

DSA test...focussed on Array

Round 2 - Technical 

(2 Questions)

  • Q1. React based questions
  • Q2. Javascript based question

Top trending discussions

View All
Office Jokes
2w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about Capillary Technologies?
Ask anonymously on communities.

Capillary Technologies Interview FAQs

How many rounds are there in Capillary Technologies interview?
Capillary Technologies interview process usually has 2 rounds. The most common rounds in the Capillary Technologies interview process are Technical, One-on-one Round and Aptitude Test.
How to prepare for Capillary Technologies 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 Capillary Technologies. The most common topics and skills that interviewers at Capillary Technologies expect are CRM, Project Management, Python, SQL and MySQL.
What are the top questions asked in Capillary Technologies interview?

Some of the top questions asked at the Capillary Technologies interview -

  1. You need to increase sales in Domino's Indonesia. What factors in data would yo...read more
  2. What is my understanding of technical writ...read more
  3. Round 3: How to compute requests per second in an applicati...read more
How long is the Capillary Technologies interview process?

The duration of Capillary Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.7/5

based on 18 interview experiences

Difficulty level

Easy 43%
Moderate 50%
Hard 7%

Duration

Less than 2 weeks 75%
2-4 weeks 17%
More than 8 weeks 8%
View more

Interview Questions from Similar Companies

Yardi Systems Interview Questions
3.6
 • 72 Interviews
BUSINESSNEXT Interview Questions
3.3
 • 68 Interviews
Ramco Systems Interview Questions
3.9
 • 67 Interviews
Vyapar Interview Questions
3.5
 • 60 Interviews
View all

Capillary Technologies Reviews and Ratings

based on 213 reviews

3.4/5

Rating in categories

3.3

Skill development

3.3

Work-life balance

3.0

Salary

3.3

Job security

3.6

Company culture

2.7

Promotions

3.2

Work satisfaction

Explore 213 Reviews and Ratings
Software Developer
51 salaries
unlock blur

₹18 L/yr - ₹45 L/yr

Business Analyst
48 salaries
unlock blur

₹3 L/yr - ₹11 L/yr

Customer Success Executive
34 salaries
unlock blur

₹2.8 L/yr - ₹6 L/yr

Software Engineer
32 salaries
unlock blur

₹2.8 L/yr - ₹9.5 L/yr

Senior Software Engineer
29 salaries
unlock blur

₹11.2 L/yr - ₹37 L/yr

Explore more salaries
Compare Capillary Technologies with

Financial Software & Systems

3.8
Compare

Ramco Systems

3.9
Compare

IBS Software Services

3.6
Compare

Nucleus Software Exports

3.5
Compare
write
Share an Interview