Filter interviews by
I applied via Naukri.com and was interviewed in Dec 2024. There were 4 interview rounds.
Basic JavaScript output-based questions were presented in the form of multiple-choice questions (MCQs).
Custom directives in Angular allow you to create reusable components with custom behavior.
Custom directives are used to extend the functionality of HTML elements in Angular.
They can be used to create reusable components with custom behavior.
Directives are markers on a DOM element that tell Angular to attach a specified behavior to that DOM element or even transform the DOM element and its children.
Examples include crea...
Pipes in Angular are used for transforming data in templates.
Pipes are used to format data before displaying it in the view.
They can be used to filter, sort, or transform data in various ways.
Examples include currency, date, uppercase, and lowercase pipes.
An interceptor in Angular is a service that can be used to intercept and modify HTTP requests and responses.
Interceptors can be used to add headers, modify requests, handle errors, etc.
They are implemented as classes that implement the HttpInterceptor interface.
Interceptors are added to the HttpClientModule providers array in the app module.
Example: LoggingInterceptor implements HttpInterceptor to log all HTTP requests
Yes, I am familiar with writing unit test cases to ensure code quality and functionality.
I have experience writing unit test cases using testing frameworks like JUnit, NUnit, or pytest.
I understand the importance of writing testable code and creating comprehensive test suites.
I can write test cases to cover different scenarios, including edge cases and boundary conditions.
I know how to use mocking frameworks like Mocki...
I have used Redux for state management in my previous projects.
Redux is a predictable state container for JavaScript apps.
It helps in managing the state of the application in a single immutable state tree.
Actions are dispatched to update the state and components can subscribe to changes.
Selectors can be used to efficiently extract data from the state tree.
Middleware can be added to handle asynchronous actions.
Example:
My expected salary is based on my experience, skills, and the market rate for Software Development Engineers.
Research the average salary for Software Development Engineers in the specific location and industry
Consider your years of experience and level of expertise
Factor in any additional benefits or perks offered by the company
Be prepared to negotiate based on the job responsibilities and requirements
I can join within 2 weeks of receiving the offer letter.
I can start within 2 weeks of receiving the offer letter.
I need to give notice at my current job before starting.
I may need to relocate, which could affect my start date.
I applied via Campus Placement and was interviewed in Sep 2024. There were 5 interview rounds.
Easy apti questions, verbal, simple maths , technical questions
Oops concepts in Java are fundamental concepts of object-oriented programming like inheritance, polymorphism, encapsulation, and abstraction.
Inheritance: Allows a class to inherit properties and behavior from another class.
Polymorphism: Allows objects to be treated as instances of their parent class.
Encapsulation: Bundling data and methods that operate on the data into a single unit.
Abstraction: Hiding the implementati...
Spring Boot is a framework for building Java-based enterprise applications quickly and with minimal configuration.
Spring Boot simplifies the process of creating stand-alone, production-grade Spring-based applications.
It provides a range of features including embedded servers, auto-configuration, and production-ready metrics.
Spring Boot allows developers to focus on writing business logic rather than configuring the app...
Abstraction in Java is a concept where we hide the implementation details and only show the necessary features of an object.
Abstraction allows us to focus on what an object does rather than how it does it.
In Java, abstraction is achieved through abstract classes and interfaces.
Abstract classes cannot be instantiated and can have abstract methods that must be implemented by subclasses.
Interfaces in Java are like abstrac...
Interface in Java is a reference type in Java, similar to a class, that can contain only constants, method signatures, default methods, static methods, and nested types.
Interfaces are used to achieve abstraction and multiple inheritance in Java.
All methods in an interface are public and abstract by default.
A class can implement multiple interfaces but can only extend one class.
Example: interface MyInterface { void myMe...
I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.
We can easily pass the test cases
Interface in Java is a reference type, similar to a class, that can contain only constants, method signatures, default methods, static methods, and nested types.
Interfaces are used to define a contract for classes that implement them.
Classes can implement multiple interfaces in Java.
Interfaces cannot have instance fields, constructors, or non-static methods.
Example: interface Shape { void draw(); }
Example: class Circle...
Abstraction is a concept in object-oriented programming where only relevant data is shown to the user while hiding unnecessary details.
Abstraction helps in simplifying complex systems by only showing essential features.
It allows for creating abstract classes and interfaces in Java.
Example: In a car, the driver only needs to know how to drive it without understanding the internal workings of the engine.
Exceptions are unexpected events that disrupt the normal flow of a program. Exception handling is the process of dealing with these events.
Exceptions are objects that represent an abnormal condition or error in a program.
Exception handling allows developers to gracefully handle errors and prevent the program from crashing.
Java provides try-catch blocks for handling exceptions. The try block contains the code that may t...
Arrays are a collection of elements of the same data type, while Strings are a sequence of characters.
Arrays can store multiple values of the same data type, accessed by index.
Strings are immutable sequences of characters, can be manipulated using various methods.
Example: int[] numbers = {1, 2, 3}; String name = "John";
I applied via Campus Placement and was interviewed in Sep 2024. There was 1 interview round.
Data refers to facts, statistics, or information collected for analysis or reference.
Data is raw, unprocessed information.
It can be in the form of numbers, text, images, or any other format.
Examples include customer names, product prices, and sales figures.
Data can be structured (organized in a specific way) or unstructured (not organized).
Preprocessed data is data that has been cleaned, transformed, and organized for analysis or modeling.
Preprocessed data is often used in machine learning and data analysis to improve the accuracy and efficiency of models.
Common preprocessing steps include removing missing values, scaling features, and encoding categorical variables.
Examples of preprocessing techniques include normalization, standardization, one-hot enco
Info refers to data or knowledge that provides details or context about a specific topic or subject.
Info can be in the form of facts, statistics, or explanations.
It helps to understand a topic better or make informed decisions.
Examples of info include news articles, research papers, and educational resources.
Use SQL INSERT INTO SELECT statement to copy data from 2 tables and paste into a 3rd table.
Use INSERT INTO SELECT statement to copy data from 2 tables and paste into a 3rd table.
Specify the columns you want to copy from each table in the SELECT statement.
Make sure the columns in the SELECT statement match the columns in the 3rd table where you are pasting the data.
Reverse a string using any programming language
Use built-in functions like reverse() or slice() in languages like Python or JavaScript
Iterate through the string in reverse order and append each character to a new string
Use a stack data structure to push each character onto the stack and then pop them off to reverse the string
Reserve Bank Information Technology interview questions for popular designations
I applied via Walk-in and was interviewed in Oct 2024. There were 3 interview rounds.
Easy test they have scheduled virtual drive
My favorite hobby is playing the guitar.
I have been playing the guitar for 5 years.
I enjoy learning new songs and techniques.
Playing the guitar helps me relax and unwind after a long day.
I have performed at a few local events and open mic nights.
Get interview-ready with Top Reserve Bank Information Technology Interview Questions
It consist of mcq's and 2 programs
Stream API in Java provides a way to process collections of objects in a functional style.
Stream API allows for easy manipulation of collections using functional programming concepts like map, filter, and reduce.
It supports lazy evaluation, allowing for efficient processing of large datasets.
Example: stream.filter(x -> x > 5).map(x -> x * 2).forEach(System.out::println)
Designed a microservices architecture using Docker and Kubernetes for a real-time analytics platform
Utilized Docker containers to encapsulate each microservice
Implemented Kubernetes for container orchestration and scaling
Used Kafka for real-time data streaming between microservices
I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.
The codinds questions were too easy.
I applied via Recruitment Consulltant and was interviewed in Apr 2024. There were 2 interview rounds.
Project management, spring and java related total 20 questions to be completed in 30 minutes.
I was not aware of such interview process and environment during test examination was not peaceful.
Spring IOC (Inversion of Control) is a design pattern where the control of object creation and lifecycle is shifted from the application code to the Spring framework.
In Spring IOC, objects are created and managed by the Spring container.
It helps in achieving loose coupling between classes by removing the dependency on object creation.
Dependency Injection is a key concept in Spring IOC, where the dependencies of a class...
I applied via Walk-in and was interviewed in Jun 2024. There were 2 interview rounds.
18 non technical MCQ question with Aptitude, English
A palindrome is a word, phrase, number, or other sequence of characters that reads the same forward and backward.
Create a function to check if a given string is a palindrome.
Remove all non-alphanumeric characters and convert the string to lowercase before checking.
Compare characters from both ends of the string to determine if it is a palindrome.
Instance of keyword is used to compare an object to a specified class type.
Instance of keyword returns true if the object is an instance of the specified class.
It can be used to check if an object is of a specific class type before casting.
Example: if(obj instanceof String) { // do something }
Observables and promises are both used for handling asynchronous operations in JavaScript.
Observables are used for handling multiple values over time, while promises are used for handling a single value at a time.
Observables can be cancelled, while promises cannot be cancelled.
Promises have a built-in mechanism for error handling using the catch method, while observables use the error callback function.
Observables are ...
Write a code for unique array
Top trending discussions
Interview experience
based on 126 reviews
Rating in categories
Business Analyst
58
salaries
| ₹6 L/yr - ₹18 L/yr |
Project Manager
42
salaries
| ₹13 L/yr - ₹30.8 L/yr |
Technology Analyst
37
salaries
| ₹5 L/yr - ₹17.3 L/yr |
Senior Business Analyst
29
salaries
| ₹9 L/yr - ₹20 L/yr |
Senior Manager
28
salaries
| ₹22.1 L/yr - ₹40 L/yr |
National Payments Corporation of India
TCS
Infosys
Wipro