i
TO THE
NEW
Filter interviews by
A show cause notice is a formal document requesting an explanation for an action or behavior.
1. Title: Clearly state 'Show Cause Notice' at the top.
2. Date: Include the date of issuance.
3. Recipient Details: Mention the name and designation of the employee.
4. Subject: Briefly state the reason for the notice, e.g., 'Regarding Misconduct'.
5. Details of Allegation: Provide a clear description of the issue, e.g., 'Fai...
An absconding employee is one who leaves without notice, creating challenges for HR in managing the situation.
Identify the employee's last known whereabouts and reasons for absence.
Attempt to contact the employee through phone or email to understand their situation.
Review company policies regarding absconding and potential disciplinary actions.
Document all communications and actions taken regarding the absconding ...
Callbacks are functions passed as arguments to other functions, enabling asynchronous programming and event handling.
Callbacks allow functions to be executed after a certain task is completed, e.g., fetching data from an API.
Example: In JavaScript, you can pass a function to handle the response of an asynchronous operation: fetch(url).then(response => callback(response)).
They help manage asynchronous code, maki...
A closure is a function that retains access to its lexical scope, even when executed outside that scope.
Closures allow a function to remember the environment in which it was created.
Example: function outer() { let x = 10; return function inner() { return x; }; } const getX = outer(); getX(); // returns 10
Closures are often used for data encapsulation and creating private variables.
They can help in maintaining stat...
Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their containing scope during compilation.
In JavaScript, variable declarations (using var) are hoisted to the top of their scope.
Function declarations are also hoisted, allowing them to be called before their definition.
Example: console.log(x); var x = 5; // Outputs 'undefined' because x is hoisted but not initiali...
Fail fast is a development philosophy that encourages quick identification and resolution of issues to improve efficiency and innovation.
Encourages rapid prototyping to test ideas quickly, e.g., using MVP (Minimum Viable Product) in startups.
Promotes early detection of bugs in software development, e.g., using automated testing to catch errors during coding.
Supports iterative development, allowing teams to pivot b...
Count the number of subarrays with non-repeating digits in a given array to find unique combinations.
Sliding Window Technique: Use two pointers to create a window that expands and contracts to maintain non-repeating digits.
HashSet for Uniqueness: Utilize a HashSet to track digits in the current window, ensuring all digits are unique.
Count Valid Subarrays: For each valid window, count the number of subarrays that c...
Transform an array by replacing each element with the average of its neighbors, resulting in a shorter array.
Array Length Reduction: The new array will have one less element than the original array.
Neighbor Replacement: Each element at index i in the new array is calculated as (array[i-1] + array[i+1]) / 2.
Example: For an input array [1, 2, 3, 4], the output will be [(1+3)/2, (2+4)/2] = [2, 3].
Edge Cases: The firs...
To grow Swiggy, focus on expanding services, enhancing user experience, and leveraging partnerships for broader reach.
Expand delivery options: Introduce grocery and essentials delivery to tap into daily needs, similar to how Swiggy Genie operates.
Enhance user experience: Implement AI-driven personalized recommendations based on user preferences and order history.
Loyalty programs: Develop a rewards system to encour...
I am excited to join this company for its innovative projects, collaborative culture, and opportunities for professional growth.
The company's commitment to cutting-edge technology aligns with my passion for continuous learning.
I admire the collaborative environment that fosters teamwork and creativity, as seen in your recent project on XYZ.
The opportunity for professional development through mentorship programs is...
I appeared for an interview in Jun 2025, where I was asked the following questions.
I am seeking new challenges and opportunities for growth that align with my career goals and aspirations in HR management.
Desire for professional growth: I felt that I had reached a plateau in my previous role and wanted to take on more responsibilities.
Alignment with career goals: I am looking for a position that better aligns with my long-term career aspirations in HR management.
Company culture: I am seeking a work e...
A show cause notice is a formal document requesting an explanation for an action or behavior.
1. Title: Clearly state 'Show Cause Notice' at the top.
2. Date: Include the date of issuance.
3. Recipient Details: Mention the name and designation of the employee.
4. Subject: Briefly state the reason for the notice, e.g., 'Regarding Misconduct'.
5. Details of Allegation: Provide a clear description of the issue, e.g., 'Failure ...
An absconding employee is one who leaves without notice, creating challenges for HR in managing the situation.
Identify the employee's last known whereabouts and reasons for absence.
Attempt to contact the employee through phone or email to understand their situation.
Review company policies regarding absconding and potential disciplinary actions.
Document all communications and actions taken regarding the absconding case.
...
I expect growth, collaboration, and the opportunity to contribute to a positive workplace culture in this HR role.
Professional Growth: I hope to enhance my HR skills through training and mentorship, similar to how I improved my recruitment strategies in my last role.
Team Collaboration: I look forward to working closely with cross-functional teams to foster a cohesive work environment, as I did in my previous job.
Positi...
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.
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 132 interview experiences
Difficulty level
Duration
based on 663 reviews
Rating in categories
Senior Software Engineer
688
salaries
| ₹13.1 L/yr - ₹24 L/yr |
Software Engineer
601
salaries
| ₹4.9 L/yr - ₹12.2 L/yr |
Associate Technical Leader
239
salaries
| ₹21.6 L/yr - ₹36 L/yr |
Technical Lead
170
salaries
| ₹28 L/yr - ₹45 L/yr |
Senior Quality Engineer
169
salaries
| ₹12 L/yr - ₹21 L/yr |
ITC Infotech
CMS IT Services
KocharTech
Xoriant