Upload Button Icon Add office photos

Cyware

Compare button icon Compare button icon Compare

Filter interviews by

Cyware Interview Questions and Answers

Updated 22 Apr 2025
Popular Designations

8 Interview questions

A Software Development Engineer Test was asked 7mo ago
Q. Given an m x n matrix, return all elements of the matrix in spiral order.
Ans. 

Prints elements of a matrix in a spiral order, starting from the top-left corner and moving clockwise.

  • Initialize boundaries: top, bottom, left, right.

  • Iterate while top <= bottom and left <= right.

  • Traverse from left to right along the top row, then increment top.

  • Traverse from top to bottom along the right column, then decrement right.

  • Traverse from right to left along the bottom row, then decrement bottom.

  • Trav...

View all Software Development Engineer Test interview questions
A Software Development Engineer Test was asked 7mo ago
Q. Write a program to calculate the sum of digits of a number repeatedly until the result is a single-digit number.
Ans. 

Sum all digits until single digit is reached

  • Iterate through each digit and add them together

  • Repeat the process until the sum is a single digit

  • Example: For input 1234, sum = 1+2+3+4 = 10, then sum = 1+0 = 1

View all Software Development Engineer Test interview questions
A Software Developer was asked 9mo ago
Q. Given an array of integers, sort the array using the merge sort algorithm.
Ans. 

Merge Sort is a divide-and-conquer algorithm that sorts an array by recursively splitting and merging sorted subarrays.

  • 1. Divide the array into two halves until each subarray contains a single element.

  • 2. Merge the subarrays back together in sorted order.

  • 3. Time complexity is O(n log n) in all cases (best, average, worst).

  • 4. Example: Sorting [38, 27, 43, 3, 9, 82, 10] results in [3, 9, 10, 27, 38, 43, 82].

View all Software Developer interview questions
A Software Developer was asked 9mo ago
Q. Given an integer array nums, return all the triplets [nums[i], nums[j], nums[k]] such that i != j, i != k, and j != k, and nums[i] + nums[j] + nums[k] == 0. Notice that the solution set must not contain dup...
Ans. 

The Three Sum problem involves finding unique triplets in an array that sum to zero.

  • Input: An array of integers, e.g., [-1, 0, 1, 2, -1, -4].

  • Output: Unique triplets that sum to zero, e.g., [[-1, -1, 2], [-1, 0, 1]].

  • Sort the array to simplify finding triplets and avoid duplicates.

  • Use a two-pointer technique to find pairs that complement the current element.

  • Time complexity is O(n^2) due to nested loops.

View all Software Developer interview questions
A Devops Engineer was asked 10mo ago
Q. Write a function that reverses a string.
Ans. 

Reverse a string by using built-in functions or manually iterating through the characters.

  • Use built-in functions like reverse() in Python or StringBuilder.reverse() in Java.

  • Manually iterate through the characters of the string and append them in reverse order to a new string.

  • Consider edge cases like empty string or null input.

View all Devops Engineer interview questions
A Software Developer Intern was asked 10mo ago
Q. Given an array of positive numbers, find the maximum sum of a subsequence with the constraint that no 2 numbers in the subsequence should be adjacent in the array.
Ans. 

Find the maximum sum of non-adjacent elements in an array.

  • Create an array to store the maximum sum at each index

  • Iterate through the input array and calculate the maximum sum considering the current element and the previous non-adjacent element

  • Return the maximum sum found

View all Software Developer Intern interview questions
A Software Development Engineer Test was asked 7mo ago
Q. Why python and explain about list.
Ans. 

Python is a popular programming language known for its simplicity and readability. Lists in Python are versatile data structures that can hold multiple items of different types.

  • Python is widely used in software development due to its ease of use and readability.

  • Lists in Python are ordered collections of items, which can be of different data types.

  • Lists can be modified, appended, sorted, and sliced in Python.

  • Exampl...

View all Software Development Engineer Test interview questions
Are these interview questions helpful?
A Product was asked 9mo ago
Q. Product experiences
Ans. 

Product experiences are crucial for customer satisfaction and loyalty.

  • Product experiences can greatly impact customer satisfaction and loyalty.

  • Positive product experiences can lead to repeat purchases and word-of-mouth recommendations.

  • Negative product experiences can result in customer churn and negative reviews.

  • Examples: Apple's seamless user experience, Tesla's innovative features, Amazon's convenient shopping e...

Cyware Interview Experiences

13 interviews found

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

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

Round 1 - Aptitude Test 

Aptitude + Coding round
duration was 1 hr 30 mins
Topics were basic aptitude for interviews
Coding topics was - Stack and Greedy

Round 2 - Technical 

(3 Questions)

  • Q1. Why python and explain about list.
  • Ans. 

    Python is a popular programming language known for its simplicity and readability. Lists in Python are versatile data structures that can hold multiple items of different types.

    • Python is widely used in software development due to its ease of use and readability.

    • Lists in Python are ordered collections of items, which can be of different data types.

    • Lists can be modified, appended, sorted, and sliced in Python.

    • Example: li...

  • Answered by AI
  • Q2. Print Spiral matrix (twisted leetcode question)
  • Ans. 

    Prints elements of a matrix in a spiral order, starting from the top-left corner and moving clockwise.

    • Initialize boundaries: top, bottom, left, right.

    • Iterate while top <= bottom and left <= right.

    • Traverse from left to right along the top row, then increment top.

    • Traverse from top to bottom along the right column, then decrement right.

    • Traverse from right to left along the bottom row, then decrement bottom.

    • Traverse ...

  • Answered by AI
  • Q3. Print the summation of all the digit until the length of the digit is 1
  • Ans. 

    Sum all digits until single digit is reached

    • Iterate through each digit and add them together

    • Repeat the process until the sum is a single digit

    • Example: For input 1234, sum = 1+2+3+4 = 10, then sum = 1+0 = 1

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Cyware Software Development Engineer Test interview:
  • DSA
  • Leetcode
  • Resume
Interview preparation tips for other job seekers - Be confident, speak out loud, and be interactive.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 coding question one easy one medium

Round 2 - Technical 

(2 Questions)

  • Q1. MAx sum of non adjacent elements
  • Ans. 

    Find the maximum sum of non-adjacent elements in an array.

    • Create an array to store the maximum sum at each index

    • Iterate through the input array and calculate the maximum sum considering the current element and the previous non-adjacent element

    • Return the maximum sum found

  • Answered by AI
  • Q2. Optimize it further
  • Ans. 

    Utilize efficient algorithms, minimize redundant code, optimize database queries

    • Use data structures like hash maps or binary trees for faster lookups

    • Minimize nested loops and unnecessary iterations

    • Optimize database queries by using indexes and avoiding unnecessary joins

  • Answered by AI

Skills evaluated in this interview

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

I appeared for an interview in Apr 2024.

Round 1 - Coding Test 

3 coding questions and some McQ questions

Round 2 - Technical 

(2 Questions)

  • Q1. Asked DSa question of TWO sum
  • Q2. Dsa question of three sum
  • Ans. 

    The Three Sum problem involves finding unique triplets in an array that sum to zero.

    • Input: An array of integers, e.g., [-1, 0, 1, 2, -1, -4].

    • Output: Unique triplets that sum to zero, e.g., [[-1, -1, 2], [-1, 0, 1]].

    • Sort the array to simplify finding triplets and avoid duplicates.

    • Use a two-pointer technique to find pairs that complement the current element.

    • Time complexity is O(n^2) due to nested loops.

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. Dsa question of merge sort
  • Ans. 

    Merge Sort is a divide-and-conquer algorithm that sorts an array by recursively splitting and merging sorted subarrays.

    • 1. Divide the array into two halves until each subarray contains a single element.

    • 2. Merge the subarrays back together in sorted order.

    • 3. Time complexity is O(n log n) in all cases (best, average, worst).

    • 4. Example: Sorting [38, 27, 43, 3, 9, 82, 10] results in [3, 9, 10, 27, 38, 43, 82].

  • Answered by AI
  • Q2. DBMS interview questions
  • Q3. Operating system questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare best with the fundamentals of core subjects like computer networks , operating system and DBMS

Devops Engineer Interview Questions & Answers

user image RAUNAK SHARMA (RA2111003010935)

posted on 9 Sep 2024

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

(1 Question)

  • Q1. Reverse a string
  • Ans. 

    Reverse a string by using built-in functions or manually iterating through the characters.

    • Use built-in functions like reverse() in Python or StringBuilder.reverse() in Java.

    • Manually iterate through the characters of the string and append them in reverse order to a new string.

    • Consider edge cases like empty string or null input.

  • Answered by AI

Interview Questions & Answers

user image Anonymous

posted on 18 Sep 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. About product experiences
Round 2 - One-on-one 

(1 Question)

  • Q1. Product experiences
  • Ans. 

    Product experiences are crucial for customer satisfaction and loyalty.

    • Product experiences can greatly impact customer satisfaction and loyalty.

    • Positive product experiences can lead to repeat purchases and word-of-mouth recommendations.

    • Negative product experiences can result in customer churn and negative reviews.

    • Examples: Apple's seamless user experience, Tesla's innovative features, Amazon's convenient shopping experi...

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
No response

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. Kafka basics - Consumer vs Group consumer, etc
  • Q2. Project on which i worked on .
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Work ex related questions
Round 2 - Case Study 

To test knowledge in Cybersecurity

Round 3 - Case Study Presentation 

(1 Question)

  • Q1. Share the understanding and present case study
  • Ans. 

    Understanding product management through a case study on user-centered design and market analysis.

    • Identify user needs: Conduct surveys and interviews to gather insights.

    • Market analysis: Analyze competitors and market trends to position the product effectively.

    • Define product vision: Create a clear vision that aligns with user needs and business goals.

    • Iterative development: Use agile methodologies to develop, test, and r...

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

(1 Question)

  • Q1. With the management for behavioural fit

Product Manager Interview Questions & Answers

user image Samidha Singh

posted on 13 Apr 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself, past experiences, resume walkthrough

Interview Preparation Tips

Interview preparation tips for other job seekers - Please make sure you ask their budget beforehand. I gave 5 rounds of interviews with a take home assignment and also 3 rounds conducted in-office and later they did not send an offer later since the compensation expectation did not align (which I had already pre mentioned)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

We had some aptitude and coding questions

Round 2 - Aptitude Test 

Topics like time work, permutations etc

Software Engineer Interview Questions & Answers

user image Yeshwanth Konka

posted on 20 Mar 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Median streaming problem print
  • Ans. 

    The median streaming problem involves finding the median of a stream of numbers as they are being inputted.

    • Maintain two heaps - a max heap for the lower half of the numbers and a min heap for the higher half.

    • Keep the heaps balanced by ensuring the size difference is at most 1.

    • If the total number of elements is odd, the median is the root of the max heap. If even, average the roots of both heaps.

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Cyware?
Ask anonymously on communities.

Cyware Interview FAQs

How many rounds are there in Cyware interview?
Cyware interview process usually has 2-3 rounds. The most common rounds in the Cyware interview process are One-on-one Round, Technical and Coding Test.
How to prepare for Cyware 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 Cyware. The most common topics and skills that interviewers at Cyware expect are Automation, Python, Health Insurance, Operations and Packaging.
What are the top questions asked in Cyware interview?

Some of the top questions asked at the Cyware interview -

  1. print the summation of all the digit until the length of the digit i...read more
  2. Why python and explain about li...read more
  3. What factors to pay attention to when creating REST ...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.5/5

based on 13 interview experiences

Difficulty level

Easy 20%
Moderate 80%

Duration

Less than 2 weeks 80%
4-6 weeks 20%
View more

Interview Questions from Similar Companies

HyScaler Interview Questions
4.5
 • 104 Interviews
AvenData GmbH Interview Questions
3.4
 • 34 Interviews
Monotype Interview Questions
3.6
 • 25 Interviews
MulticoreWare Interview Questions
4.1
 • 23 Interviews
Pitney Bowes Interview Questions
3.8
 • 22 Interviews
Grapecity Interview Questions
3.7
 • 19 Interviews
View all

Cyware Reviews and Ratings

based on 26 reviews

3.0/5

Rating in categories

3.6

Skill development

2.9

Work-life balance

3.3

Salary

2.8

Job security

2.7

Company culture

2.7

Promotions

3.3

Work satisfaction

Explore 26 Reviews and Ratings
Technical Writer

Bangalore / Bengaluru

3-6 Yrs

Not Disclosed

Senior Product Manager

Bangalore / Bengaluru

4-7 Yrs

Not Disclosed

Explore more jobs
Software Engineer
23 salaries
unlock blur

₹8.9 L/yr - ₹25.3 L/yr

Lead Recruiter
16 salaries
unlock blur

₹16.4 L/yr - ₹27 L/yr

Senior Software Engineer
14 salaries
unlock blur

₹25.5 L/yr - ₹46.4 L/yr

Solution Architect
9 salaries
unlock blur

₹24 L/yr - ₹32 L/yr

Senior Associate
8 salaries
unlock blur

₹16 L/yr - ₹22 L/yr

Explore more salaries
Compare Cyware with

HyScaler

4.5
Compare

Pitney Bowes

3.8
Compare

AvenData GmbH

3.4
Compare

Dataflow Group

2.9
Compare
write
Share an Interview