i
Convin
Filter interviews by
APIs are used to retrieve data from a server, while Webhook endpoints are used to receive data from a server.
APIs are used to request data from a server, while Webhook endpoints are used to receive data from a server without the need for polling.
APIs are typically initiated by the client, while Webhooks are initiated by the server.
APIs are synchronous, meaning the client waits for a response, while Webhooks are as...
APIs (Application Programming Interfaces) are sets of rules and protocols that allow different software applications to communicate with each other.
APIs define the methods and data formats that applications can use to request and exchange information.
They allow developers to access the functionality of a service or application without needing to understand its internal workings.
Examples of APIs include Google Maps...
Create an analog watch using React to display time with hour, minute, and second hands.
Use React's useState and useEffect hooks to manage time updates.
Create a Clock component that renders SVG elements for the watch face and hands.
Utilize CSS for styling the watch and positioning the hands accurately.
Implement a function to calculate the rotation of the hands based on the current time.
Example: For the second hand,...
I used the Selenium framework in my last project for automated testing.
Utilized Selenium WebDriver for automating test cases
Implemented Page Object Model design pattern for better code organization
Used TestNG for test case management and reporting
Merge sort is a divide-and-conquer algorithm that sorts an array by recursively dividing it into halves and merging sorted halves.
Divide the array into two halves until each sub-array contains a single element.
Merge the sub-arrays back together in sorted order.
Time complexity is O(n log n), making it efficient for large datasets.
Example: Sorting [38, 27, 43, 3, 9, 82, 10] results in [3, 9, 10, 27, 38, 43, 82].
Processes are independent instances of a program, while threads are smaller units within a process sharing resources.
Processes have their own memory space, while threads share the same memory space within a process.
Processes are heavyweight, requiring more resources, while threads are lightweight.
Processes communicate with each other through inter-process communication mechanisms, while threads can communicate dir...
Indexing typically uses data structures like B-trees or hash tables for efficient retrieval, with time complexity of O(log n) or O(1) respectively.
Common data structures for indexing include B-trees and hash tables
B-trees are typically used for indexing in databases due to their balanced nature and efficient search operations
Hash tables are used for indexing in scenarios where constant time lookup is desired, but ...
Time complexity of recursive fibonacci code is O(2^n)
The time complexity of a recursive fibonacci code is exponential, O(2^n)
This is because each call branches into two recursive calls, leading to exponential growth
For example, calculating fibonacci(5) would result in 15 function calls
Different sorting methods are beneficial in different scenarios based on factors like time complexity, space complexity, and input size.
Quick Sort: Best for large datasets due to its average time complexity of O(n log n)
Bubble Sort: Simple and easy to implement, but inefficient for large datasets with its time complexity of O(n^2)
Merge Sort: Stable and efficient for large datasets with its time complexity of O(n l...
Web Sockets is a communication protocol that provides full-duplex communication channels over a single TCP connection.
Web Sockets allow for real-time, bi-directional communication between a client and a server.
They are commonly used in chat applications, online gaming, and live data streaming.
Web Sockets use the ws:// or wss:// protocol scheme in URLs.
The protocol is initiated with a handshake between the client a...
I appeared for an interview in Aug 2024.
I have 3 years of experience in B2B sales, consistently exceeding targets and building strong client relationships.
3 years of experience in B2B sales
Consistently exceeded sales targets
Built strong client relationships
My target was to generate 50 new leads per week, and I consistently achieved or exceeded it.
Set a target of 50 new leads per week
Regularly tracked progress towards the target
Implemented various strategies to generate leads, such as cold calling, email campaigns, and networking events
Consistently met or exceeded the target by actively prospecting and following up with leads
I expect a supportive team environment, opportunities for growth, and clear communication.
Supportive team environment where collaboration is encouraged
Opportunities for growth and advancement within the company
Clear communication from management regarding expectations and goals
The assignment round consisted of two parts: the first part involved researching their company, writing a pitch, and identifying the appropriate personas, while the second part required me to pitch a product from my previous company and record the presentation.
The interview has been going well so far, I feel confident in my responses and connection with the interviewer.
I have been able to effectively communicate my experience and skills
I have provided specific examples to support my answers
I have asked insightful questions about the role and company
My salary expectations are in line with industry standards and based on my experience and skills.
Research industry standards for Sales Development Representative salaries
Consider my experience and skills when determining salary expectations
Be prepared to negotiate based on the overall compensation package offered
I appeared for an interview in May 2025, where I was asked the following questions.
I chose a managerial role to leverage my skills in leadership, strategy, and team development for impactful project outcomes.
Leadership: I enjoy guiding teams towards common goals, as seen in my previous role where I led a cross-functional team to deliver a project ahead of schedule.
Strategic Thinking: I thrive on developing strategies that align with organizational objectives, demonstrated when I implemented a new pro...
I appeared for an interview in Aug 2024.
I applied via LinkedIn and was interviewed in Mar 2024. There were 3 interview rounds.
Assignment was to create an API for an expenses sharing application where users can input the total amount and the people to be shared the amount with and each individual amount in terms of either actual amount, percentage or split equally
Processes are independent instances of a program, while threads are smaller units within a process sharing resources.
Processes have their own memory space, while threads share the same memory space within a process.
Processes are heavyweight, requiring more resources, while threads are lightweight.
Processes communicate with each other through inter-process communication mechanisms, while threads can communicate directly...
Indexing in DBMS is a technique used to improve the performance of queries by allowing faster retrieval of data.
Indexes are data structures that store a small portion of the table data in an optimized format for quick retrieval.
They help in speeding up data retrieval operations like SELECT, UPDATE, DELETE queries.
Examples of indexes include primary keys, unique keys, and composite keys.
Asymmetric encryption algorithms use a pair of keys to encrypt and decrypt data, providing secure communication.
RSA (Rivest-Shamir-Adleman) is a popular asymmetric encryption algorithm.
Elliptic Curve Cryptography (ECC) is another commonly used asymmetric encryption algorithm.
Asymmetric encryption is slower than symmetric encryption but provides better security.
Public key is used for encryption and private key is used f...
Different sorting methods are beneficial in different scenarios based on factors like time complexity, space complexity, and input size.
Quick Sort: Best for large datasets due to its average time complexity of O(n log n)
Bubble Sort: Simple and easy to implement, but inefficient for large datasets with its time complexity of O(n^2)
Merge Sort: Stable and efficient for large datasets with its time complexity of O(n log n)
...
ACID properties are a set of properties that guarantee reliability and consistency in database transactions.
Atomicity: Ensures that either all operations in a transaction are completed successfully or none at all.
Consistency: Ensures that the database remains in a consistent state before and after the transaction.
Isolation: Ensures that the execution of multiple transactions concurrently does not interfere with each ot...
Indexing typically uses data structures like B-trees or hash tables for efficient retrieval, with time complexity of O(log n) or O(1) respectively.
Common data structures for indexing include B-trees and hash tables
B-trees are typically used for indexing in databases due to their balanced nature and efficient search operations
Hash tables are used for indexing in scenarios where constant time lookup is desired, but may h...
Time complexity of recursive fibonacci code is O(2^n)
The time complexity of a recursive fibonacci code is exponential, O(2^n)
This is because each call branches into two recursive calls, leading to exponential growth
For example, calculating fibonacci(5) would result in 15 function calls
Web Sockets is a communication protocol that provides full-duplex communication channels over a single TCP connection.
Web Sockets allow for real-time, bi-directional communication between a client and a server.
They are commonly used in chat applications, online gaming, and live data streaming.
Web Sockets use the ws:// or wss:// protocol scheme in URLs.
The protocol is initiated with a handshake between the client and se...
I appeared for an interview in Aug 2024.
Case study interview questions are designed to assess problem solving, analytical, and critical thinking skills. These questions typically present a business scenario or challenge, requiring to analyze the situation, propose solutions and justify their approach.
General Aptitude test
I used the Selenium framework in my last project for automated testing.
Utilized Selenium WebDriver for automating test cases
Implemented Page Object Model design pattern for better code organization
Used TestNG for test case management and reporting
Writing a blog on the topic related to "Convin."
Create an analog watch using React to display time with hour, minute, and second hands.
Use React's useState and useEffect hooks to manage time updates.
Create a Clock component that renders SVG elements for the watch face and hands.
Utilize CSS for styling the watch and positioning the hands accurately.
Implement a function to calculate the rotation of the hands based on the current time.
Example: For the second hand, use ...
Top trending discussions
The duration of Convin interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 26 interview experiences
Difficulty level
Duration
3-6 Yrs
Not Disclosed
6-12 Yrs
Not Disclosed
3-5 Yrs
Not Disclosed
Software Developer fresher
11
salaries
| ₹26 L/yr - ₹60 L/yr |
Project Manager
9
salaries
| ₹21 L/yr - ₹23 L/yr |
Quality Analyst
8
salaries
| ₹3.6 L/yr - ₹6 L/yr |
Backend Developer
7
salaries
| ₹8 L/yr - ₹21 L/yr |
Data Annotation Engineer
5
salaries
| ₹3.2 L/yr - ₹4.5 L/yr |
Watchyourhealth.com
Zeta
Shorthills AI
Sequretek It Solutions