Upload Button Icon Add office photos

Capillary Technologies

Compare button icon Compare button icon Compare

Filter interviews by

Capillary Technologies Software Development Engineer Intern Interview Questions and Answers

Updated 13 Sep 2024

Capillary Technologies Software Development Engineer Intern Interview Experiences

1 interview found

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

I applied via campus placement at National Institute of Technology (NIT), Jamshedpur 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 from similar companies

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
-
Result
-
Round 1 - Aptitude Test 

APTRITUDE QUESTIONS,CODING

Round 2 - Technical 

(1 Question)

  • Q1. OOPS,CN,OS,DBMS
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic aptitude questions

Round 2 - Technical 

(1 Question)

  • Q1. Output of javascript code, c++ code and mySql
  • Ans. 

    The question is asking for the output of JavaScript code, C++ code, and MySQL.

    • JavaScript code outputs can be displayed in the browser console or on a webpage.

    • C++ code outputs can be printed to the console using cout statements.

    • MySQL outputs can be retrieved using SQL queries and displayed in a table format.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Sep 2023. There were 3 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 - Assignment 

First Round Was Assignment

Round 3 - One-on-one 

(1 Question)

  • Q1. Second round was one on one round
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Write a Simple GET, POST Flask Application?
  • Q2. Assign Values to a Cookie - Flask Application
Round 2 - Coding Test 

- Convert a given input of keys-values to value-keys using Python

Interview Preparation Tips

Interview preparation tips for other job seekers - Know Python well, Solve some DSA problems
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. React JS related questions
  • Q2. General questions in JS
Round 2 - Technical 

(1 Question)

  • Q1. React and Node js related questions
Round 3 - Behavioral 

(1 Question)

  • Q1. General topics were covered, nothing seem to be technical

Interview Preparation Tips

Interview preparation tips for other job seekers - From the last and final discussion, the manager seemed happy. I wasn't sure if it was the salary package or what went wrong. I didn't really got a call back from them. When I called them to check the status of my application, they said they'll get back to me in 10mins but that's the last I heard from them. Even if I got rejected for some reason, just a auto-denial email would have been better as all the interview process went great except the thing the HR didn't pick up the call or didn't share any thing back. This seems to be happening similarly for most of the companies now a days
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I was interviewed in Aug 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. My expertise are in golang. And all the questions were straight forward around golang.
  • Q2. What is concurrency. How to check performance of applications. How to handle concurrency. How many no of goroutines can be created and so on.
  • Ans. 

    Concurrency is the ability of a system to run multiple tasks simultaneously. Performance of applications can be checked using profiling tools. Concurrency can be handled using synchronization techniques like mutexes and channels.

    • Concurrency allows multiple tasks to run concurrently, improving performance and responsiveness.

    • Performance of applications can be checked using profiling tools like Go's built-in 'pprof' packa...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. How to make sure there are no vulnerabilities. What engineering principles you follow.
  • Ans. 

    To ensure no vulnerabilities, follow secure coding practices, conduct regular security audits, use encryption, and stay updated on security threats.

    • Follow secure coding practices such as input validation, output encoding, and parameterized queries.

    • Conduct regular security audits to identify and address vulnerabilities in the code.

    • Use encryption to protect sensitive data in transit and at rest.

    • Stay updated on security t...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic OOP questions for python programming language

Round 2 - HR 

(2 Questions)

  • Q1. What's abstraction
  • Ans. 

    Abstraction is the concept of hiding complex implementation details and showing only the necessary information to the user.

    • Abstraction allows users to focus on what an object does instead of how it does it

    • It helps in reducing complexity and improving efficiency in software development

    • Example: In object-oriented programming, abstract classes and interfaces are used to achieve abstraction

  • Answered by AI
  • Q2. What's the difference between SQL and NoSQL database
  • Ans. 

    SQL databases are relational databases with structured data, while NoSQL databases are non-relational databases with flexible, unstructured data.

    • SQL databases use structured query language for defining and manipulating data, while NoSQL databases use different query languages or APIs.

    • SQL databases are table-based, with a predefined schema, while NoSQL databases are document, key-value, wide-column, or graph-based.

    • SQL d...

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Reverse a linked list
  • Ans. 

    Reverse a linked list by changing the direction of pointers

    • Start with three pointers: current, prev, and next

    • Iterate through the linked list, updating pointers to reverse the direction

    • Update the head of the linked list to the last node after reversing

  • Answered by AI
  • Q2. Implement binary search algorithm
  • Ans. 

    Binary search algorithm efficiently finds the target value in a sorted array.

    • Start by defining the low and high indices of the array.

    • Calculate the mid index and compare the target value with the value at mid.

    • If target is less than mid value, update high to mid-1; if greater, update low to mid+1.

    • Repeat until target is found or low is greater than high.

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

(2 Questions)

  • Q1. Brief Introduction and basic questions
  • Q2. Future plans and how am i going to achieve them

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

It is noraml question

Round 2 - Coding Test 

Basica questions for the coding

Round 3 - HR 

(1 Question)

  • Q1. When can you join
  • Ans. 

    I can join within 2 weeks of receiving an offer.

    • I can start within 2 weeks of receiving an offer.

    • My current notice period is 2 weeks.

    • I am available to start immediately.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Quants,Logical and verbal reasoning

Round 2 - Technical 

(1 Question)

  • Q1. Project related and term subjects
Round 3 - HR 

(1 Question)

  • Q1. Strength and weakness

Capillary Technologies Interview FAQs

How many rounds are there in Capillary Technologies Software Development Engineer Intern interview?
Capillary Technologies interview process usually has 2 rounds. The most common rounds in the Capillary Technologies interview process are Aptitude Test and Technical.
What are the top questions asked in Capillary Technologies Software Development Engineer Intern interview?

Some of the top questions asked at the Capillary Technologies Software Development Engineer Intern interview -

  1. what is insertion sort and tell me implementatio...read more
  2. total number of isla...read more

Tell us how to improve this page.

Capillary Technologies Software Development Engineer Intern Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Zoho Interview Questions
4.3
 • 516 Interviews
Freshworks Interview Questions
3.5
 • 155 Interviews
DE Shaw Interview Questions
3.8
 • 120 Interviews
Yardi Systems Interview Questions
3.8
 • 69 Interviews
BUSINESSNEXT Interview Questions
4.0
 • 63 Interviews
Vyapar Interview Questions
3.4
 • 53 Interviews
View all
Business Analyst
53 salaries
unlock blur

₹3.5 L/yr - ₹9.4 L/yr

Customer Success Executive
34 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Software Engineer
30 salaries
unlock blur

₹2.8 L/yr - ₹9.1 L/yr

Software Development Engineer
30 salaries
unlock blur

₹6 L/yr - ₹20 L/yr

Customer Success Associate
28 salaries
unlock blur

₹3.2 L/yr - ₹8.5 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