Faster and better experience!
i
Cyanous Software
Filter interviews by
Be the first one to contribute and help others!
posted on 28 Nov 2024
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...
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
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.
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
I applied via Approached by Company and was interviewed in Oct 2024. There were 2 interview rounds.
posted on 21 Oct 2024
I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 3 interview rounds.
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...
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
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
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
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
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.
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...
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
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
posted on 9 Dec 2024
I applied via Approached by Company and was interviewed in Nov 2024. There were 2 interview rounds.
I applied via Referral and was interviewed in Jun 2024. There were 3 interview rounds.
Online test for aptitude and technical questions which is quite easy you need above 12 marks i guess , only then you will be considered for technical interview
Object-oriented programming concepts that focus on classes, objects, inheritance, encapsulation, and polymorphism.
Classes: Blueprint for creating objects with attributes and methods.
Objects: Instances of classes that contain data and behavior.
Inheritance: Ability for a class to inherit attributes and methods from another class.
Encapsulation: Bundling data and methods that operate on the data into a single unit.
Polymorp...
Print numbers in pyramid shape patterns using SQL code.
Use a loop to iterate through rows and columns to print the numbers in pyramid shape.
Increment the numbers in each row to create the pyramid effect.
Consider the spacing and alignment to create a visually appealing pyramid pattern.
Code to sort array without sort function
Iterate through the array and compare each element with the rest to find the smallest element
Swap the smallest element with the first element in the unsorted portion of the array
Repeat the process for the remaining unsorted portion of the array until fully sorted
List is a collection of objects, string array is an array of strings, etc. Each has its own characteristics and uses.
List: dynamic collection of objects, can grow/shrink in size. Example: List
String array: fixed-size array containing strings. Example: String[] names = new String[3];
Array: fixed-size collection of elements of the same type. Example: int[] scores = new int[5];
SQL join types allow combining data from multiple tables based on a specified condition.
Inner Join: Returns rows that have matching values in both tables.
Left Join: Returns all rows from the left table and the matched rows from the right table.
Right Join: Returns all rows from the right table and the matched rows from the left table.
Full Outer Join: Returns all rows when there is a match in either left or right table.
S...
Key types in SQL include primary keys, foreign keys, unique keys, and composite keys.
Primary key: uniquely identifies each record in a table.
Foreign key: establishes a relationship between two tables.
Unique key: ensures that all values in a column are unique.
Composite key: combination of multiple columns to uniquely identify a record.
Use SQL JOIN to combine two tables and display information.
Use the JOIN keyword to combine tables based on a related column
Specify the columns you want to display in the SELECT statement
Use ON clause to specify the column used for joining the tables
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
I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.
I applied via Referral and was interviewed in Jul 2024. There were 3 interview rounds.
Key documents in SDLC include BRD, FRD, SRS, test cases, user manuals, and project plan.
Business Requirements Document (BRD) outlines the business problem and proposed solution
Functional Requirements Document (FRD) details the functional specifications of the system
Software Requirements Specification (SRS) defines the software requirements for the project
Test cases document outlines the test scenarios and expected resu...
To create a go-to-market strategy for an app in Dubai, analyze the local market, competition, cultural differences, and adjust marketing tactics accordingly.
Conduct market research in Dubai to understand the target audience, competition, and market trends.
Adapt the app to cater to the preferences and needs of the Dubai market.
Localize the app content, language, and features to resonate with the Dubai audience.
Identify ...
I would suggest using a user-friendly design, implementing SEO strategies, and utilizing social media for marketing.
Focus on user-friendly design to enhance user experience
Implement SEO strategies to improve search engine visibility
Utilize social media for marketing and promotion
Consider implementing an online store for direct sales
Collect customer data for targeted marketing campaigns
I approach product discovery by conducting market research, gathering user feedback, analyzing data, and collaborating with cross-functional teams.
Conduct market research to understand industry trends and competitors
Gather user feedback through surveys, interviews, and usability testing
Analyze data from user interactions, A/B testing, and product metrics
Collaborate with cross-functional teams including designers, devel...
Key aspects of product discovery involve understanding user needs, market research, prototyping, and testing.
Conduct user research to understand the needs and preferences of social media app users.
Analyze market trends and competitor offerings to identify gaps and opportunities.
Create prototypes to visualize the app's features and gather feedback from stakeholders.
Test the prototypes with target users to validate assum...
based on 16 reviews
Rating in categories
4-6 Yrs
₹ 12-18 LPA
5-6 Yrs
₹ 15-18 LPA
7-10 Yrs
₹ 20-22 LPA
Web Developer
7
salaries
| ₹0.9 L/yr - ₹5.5 L/yr |
Software Developer
5
salaries
| ₹2 L/yr - ₹4 L/yr |
Business Development Manager
5
salaries
| ₹2.4 L/yr - ₹5 L/yr |
Information Technology Recruiter
4
salaries
| ₹3 L/yr - ₹4 L/yr |
Data Analyst
3
salaries
| ₹3.6 L/yr - ₹4.8 L/yr |
Azure Power
TCS
Infosys
Hindustan Unilever