Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Cyanous Software Team. If you also belong to the team, you can get access from here

Cyanous Software Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Cyanous Software Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - Technical 

(1 Question)

  • Q1. All questions related to Process and Tool level and Analysis.
Round 2 - Technical 

(1 Question)

  • Q1. Performance testing questions
Round 3 - Client Interview 

(1 Question)

  • Q1. Loadrunner questions
Round 4 - Technical 

(1 Question)

  • Q1. Process and Tool level questions
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There were 5 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Pre HR screening
Round 2 - Technical 

(2 Questions)

  • Q1. Dot Net question with Mr Hemanth and Mr Amol
  • Q2. Project related questions
Round 3 - Technical 

(1 Question)

  • Q1. Basic java question
Round 4 - Behavioral 

(1 Question)

  • Q1. Puzzle solve and coding question
Round 5 - HR 

(1 Question)

  • Q1. Salary discussion and benefits and perks
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(6 Questions)

  • Q1. Tell me about youtself?
  • Q2. What do you know about TDS?
  • Q3. Situation AP based journal entries
  • Q4. What is GST on reverse charge?
  • Q5. What are the documents required to initiate a foreign remittance?
  • Q6. More situational based AP journal entries.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
No response
Round 1 - Technical 

(2 Questions)

  • Q1. What is difference between rank and dense rank?
  • Q2. What is RLS in Power Bi?
Round 2 - Behavioral 

(1 Question)

  • Q1. How would you identify time for any project?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Internal working of hashmap
  • Ans. 

    HashMap is a data structure that stores key-value pairs and uses hashing to efficiently retrieve values based on keys.

    • HashMap internally uses an array of linked lists to store key-value pairs.

    • When a key-value pair is added, the key is hashed to determine the index in the array where it will be stored.

    • If multiple keys hash to the same index, a linked list is used to handle collisions.

    • To retrieve a value, the key is hash...

  • Answered by AI
  • Q2. Find Anagram from string array
  • Ans. 

    Find anagrams from a string array

    • Iterate through each string in the array

    • Sort the characters of each string to create a key for comparison

    • Use a hashmap to group anagrams together

    • Return the grouped anagrams as arrays

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

(2 Questions)

  • Q1. Top view of binary Tree
  • Ans. 

    A top view of a binary tree shows the nodes visible when looking at the tree from the top.

    • The top view of a binary tree is the set of nodes visible when looking at the tree from the top.

    • Nodes at the same horizontal distance from the root are considered at the same level.

    • Use a map to store the horizontal distance of each node and only keep the first node encountered at each horizontal distance.

  • Answered by AI
  • Q2. Java based questions
Round 3 - One-on-one 

(2 Questions)

  • Q1. Hight of binary tree
  • Ans. 

    Height of a binary tree is the maximum number of edges on the longest path from the root node to a leaf node.

    • Height of an empty tree is -1

    • Height of a tree with only one node is 0

    • Height of a binary tree can be calculated recursively by finding the height of left and right subtrees and adding 1 to the maximum of the two heights

  • Answered by AI
  • Q2. Garbage Collector
Round 4 - One-on-one 

(1 Question)

  • Q1. Library Management System

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. DSA Array, String and Hashmap questions
  • Q2. Functional programming java questions
Round 2 - Technical 

(5 Questions)

  • Q1. Spring and spring boot related
  • Q2. HLD scenario level questions
  • Q3. SQL queries nested and joins
  • Q4. DB related questions and experience level questions and previous project situations related questions
  • Q5. Security level questions like XSS vulnerability and SQL injection
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Atm TXT flow and migration
  • Q2. New ATM configuration user access
  • Q3. New project implementation
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Exception hierarchy
  • Q2. Factory vs abstract factory design patterns
  • Ans. 

    Factory pattern creates objects without exposing the instantiation logic, while Abstract Factory pattern provides an interface for creating families of related objects.

    • Factory pattern is a creational design pattern that provides a way to create objects without specifying the exact class of object that will be created.

    • Abstract Factory pattern is a creational design pattern that provides an interface for creating familie...

  • Answered by AI
  • Q3. Design a systems for large millions of users
  • Ans. 

    Design a scalable system for millions of users

    • Use microservices architecture to break down the system into smaller, independent services

    • Implement load balancing to distribute traffic evenly across servers

    • Utilize caching mechanisms to reduce database load and improve performance

    • Use horizontal scaling by adding more servers to handle increased traffic

    • Implement monitoring and alerting systems to track system performance a

  • Answered by AI
Round 2 - Technical 

(5 Questions)

  • Q1. Kafka implemenation in spring boot
  • Ans. 

    Kafka implementation in Spring Boot allows for easy integration of Kafka messaging system in Java applications.

    • Use Spring Kafka to configure Kafka properties in Spring Boot application

    • Create Kafka producer and consumer beans to send and receive messages

    • Use @KafkaListener annotation to listen for messages on specific topics

  • Answered by AI
  • Q2. How Kafka delete messages
  • Ans. 

    Kafka deletes messages based on retention policies and compaction

    • Kafka deletes messages based on retention policies set at topic level

    • Messages can also be deleted through log compaction process

    • Retention policies can be based on time or size of messages

  • Answered by AI
  • Q3. Kafka configuration
  • Ans. 

    Kafka configuration involves setting up properties like broker, topic, partitions, replication factor, etc.

    • Configure Kafka broker properties in server.properties file

    • Create topics using kafka-topics.sh script

    • Set up partitions and replication factor for fault tolerance

    • Adjust consumer and producer configurations as needed

  • Answered by AI
  • Q4. Structured vs unstructured logs
  • Ans. 

    Structured logs have a predefined format for easy parsing, while unstructured logs do not.

    • Structured logs are easier to search, filter, and analyze compared to unstructured logs.

    • Unstructured logs can be harder to parse and may require more manual effort to extract useful information.

    • Examples of structured logs include JSON or CSV format, while unstructured logs may be plain text or free-form messages.

  • Answered by AI
  • Q5. How micro services communicate each others
  • Ans. 

    Microservices communicate through lightweight protocols like HTTP, messaging queues, and RPC.

    • Microservices can communicate over HTTP using RESTful APIs.

    • Message queues like RabbitMQ or Kafka can be used for asynchronous communication between microservices.

    • Remote Procedure Calls (RPC) can be used for synchronous communication between microservices.

    • Service discovery mechanisms like Eureka or Consul help microservices loca...

  • Answered by AI
Round 3 - HR 

(3 Questions)

  • Q1. Salary structure discussion
  • Q2. Why choice this company
  • Ans. 

    I chose this company because of its innovative projects, strong team culture, and opportunities for growth.

    • Innovative projects that challenge me to learn and grow

    • Strong team culture that fosters collaboration and support

    • Opportunities for career growth and advancement

  • Answered by AI
  • Q3. Why looking for new opportunities
  • Ans. 

    Seeking new challenges and growth opportunities in a dynamic environment.

    • Looking to expand skill set and knowledge in Java development

    • Interested in working on innovative projects and technologies

    • Seeking a more collaborative and supportive work culture

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Java springboot basic to intermediate question
  • Q2. Java stream questions
Round 2 - Technical 

(2 Questions)

  • Q1. Easy level DSA questions
  • Q2. Project based questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(4 Questions)

  • Q1. They asked first question related to Spring security .
  • Q2. Questions related to rest API Given scenario and asked approach
  • Q3. Database related like procedures call in db and also in springboot
  • Q4. Core java related to collections
Round 2 - Technical 

(5 Questions)

  • Q1. In second round , interviewer asked me to write logic for Array sort
  • Q2. Singleton class
  • Q3. Design pattern like singleton and factory , dao
  • Q4. Spring data JPA , jdbc connection
  • Q5. Hibernate annotation
Round 3 - Behavioral 

(3 Questions)

  • Q1. Related to projects what we had done
  • Q2. Difficult situations what u face
  • Ans. 

    Handling difficult situations by staying calm, analyzing the problem, and finding a solution.

    • Remaining calm under pressure

    • Identifying the root cause of the problem

    • Collaborating with team members to brainstorm solutions

    • Prioritizing tasks to address the issue efficiently

  • Answered by AI
  • Q3. Code standardization

Cyanous Software Interview FAQs

How to prepare for Cyanous Software 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 Cyanous Software. The most common topics and skills that interviewers at Cyanous Software expect are Javascript, C#, SQL, Java and Full Stack.

Tell us how to improve this page.

Cyanous Software Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Bharti Airtel Interview Questions
4.0
 • 839 Interviews
Titan Company Interview Questions
4.3
 • 148 Interviews
Azure Power Interview Questions
3.8
 • 20 Interviews
View all

Cyanous Software Reviews and Ratings

based on 17 reviews

3.1/5

Rating in categories

3.0

Skill development

2.9

Work-life balance

2.8

Salary

3.0

Job security

3.1

Company culture

2.9

Promotions

2.9

Work satisfaction

Explore 17 Reviews and Ratings
Web Developer
7 salaries
unlock blur

₹0.9 L/yr - ₹5.5 L/yr

Software Developer
5 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Business Development Manager
5 salaries
unlock blur

₹2.4 L/yr - ₹5 L/yr

Information Technology Recruiter
4 salaries
unlock blur

₹1.5 L/yr - ₹3.2 L/yr

Data Analyst
3 salaries
unlock blur

₹3.6 L/yr - ₹4.8 L/yr

Explore more salaries
Compare Cyanous Software with

Azure Power

3.8
Compare

TCS

3.7
Compare

Infosys

3.6
Compare

Hindustan Unilever

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