i
TO THE
NEW
Filter interviews by
Detects if a linked list has a cycle using Floyd's Tortoise and Hare algorithm.
Use two pointers: slow and fast. Slow moves one step, fast moves two steps.
If there's a loop, slow and fast will eventually meet.
If fast reaches the end (null), the list has no loop.
Example: For a list 1 -> 2 -> 3 -> 4 -> 2 (cycle), slow and fast meet at 2.
This code snippet counts the frequency of each character in a string using a hash map (dictionary in Python).
Use a hash map (dictionary) to store character counts.
Iterate through each character in the string.
For each character, increment its count in the hash map.
Example: For the string 'hello', the output will be {'h': 1, 'e': 1, 'l': 2, 'o': 1}.
Understanding string pool in Java helps manage memory efficiently and optimize string operations.
String literals are stored in the string pool, which is a special memory area.
When a string is created using a literal, it checks the pool first to see if it exists.
Example: String s1 = "Hello"; String s2 = "Hello"; // s1 and s2 point to the same object in the pool.
Using 'new' keyword creates a new string object in hea...
Exception handling is crucial for managing errors in software applications, ensuring stability and user experience.
Use try-catch blocks to handle exceptions gracefully. Example: try { riskyCode(); } catch (Exception e) { handleError(e); }
Always log exceptions for debugging purposes. Example: logger.error('Error occurred', e);
Avoid using generic exceptions; catch specific exceptions to handle different error types ...
Using Java 8 Stream, find and print the name of the student with the second highest marks.
Sort the students based on marks in descending order
Skip the first student (highest marks) and find the second student
Print the name of the second student
Hash map is a data structure that stores key-value pairs and allows for efficient retrieval of values based on keys.
Hash map uses a hash function to map keys to indices in an array.
Collision handling is important in hash maps to deal with multiple keys hashing to the same index.
Common operations on hash maps include insertion, deletion, and lookup.
Example: HashMap<String, Integer> map = new HashMap<>()...
An IIFE (Immediately Invoked Function Expression) is a JavaScript function that runs as soon as it is defined.
IIFE is defined using function syntax followed by parentheses: (function() { /* code */ })();
It creates a new scope, preventing variable collisions in the global scope.
Commonly used for module patterns and encapsulating code.
Example: (function() { var x = 10; console.log(x); })(); // Outputs 10
IIFEs can al...
The four pillars of Object-Oriented Programming (OOP) are Abstraction, Encapsulation, Inheritance, and Polymorphism.
Abstraction: Hides complex implementation details and only shows the necessary features to the outside world.
Encapsulation: Bundles data and methods that operate on the data into a single unit, preventing direct access to data from outside the class.
Inheritance: Allows a new class to inherit properti...
Troubleshooting in OTT involves identifying and resolving issues related to streaming services.
Check internet connection and speed
Verify account credentials and subscription status
Clear cache and cookies
Update app or software
Restart device
Contact customer support for further assistance
DDL stands for Data Definition Language and is used to define the structure of database objects. DML stands for Data Manipulation Language and is used to manipulate data within the database.
DDL is used to create, modify, and delete database objects such as tables, indexes, and views
DML is used to insert, update, delete, and retrieve data from the database
Examples of DDL statements include CREATE TABLE, ALTER TABLE...
I appeared for an interview in Feb 2025.
General awareness, half hour
Line sketch, half n hour.
I appeared for an interview in Jan 2025, where I was asked the following questions.
I streamline my tasks through effective organization, prioritization, and leveraging technology to enhance productivity in a fast-paced environment.
Utilize project management tools like Trello or Asana to track tasks and deadlines, ensuring nothing falls through the cracks.
Implement a daily prioritization routine, identifying the top three tasks that align with organizational goals to focus on each day.
Automate repetit...
In five years, I envision myself as a skilled admin executive, leading projects and enhancing team efficiency through innovative solutions.
I aim to take on leadership roles, guiding junior staff and fostering a collaborative environment.
I plan to enhance my skills in project management, possibly obtaining certifications like PMP.
I want to implement new technologies to streamline administrative processes, improving over...
I appeared for an interview in Sep 2024.
This code snippet counts the frequency of each character in a string using a hash map (dictionary in Python).
Use a hash map (dictionary) to store character counts.
Iterate through each character in the string.
For each character, increment its count in the hash map.
Example: For the string 'hello', the output will be {'h': 1, 'e': 1, 'l': 2, 'o': 1}.
Exception handling is crucial for managing errors in software applications, ensuring stability and user experience.
Use try-catch blocks to handle exceptions gracefully. Example: try { riskyCode(); } catch (Exception e) { handleError(e); }
Always log exceptions for debugging purposes. Example: logger.error('Error occurred', e);
Avoid using generic exceptions; catch specific exceptions to handle different error types appro...
Understanding string pool in Java helps manage memory efficiently and optimize string operations.
String literals are stored in the string pool, which is a special memory area.
When a string is created using a literal, it checks the pool first to see if it exists.
Example: String s1 = "Hello"; String s2 = "Hello"; // s1 and s2 point to the same object in the pool.
Using 'new' keyword creates a new string object in heap mem...
Spring Boot simplifies Spring application development, while microservices enhance scalability and maintainability.
Spring Boot offers auto-configuration, reducing boilerplate code. Example: Setting up a REST API with minimal configuration.
Microservices architecture allows independent deployment of services, enhancing scalability. Example: A user service and an order service can be deployed separately.
Spring provides a ...
Hibernate mapping uses annotations to define entity relationships and transient fields that should not be persisted in the database.
@Entity: Marks a class as a Hibernate entity, representing a table in the database.
@Table: Specifies the table name if it differs from the entity name, e.g., @Table(name = "users").
@Id: Defines the primary key of the entity, e.g., @Id @GeneratedValue(strategy = GenerationType.IDENTITY) for...
Detects if a linked list has a cycle using Floyd's Tortoise and Hare algorithm.
Use two pointers: slow and fast. Slow moves one step, fast moves two steps.
If there's a loop, slow and fast will eventually meet.
If fast reaches the end (null), the list has no loop.
Example: For a list 1 -> 2 -> 3 -> 4 -> 2 (cycle), slow and fast meet at 2.
Yes, I have obtained the AWS Certified DevOps Engineer - Professional certification.
Obtained AWS Certified DevOps Engineer - Professional certification
Certification validates expertise in implementing and managing continuous delivery systems on AWS
Demonstrates ability to automate security controls, governance processes, and compliance validation
I applied via LinkedIn and was interviewed in Dec 2024. There were 4 interview rounds.
QUANT, MATHS, HTML, CSS
DSA WAS ASKED TOGETHER WITH SOME CORE SUBJECT QUESTIONS.
DSA WAS ASKED TOGETHER WITH SOME PUZZLES.
I applied via Walk-in and was interviewed in Oct 2024. There were 3 interview rounds.
Verbal,maths and english
Arrays ,strings and hashmap
I applied via Naukri.com and was interviewed in Sep 2024. There were 3 interview rounds.
I am a data research analyst with a strong background in statistical analysis and data visualization.
Experienced in collecting, analyzing, and interpreting complex data sets
Proficient in statistical software such as R, Python, and SQL
Skilled in creating data visualizations to communicate insights effectively
I applied via Referral and was interviewed in Nov 2024. There was 1 interview round.
Easy and able to clear it, conducted virtually.
Troubleshooting in OTT involves identifying and resolving issues related to streaming services.
Check internet connection and speed
Verify account credentials and subscription status
Clear cache and cookies
Update app or software
Restart device
Contact customer support for further assistance
I use Netflix and Hulu. The main problem I face is occasional buffering issues.
I use Netflix for a wide variety of movies and TV shows.
I use Hulu for current episodes of TV shows.
Occasional buffering issues can disrupt the viewing experience.
I applied via Approached by Company and was interviewed in Oct 2024. There were 2 interview rounds.
Top trending discussions
The duration of TO THE NEW interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 131 interview experiences
Difficulty level
Duration
based on 659 reviews
Rating in categories
4-8 Yrs
Not Disclosed
4-10 Yrs
Not Disclosed
Senior Software Engineer
684
salaries
| ₹13.1 L/yr - ₹24 L/yr |
Software Engineer
597
salaries
| ₹4.9 L/yr - ₹12.1 L/yr |
Associate Technical Leader
236
salaries
| ₹22 L/yr - ₹36 L/yr |
Technical Lead
170
salaries
| ₹28 L/yr - ₹45 L/yr |
Senior Quality Engineer
168
salaries
| ₹12.3 L/yr - ₹22.5 L/yr |
ITC Infotech
CMS IT Services
KocharTech
Xoriant