AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

Cyware

Compare button icon Compare button icon Compare
3.0

based on 26 Reviews

Play video Play video Video summary
  • About
  • Reviews
    26
  • Salaries
    364
  • Interviews
    13
  • Jobs
    2
  • Benefits
    3
  • Photos
    -

Filter interviews by

Cyware Interview Questions and Answers

Updated 22 Apr 2025
Popular Designations

12 Interview questions

A Software Development Engineer Test was asked 6mo 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 6mo 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 8mo 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 8mo 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 Product Manager was asked
Q. What factors should be considered when creating a REST API?
Ans. 

Factors to consider when creating REST API

  • Define clear and consistent naming conventions for endpoints and resources

  • Use proper HTTP methods (GET, POST, PUT, DELETE) for CRUD operations

  • Implement proper error handling and status codes

  • Ensure security measures such as authentication and authorization are in place

  • Optimize performance by considering caching and pagination

  • Document the API thoroughly for developers to eas...

View all Product Manager interview questions
Are these interview questions helpful?
A Product Manager was asked
Q. Design a website for children.
Ans. 

A colorful and interactive website designed to engage and educate children through games, videos, and interactive activities.

  • Use bright colors and fun animations to capture children's attention

  • Include interactive games and puzzles to make learning fun

  • Incorporate educational videos and interactive activities to keep children engaged

  • Ensure the website is easy to navigate and user-friendly for children of all ages

View all Product Manager interview questions
A Software Engineer was asked
Q. Describe the median streaming problem and how to print the median.
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.

View all Software Engineer interview questions
A Product Manager was asked
Q. Share your understanding and present a 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, ...

View all Product Manager interview questions
1 2

Cyware Interview Experiences

13 interviews found

Software Development Engineer Test Interview Questions & Answers

user image Anonymous

posted on 14 Dec 2024

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
    Add your answer
  • 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
    Add your answer
  • 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
    Add your answer

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.
Anonymous

Software Developer Intern Interview Questions & Answers

user image Anonymous

posted on 2 Sep 2024

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
    Add your answer
  • 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
    Add your answer

Skills evaluated in this interview

Anonymous

Software Developer Interview Questions & Answers

user image Anonymous

posted on 17 Oct 2024

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
  • Add your answer
  • 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
    Add your answer
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
    Add your answer
  • Q2. DBMS interview questions
  • Add your answer
  • Q3. Operating system questions
  • Add your answer

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
Anonymous

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
    Add your answer
Anonymous

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
  • Add your answer
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
    Add your answer
Anonymous

Lead Software Engineer Interview Questions & Answers

user image Anonymous

posted on 22 Apr 2025

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
  • Add your answer
  • Q2. Project on which i worked on .
  • Add your answer
Anonymous

Product Manager Interview Questions & Answers

user image Anonymous

posted on 3 Feb 2024

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

(2 Questions)

  • Q1. Tell me about yourself
  • Add your answer
  • Q2. Work ex related questions
  • Add your answer
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
    Add your answer
Round 4 - One-on-one 

(1 Question)

  • Q1. With the management for behavioural fit
  • Add your answer
Anonymous

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
  • Add your answer

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)
Anonymous

Software Developer Intern Interview Questions & Answers

user image Deepa.S

posted on 21 Jul 2024

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

Anonymous

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
    View 1 more answer

Skills evaluated in this interview

Anonymous

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Cyware?
Ask anonymously on communities.
More about working at Cyware
  • HQ - New York, United States (USA)
  • IT Services & Consulting
  • 51-200 Employees (India)
  • Software Product

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.

Cyware Interviews By Designations

  • Cyware Product Manager Interview Questions
  • Cyware Software Developer Intern Interview Questions
  • Cyware Devops Engineer Interview Questions
  • Cyware Software Engineer Interview Questions
  • Cyware Lead Software Engineer Interview Questions
  • Cyware Software Developer Interview Questions
  • Cyware Senior Content Writer Interview Questions
  • Cyware Software Development Engineer Test Interview Questions
  • Show more
  • Cyware Solution Architect Interview Questions

Interview Questions for Popular Designations

  • Executive Interview Questions
  • Senior Executive Interview Questions
  • Team Lead Interview Questions
  • Business Analyst Interview Questions
  • Senior Associate Interview Questions
  • Associate Software Engineer Interview Questions
  • Accountant Interview Questions
  • HR Executive Interview Questions
  • Show more
  • Assistant Manager Interview Questions
  • Deputy Manager Interview Questions

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
HyScaler Interview Questions
4.5
 • 104 Interviews
AvenData GmbH
AvenData GmbH Interview Questions
3.4
 • 34 Interviews
Zebra Technologies
Zebra Technologies Interview Questions
3.8
 • 26 Interviews
Monotype
Monotype Interview Questions
3.6
 • 25 Interviews
MulticoreWare
MulticoreWare Interview Questions
4.1
 • 23 Interviews
Sagitec Solutions
Sagitec Solutions Interview Questions
3.6
 • 23 Interviews
Pitney Bowes
Pitney Bowes Interview Questions
3.8
 • 22 Interviews
Grapecity
Grapecity Interview Questions
3.7
 • 19 Interviews
American Megatrends
American Megatrends Interview Questions
3.7
 • 18 Interviews
Hestabit Technologies
Hestabit Technologies Interview Questions
4.0
 • 17 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
Jobs at Cyware
Cyware
Technical Writer

Bangalore / Bengaluru

3-6 Yrs

Not Disclosed

Cyware
Senior Product Manager

Bangalore / Bengaluru

4-7 Yrs

Not Disclosed

Explore more jobs
Cyware Salaries in India
Software Engineer
23 salaries
unlock blur

₹8.9 L/yr - ₹25.3 L/yr

Lead Recruiter
16 salaries
unlock blur

₹15.5 L/yr - ₹27 L/yr

Senior Software Engineer
14 salaries
unlock blur

₹14.9 L/yr - ₹48 L/yr

Solution Architect
9 salaries
unlock blur

₹24 L/yr - ₹32 L/yr

Senior Product Manager
7 salaries
unlock blur

₹35 L/yr - ₹38.5 L/yr

Explore more salaries
Compare Cyware with
HyScaler

HyScaler

4.5
Compare
Pitney Bowes

Pitney Bowes

3.8
Compare
AvenData GmbH

AvenData GmbH

3.4
Compare
Dataflow Group

Dataflow Group

2.9
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Cyware Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter