Upload Button Icon Add office photos

Filter interviews by

Cyware Software Engineer Interview Questions and Answers

Updated 20 Mar 2024

Cyware Software Engineer Interview Experiences

1 interview found

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

Interview questions from similar companies

Software Engineer Interview Questions & Answers

American Megatrends user image R. Arockia Ratheesh Sahayaraj

posted on 6 Nov 2015

Interview Preparation Tips

Round: Test
Experience: Only 24 people from my campus attended the placement process of this company.The experience wasn't really good.I wasn't 
short-listed for next round as my CGPA was 7.5 and need was of above 7.5 ,as they were maintaining standards.

Round: Test
Experience: 1.C aps was really tough.
2.Section 2 we had to choose either Microprocessor or Java,I preferred microprocessor . 3.Simple Questions on 8085 and 8086 instruction set was asked.
4.How much memory are there are 20 address lines,
5.Difference between SRAM and DRAM.
6.ROM is used for stack or not.
7.What are contents of Stack Pointer after PUSH and POP operation.
8.What happens after RET instruction?
9.What is CMC equivalent instruction?

Round: Test
Experience: 16 questions on Quant which are :-
Odd number in a series, Area and Volume, Games of Skill, Time and Work, Average, Trains, Boats 
and Streams, Profit and Gain were asked.
If no. of handshakes is 66,find total number of People.?
A lotus in a pond doubles in size everyday,if it fills the pond on 20th day,when will be the pond would be half?
LOGICAL REASONING-
4 men are on the side of a bridge.One torch light is with them and without it they cannot cross 
the bridge.The bridge can withstand only 2 people at a time.The time required by the persons are 1 
min,2 mins,7 mins,10 mins respectively.Find the shortest time required by all of em to cross the
bridge.
(Answer: 17 minutes)

Round: SOFT SKILLS
Experience: scenario based questions were asked:-
1.working on a project in your company and your brother is in urgent need of a project.What will you do?
2.Your friend mails the project details to some other company.what will be you reaction?
3.Your boss allows to take your team members for a treat.Whether you choose costly one or within budget?
4.Your favorite subject in your curriculum and Why?
5.Where you would view yourself in 5 years?
6.What is a dream company in your terms?
7.Any situation were your work was criticized and what was your reaction?

Skills:
College Name: Anna University Chennai
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 - Technical 

(2 Questions)

  • Q1. What is a pointer to pointer
  • Ans. 

    A pointer to pointer is a variable that stores the memory address of another pointer variable.

    • It is used to create dynamic data structures like linked lists and trees.

    • It allows multiple levels of indirection.

    • It is denoted by ** in C and C++.

    • Example: int **ptr;

    • Example: ptr = &p; where p is a pointer variable.

  • Answered by AI
  • Q2. Class, object, inheritance, polymorphism,dbms

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on pointers,work on ds, study network analysis, learn more about the job and company

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Python file handling, input,output, in a file, Sql joins, list sort in python, basics of GIS, Web service how to test

Interview Preparation Tips

Interview preparation tips for other job seekers - This is hust basics not deep dive, strog ur basics to crack
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Python question was there and it was average level not tough

Round 2 - Coding Test 

Simple coding questions which was good to go

Round 3 - Technical 

(1 Question)

  • Q1. General ops concepts
Round 4 - Technical 

(1 Question)

  • Q1. Coding with technical questions
Round 5 - HR 

(1 Question)

  • Q1. General questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Prepare DSA and one language well.

Round 2 - Aptitude Test 

General aptitude and logic questions.

Round 3 - HR 

(2 Questions)

  • Q1. What is your long term goal in field of AI/ML?
  • Ans. 

    My long term goal in the field of AI/ML is to develop innovative solutions that can positively impact society and improve people's lives.

    • Continuously learning and staying updated with the latest advancements in AI/ML technologies

    • Collaborating with experts in the field to work on cutting-edge projects

    • Applying AI/ML techniques to solve complex real-world problems

    • Contributing to research and publications in the field of A

  • Answered by AI
  • Q2. Tell me about your previous experiences in this field?

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
-

I applied via Walk-in and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude is fully based upon technical mcqs, code snippets. Only one or two aptitudes are from general topics.
Negative marking is also there for certain questions.

Round 2 - Coding Test 

Coding was Little bit tough. You will be given 3 qns.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep practicing the coding in certain specific language!
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How to rotate a matrix?
  • Ans. 

    To rotate a matrix, transpose it and then reverse each row or column depending on the direction of rotation.

    • Transpose the matrix by swapping elements across the diagonal

    • For clockwise rotation, reverse each row of the transposed matrix

    • For anti-clockwise rotation, reverse each column of the transposed matrix

  • Answered by AI
  • Q2. How to find a particular element in a sorted array?
  • Ans. 

    Use binary search to efficiently find a particular element in a sorted array.

    • Start by comparing the target element with the middle element of the array.

    • If the target element is less than the middle element, search the left half of the array.

    • If the target element is greater than the middle element, search the right half of the array.

    • Repeat the process until the target element is found or the search space is empty.

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

In apti test,there where 31 que some que carries negative marks , marks will be alloted accoring to that que .

Round 2 - Coding Test 

I consist of 3 que if you clear one que you will be shortlisted

Round 3 - Technical 

(1 Question)

  • Q1. Difference between c and c++?
  • Ans. 

    C is a procedural programming language while C++ is an object-oriented programming language.

    • C is a procedural programming language, while C++ is a combination of procedural and object-oriented programming.

    • C does not support classes and objects, while C++ does.

    • C is a subset of C++, meaning C++ includes all of C's features and more.

    • C++ has features like function overloading, templates, and exception handling which are no...

  • Answered by AI

Skills evaluated in this interview

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 Jul 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Level of difficulty - Hard and very strong understanding in python required to clear this round.

Round 2 - Coding Test 

Basically it consists of three questions - easy and 2 medium level questions. DSA concepts is required to clear this round.

Cyware Interview FAQs

How many rounds are there in Cyware Software Engineer interview?
Cyware interview process usually has 1 rounds. The most common rounds in the Cyware interview process are Technical.
How to prepare for Cyware Software Engineer 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 Debugging, Digital Electronics, Front End, HP Data Protector and MVC Architecture.

Tell us how to improve this page.

Cyware Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Cyware Software Engineer Salary
based on 20 salaries
₹10 L/yr - ₹32 L/yr
121% more than the average Software Engineer Salary in India
View more details

Cyware Software Engineer Reviews and Ratings

based on 3 reviews

2.8/5

Rating in categories

2.8

Skill development

1.9

Work-life balance

3.3

Salary

2.0

Job security

2.9

Company culture

3.1

Promotions

2.9

Work satisfaction

Explore 3 Reviews and Ratings
Software Engineer
20 salaries
unlock blur

₹10 L/yr - ₹32 L/yr

Senior Software Engineer
12 salaries
unlock blur

₹13.9 L/yr - ₹40 L/yr

Solution Architect
9 salaries
unlock blur

₹24 L/yr - ₹32 L/yr

Principal Software Engineer
7 salaries
unlock blur

₹34 L/yr - ₹46 L/yr

Senior Product Manager
7 salaries
unlock blur

₹35 L/yr - ₹38.5 L/yr

Explore more salaries
Compare Cyware with

HyScaler

4.5
Compare

Pitney Bowes

3.8
Compare

AvenData GmbH

3.0
Compare

Dataflow Group

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