Filter interviews by
Partial view is a reusable view component in ASP.NET MVC which can be rendered within a view.
Partial views can be used to break down complex views into smaller, manageable components.
They can be rendered within other views using the @Html.Partial() method.
Partial views are useful for reusing code and improving maintainability of MVC applications.
Index in a database is a data structure that improves the speed of data retrieval operations.
Indexes are used to quickly locate data without having to search every row in a database table.
They are created on columns in a database table to speed up the query process.
Examples of indexes include primary keys, unique keys, and composite keys.
Hashing is a process of converting input data into a fixed-size string of bytes using a mathematical algorithm.
Hashing is used to securely store passwords by converting them into a hash value.
Hashing is used in data retrieval systems to quickly locate data based on its hash value.
Common hashing algorithms include MD5, SHA-1, and SHA-256.
Program to find occurrences of each element and sort array in increasing order.
Use a HashMap to store the count of each element in the array.
Sort the array based on the occurrences of each element.
Handle edge cases like empty array or null input.
Expected CTC and percentage
Expected CTC refers to the salary package that the candidate is looking for
Percentage refers to the academic percentage achieved by the candidate
The candidate can mention their expected CTC based on their experience and industry standards
The academic percentage can showcase the candidate's academic performance and potential
Object oriented programming is a programming paradigm that uses objects to represent and manipulate data.
It focuses on encapsulation, inheritance, and polymorphism.
Encapsulation hides the implementation details of an object from the outside world.
Inheritance allows a class to inherit properties and methods from another class.
Polymorphism allows objects of different classes to be treated as if they were of the same...
Abstraction in OOP is the process of hiding unnecessary details and exposing only essential features of an object.
Abstraction focuses on what an object does rather than how it does it.
It allows us to create abstract classes and interfaces that can be used as blueprints for creating objects.
Abstraction helps in achieving modularity, reusability, and maintainability of code.
Example: A car can be abstracted as a vehi...
A factorial is the product of all positive integers up to a given number, denoted as n!.
Factorial of 0 is defined as 1: 0! = 1.
Factorial of a positive integer n is n! = n × (n-1) × ... × 2 × 1.
Example: 5! = 5 × 4 × 3 × 2 × 1 = 120.
Factorials grow very quickly; for instance, 10! = 3,628,800.
Factorials are used in permutations and combinations.
Pointers are variables that store memory addresses of other variables. They allow direct manipulation of memory.
Pointers are declared using the * symbol.
They can be used to pass values by reference.
Pointers can be used to dynamically allocate memory.
Example: int *ptr; ptr = # *ptr = 10;
Example: void swap(int *a, int *b) { int temp = *a; *a = *b; *b = temp; }
Min's angle from 5 to 5:40 is 120 degrees.
The minute hand moves 360 degrees in 60 minutes.
From 5 to 6, the minute hand moves 30 degrees per 5 minutes.
From 5 to 5:40, the minute hand moves 30 degrees per 8 minutes.
Therefore, the angle made by the minute hand is 30 degrees x 8 = 240 degrees.
However, the angle between 5 and 5:40 is only 240 degrees - 120 degrees = 120 degrees.
I applied via Campus Placement and was interviewed in Aug 2024. There were 3 interview rounds.
1st round was an aptitude test based on all the basic topics of Computer Science like Html,OOPS,DSA etc
Program to find occurrences of each element and sort array in increasing order.
Use a HashMap to store the count of each element in the array.
Sort the array based on the occurrences of each element.
Handle edge cases like empty array or null input.
I appeared for an interview in Mar 2025, where I was asked the following questions.
I have diverse experience in software development, focusing on system architecture and team collaboration.
Worked as a software engineer at XYZ Corp, developing scalable web applications using Java and Spring Boot.
Led a team of 5 in a project that improved system performance by 30% through code optimization and refactoring.
Collaborated with cross-functional teams to integrate APIs, enhancing user experience and function...
I possess a diverse range of technical skills, including programming, data analysis, and cloud computing.
Proficient in programming languages such as Python and Java, with experience in developing web applications.
Skilled in data analysis using tools like SQL and Excel, having worked on projects that involved data visualization.
Experienced in cloud computing platforms like AWS, where I deployed scalable applications and...
I applied via Campus Placement and was interviewed in Feb 2024. There were 2 interview rounds.
Easy basics 65min duration
I appeared for an interview in Aug 2024.
Easy Aptitude and medium level cs fundamental questions
I applied via Naukri.com and was interviewed before Sep 2023. There were 2 interview rounds.
Partial view is a reusable view component in ASP.NET MVC which can be rendered within a view.
Partial views can be used to break down complex views into smaller, manageable components.
They can be rendered within other views using the @Html.Partial() method.
Partial views are useful for reusing code and improving maintainability of MVC applications.
Index in a database is a data structure that improves the speed of data retrieval operations.
Indexes are used to quickly locate data without having to search every row in a database table.
They are created on columns in a database table to speed up the query process.
Examples of indexes include primary keys, unique keys, and composite keys.
Hashing is a process of converting input data into a fixed-size string of bytes using a mathematical algorithm.
Hashing is used to securely store passwords by converting them into a hash value.
Hashing is used in data retrieval systems to quickly locate data based on its hash value.
Common hashing algorithms include MD5, SHA-1, and SHA-256.
Security vulnerabilities include SQL injection, cross-site scripting, and insecure direct object references.
SQL injection: attackers insert malicious SQL code into input fields to access or manipulate database
Cross-site scripting: attackers inject malicious scripts into web pages viewed by other users
Insecure direct object references: attackers access unauthorized data by manipulating object references
Background verification
Expected CTC and percentage
Expected CTC refers to the salary package that the candidate is looking for
Percentage refers to the academic percentage achieved by the candidate
The candidate can mention their expected CTC based on their experience and industry standards
The academic percentage can showcase the candidate's academic performance and potential
Java Coding questions
I appeared for an interview in Jun 2022.
Object oriented programming is a programming paradigm that uses objects to represent and manipulate data.
It focuses on encapsulation, inheritance, and polymorphism.
Encapsulation hides the implementation details of an object from the outside world.
Inheritance allows a class to inherit properties and methods from another class.
Polymorphism allows objects of different classes to be treated as if they were of the same clas...
Abstraction in OOP is the process of hiding unnecessary details and exposing only essential features of an object.
Abstraction focuses on what an object does rather than how it does it.
It allows us to create abstract classes and interfaces that can be used as blueprints for creating objects.
Abstraction helps in achieving modularity, reusability, and maintainability of code.
Example: A car can be abstracted as a vehicle w...
I appeared for an interview before Apr 2024, where I was asked the following questions.
A factorial is the product of all positive integers up to a given number, denoted as n!.
Factorial of 0 is defined as 1: 0! = 1.
Factorial of a positive integer n is n! = n × (n-1) × ... × 2 × 1.
Example: 5! = 5 × 4 × 3 × 2 × 1 = 120.
Factorials grow very quickly; for instance, 10! = 3,628,800.
Factorials are used in permutations and combinations.
Top trending discussions
Some of the top questions asked at the Broadridge Financial Solutions Member Technical interview -
The duration of Broadridge Financial Solutions Member Technical interview process can vary, but typically it takes about less than 2 weeks to complete.
based on 11 interview experiences
Difficulty level
Duration
based on 100 reviews
Rating in categories
Process Analyst
1.4k
salaries
| ₹2.5 L/yr - ₹6 L/yr |
Senior Member Technical
1.3k
salaries
| ₹6 L/yr - ₹20 L/yr |
Technical Lead
597
salaries
| ₹9.1 L/yr - ₹33.5 L/yr |
Senior Process Analyst
591
salaries
| ₹2.2 L/yr - ₹8.5 L/yr |
Member Technical
582
salaries
| ₹3 L/yr - ₹11 L/yr |
Paytm
FIS
PhonePe
Fiserv