Upload Button Icon Add office photos

Capillary Technologies

Compare button icon Compare button icon Compare

Filter interviews by

Capillary Technologies Sde1 Interview Questions and Answers

Updated 15 Jun 2021

Capillary Technologies Sde1 Interview Experiences

1 interview found

Sde1 Interview Questions & Answers

user image Anonymous

posted on 15 Jun 2021

Interview Questionnaire 

3 Questions

  • Q1. Round 1: DS Algo questions. Coin change problem etc.
  • Q2. Round 2: Low level design. 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

  • Answered by AI
  • Q3. Round 3: How to compute requests per second in an application.
  • Ans. 

    To compute requests per second in an application

    • Identify the number of requests received by the application in a given time frame

    • Divide the number of requests by the time frame to get requests per second

    • Use load testing tools like JMeter to simulate traffic and measure requests per second

    • Optimize application performance to handle high traffic and increase requests per second

  • Answered by AI

Sde1 Jobs at Capillary Technologies

View all

Interview questions from similar companies

Interview Questionnaire 

3 Questions

  • Q1. N a line where words are separated by spaces, , and capitalize first letter of the reversed word. Other letters of the word should be in small. Input : “how are you?” → Output: “Woh Era ?uoy”
  • Ans. 

    The program capitalizes the first letter of each reversed word in a sentence.

    • Split the sentence into an array of words using space as a delimiter.

    • Reverse each word in the array and capitalize the first letter.

    • Join the modified words back into a sentence.

  • Answered by AI
  • Q2. He second question reduced to finding maximum weight matching in a bipartite graph. Not many people would have done this (maybe none)
  • Q3. There are 2 sets of countries. One set will donate clothes (something of this sort) and anotherset will accept clothes. A country can be in only 1 of the sets. The amount of clothes donated is also given. ...

Interview Preparation Tips

Round: Test
Experience: There were about 20 MCQs (30 minutes) to be done after the coding section. MCQs were totally nonsense. Can be done in 10 mins.For coding section 60 mins.  It was hosted on Hackerrank.
Duration: 90 minutes
Total Questions: 2

Round: Technical Interview
Experience: After this, selected candidates were interviewed that consists of 4 rounds and discussion was mostly on your CV and data structure problems.

General Tips: Be honest with your interviewer. If you are not comfortable in 1 topic, tell your interviewer honestly. Do well in other areas. Look for hints from the interviewer if you get stuck. They want to see how you approach a problem.
Skills: Algortihm, Data structure
College Name: IIT DELHI

Interview Questionnaire 

1 Question

  • Q1. 1st round c mcq 2nd round short coding 3rd round advanced coding 4 and 5 technical hr and general hr

Interview Questionnaire 

1 Question

  • Q1. Simple basic c programing questions

Interview Questionnaire 

3 Questions

  • Q1. How the job is beneficial to job seekers who has applied for it ?
  • Ans. 

    The job of a Business Analyst is beneficial for job seekers as it offers a challenging and rewarding career with opportunities for growth and development.

    • Provides exposure to various industries and domains

    • Opportunities to work with cross-functional teams

    • Develops analytical and problem-solving skills

    • Enhances communication and presentation skills

    • Offers competitive salaries and benefits

    • Potential for career advancement and

  • Answered by AI
  • Q2. How the job gives satisfaction for client who has worked for it ?
  • Q3. How much recruitment I have hire for a job that I have wanted to do ?
  • Ans. 

    The number of recruitment hires for a desired job varies based on factors like company size, industry, and job requirements.

    • Consider the size of the company - larger companies may have more recruitment hires

    • Industry trends - certain industries may have higher turnover rates and require more recruitment

    • Job requirements - specialized roles may require more recruitment efforts

    • Utilize data analytics to determine optimal re

  • Answered by AI

I was interviewed before Mar 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    Level Order Traversal Problem Statement

    Given a binary tree of integers, return the level order traversal of the binary tree.

    Input:

    The first line contains an integer 'T', representing the number of te...
  • Ans. 

    Return the level order traversal of a binary tree given in level order with null nodes represented by -1.

    • Create a queue to store nodes for level order traversal

    • Start with the root node and add it to the queue

    • While the queue is not empty, dequeue a node, print its value, and enqueue its children

    • Repeat until all nodes are traversed in level order

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 45 minutes
Round difficulty - Easy

  • Q1. What is a deadlock in DBMS, and can you explain the concepts of join and query?
  • Ans. 

    A deadlock in DBMS occurs when two or more transactions are waiting for each other to release locks, causing them to be stuck indefinitely.

    • Deadlock is a situation where two or more transactions are unable to proceed because each is waiting for the other to release locks.

    • To prevent deadlocks, DBMS uses techniques like deadlock detection and prevention algorithms.

    • Joins in DBMS are used to combine rows from two or more ta...

  • Answered by AI
Round 3 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. Design a system for Twitter, outlining the key components and architecture involved.
  • Ans. 

    Design a system for Twitter

    • Key components: user profiles, tweets, hashtags, timelines

    • Architecture: microservices, load balancers, databases, caching

    • Scalability: sharding, replication, CDN

    • Real-time processing: streaming APIs, push notifications

  • Answered by AI
Round 4 - Coding Test 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Maximum Subarray Sum Queries

    You are provided with an array of ‘N’ integers and ‘Q’ queries. Each query requires calculating the maximum subarray sum in a specified range of the array.

    Input:

    The first ...
  • Ans. 

    Implement a function to calculate maximum subarray sum queries in a given range of an array.

    • Iterate through each query and calculate the maximum subarray sum within the specified range using Kadane's algorithm.

    • Keep track of the maximum sum found so far and update it as needed.

    • Return the maximum subarray sum for each query in the test case.

  • Answered by AI
  • Q2. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an integer array containing only 0s, 1s, and 2s in linear time complexity.

    • Use a single scan over the array to sort it in-place.

    • Maintain three pointers for 0s, 1s, and 2s and swap elements accordingly.

    • Example: Input: [0, 2, 1, 2, 0], Output: [0, 0, 1, 2, 2]

  • Answered by AI
Round 5 - Coding Test 

Round duration - 20 Minutes
Round difficulty - Medium

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in ChennaiEligibility criteria7 CGPAFreshworks interview preparation:Topics to prepare for the interview - Algorithms, Data Structures, Dynamic Programming, OOPS, System DesignTime required to prepare for the interview - 2.5 MonthsInterview preparation tips for other job seekers

Tip 1 : Prepare DS and Algo
Tip 2 : Prepare Dynamic programming 

Application resume tips for other job seekers

Tip 1 : Good in DS and algo that will be help in the interview that is very neccassry
Tip 2 : Prepare DBMS

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I was interviewed before Feb 2024.

Round 1 - Aptitude Test 

English and reasoning

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

5 verbal questions, 2 mid - hard coding on arrays, hashmap and dp

Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself and projects
  • Ans. 

    I am a software developer with experience in web development and mobile applications.

    • Developed a web application using React and Node.js for managing inventory

    • Created a mobile app using Flutter for tracking daily expenses

    • Familiar with Agile development practices

  • Answered by AI
  • Q2. Basic questions on coding define different DS and Difference btw them
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Coding Test 

1st round is coding assessment round based on graph and hashmaps

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain joins in SQL
  • Ans. 

    Joins in SQL are used to combine rows from two or more tables based on a related column between them.

    • Joins are used to retrieve data from multiple tables based on a related column between them

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • INNER JOIN returns rows when there is at least one match in both tables

    • LEFT JOIN returns all rows from the left table and the matched rows from the right table

    • ...

  • Answered by AI
  • Q2. What are object and class in OOPs?
  • Ans. 

    Objects are instances of classes in OOPs. Classes are blueprints for creating objects with attributes and methods.

    • Objects are instances of classes

    • Classes are blueprints for creating objects

    • Classes define attributes and methods for objects

    • Example: Class 'Car' with attributes like 'color' and methods like 'drive'

  • Answered by AI

Skills evaluated in this interview

Capillary Technologies Interview FAQs

How to prepare for Capillary Technologies Sde1 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 Purchase, Recruitment, Training, Agile Coaching and Analytical Chemistry.
What are the top questions asked in Capillary Technologies Sde1 interview?

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

  1. Round 3: How to compute requests per second in an applicati...read more
  2. Round 2: Low level design. Design a lift syst...read more
  3. Round 1: DS Algo questions. Coin change problem e...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Zoho Interview Questions
4.3
 • 507 Interviews
Freshworks Interview Questions
3.5
 • 158 Interviews
Yardi Systems Interview Questions
3.7
 • 69 Interviews
Ramco Systems Interview Questions
3.9
 • 66 Interviews
BUSINESSNEXT Interview Questions
3.4
 • 65 Interviews
Vyapar Interview Questions
3.4
 • 53 Interviews
View all
Capillary Technologies Sde1 Salary
based on 9 salaries
₹9.2 L/yr - ₹17 L/yr
45% less than the average Sde1 Salary in India
View more details

Capillary Technologies Sde1 Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

4.0

Work-life balance

4.0

Salary

4.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Full Stack SDE 1

Mysuru / Mysore

1-2 Yrs

Not Disclosed

SDE 1 React native

Mysuru / Mysore

1-2 Yrs

Not Disclosed

Explore more jobs
Business Analyst
53 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Customer Success Executive
37 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
31 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer
30 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Customer Success Associate
28 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Capillary Technologies with

Netcore Cloud Private Limited

4.2
Compare

MoEngage

4.0
Compare

CleverTap

3.6
Compare

Freshworks

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