Filter interviews by
I applied via Job Fair and was interviewed in Sep 2024. There were 2 interview rounds.
Web API is a set of rules and protocols that allow different software applications to communicate with each other over the internet.
Web API allows different software systems to interact with each other through a set of rules and protocols.
It enables communication between different applications over the internet.
Web API is commonly used in web development to allow websites to interact with external services or data sour...
Object-oriented programming is a programming paradigm based on the concept of objects, which can contain data and code.
OOP focuses on creating objects that interact with each other to solve problems
Encapsulation: bundling data and methods that operate on the data into a single unit
Inheritance: allows new classes to be created based on existing classes
Polymorphism: the ability for objects to be treated as instances of t...
Swap two numbers without using a third variable
Use bitwise XOR operation to swap two numbers without using a third variable
Example: a = 5, b = 10. a ^= b; b ^= a; a ^= b; Now a = 10, b = 5
Iterate through the string from end to beginning and store characters in a new array.
Create an empty array to store the reversed string.
Iterate through the original string from end to beginning and add each character to the new array.
Join the characters in the new array to form the reversed string.
I applied via Approached by Company and was interviewed in Feb 2023. There were 3 interview rounds.
Dependency injection service lifetime determines how long a service instance will be available for use.
Service lifetime can be scoped to a single request, a session, or the entire application
Transient lifetime creates a new instance every time it is requested
Singleton lifetime creates a single instance for the entire application
Scoped lifetime creates a single instance for each request or session
Lifetime can affect per
Middleware in ASP.NET Core is a software component that sits between the web server and the application and handles requests and responses.
Middleware is a pipeline of components that can be added to the application's request processing pipeline.
Each middleware component can handle a specific aspect of the request/response cycle, such as authentication, logging, or caching.
Middleware can be added to the pipeline using t...
SQL server has various functions for data manipulation and retrieval.
Aggregate functions like SUM, AVG, COUNT, MAX, MIN
String functions like CONCAT, SUBSTRING, REPLACE
Date and time functions like GETDATE, DATEADD, DATEDIFF
Conversion functions like CAST, CONVERT
Logical functions like CASE, IIF
Startup class is used to configure services and middleware for an application.
Startup class is a part of ASP.NET Core framework.
It is used to configure the application's request pipeline.
It includes methods for configuring services, middleware, and the application's request handling pipeline.
The ConfigureServices method is used to add services to the dependency injection container.
The Configure method is used to add mi...
Filters in ASP.NET Core are used to execute code before or after an action method is executed.
Filters can be used to perform authentication, logging, caching, and exception handling.
There are four types of filters: Authorization filters, Action filters, Result filters, and Exception filters.
Filters can be applied globally, to a controller, or to a specific action method.
Filters can be added using attributes or by imple
Action filters are used in ASP.NET MVC to execute code before or after an action method is called.
Action filters are attributes that can be applied to a controller action method.
They can be used to perform tasks such as authentication, logging, and caching.
There are four types of action filters: Authorization filters, Action filters, Result filters, and Exception filters.
Examples of action filters include the [Authoriz...
keep() and peak() are not standard functions in programming. They may refer to specific functions in a particular language or library.
keep() and peak() may have different meanings depending on the context in which they are used.
Without more information about the specific language or library being used, it is difficult to provide a more detailed answer.
It is important to clarify the context of the question before attemp
Session storage in core is a way to store data temporarily on the client side.
Session storage is a type of web storage that allows data to be stored on the client side for the duration of a session.
Data stored in session storage is only accessible within the same window or tab that created it.
Session storage is useful for storing temporary data such as user preferences or form data.
Session storage can be accessed using
I prioritize tasks based on urgency and importance, and use time management techniques to ensure efficient completion.
Create a to-do list and prioritize tasks based on urgency and importance
Break down larger tasks into smaller, manageable chunks
Use time management techniques such as the Pomodoro technique to stay focused and efficient
Regularly reassess priorities and adjust the to-do list as needed
Communicate with team...
Top trending discussions
I was interviewed in Dec 2024.
I was interviewed in Jul 2024.
This was an assessment of skills and abilities.
posted on 6 Jan 2025
I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.
The number of variances in SAP can vary depending on the specific processes and transactions being analyzed.
The number of variances in SAP can be influenced by factors such as data entry errors, system glitches, or discrepancies in invoice processing.
Variances in SAP may be identified through reconciliation processes, exception reports, or manual reviews of accounts payable transactions.
Examples of variances in SAP inc...
Accounts receivable and accounts payable are two important aspects of a company's financial operations.
Accounts receivable refers to money owed to a company by its customers for goods or services provided.
Accounts payable refers to money owed by a company to its suppliers or vendors for goods or services received.
Accounts receivable is an asset on the balance sheet, while accounts payable is a liability.
Managing accoun...
Cost element and cost center are key concepts in accounting for tracking and allocating costs within an organization.
Cost element refers to the specific types of costs incurred by an organization, such as materials, labor, or overhead.
Cost center is a specific department, team, or function within an organization that is responsible for incurring costs.
Cost elements are assigned to cost centers to track and allocate cos...
SAP supports over 160 currencies worldwide.
SAP supports over 160 currencies for global transactions.
Currencies can be configured in SAP using transaction code OB22.
Each currency is assigned a unique currency code (e.g. USD for US Dollar, EUR for Euro).
There are various types of projects, including internal projects, external projects, research projects, and development projects.
Internal projects focus on improving processes within the organization.
External projects involve working with external partners or clients.
Research projects aim to gather data and analyze findings.
Development projects focus on creating new products or services.
Examples: IT system implementati...
posted on 23 Jan 2025
Integrity and honesty
I was interviewed in Dec 2024.
Work done from all assigments
I applied via Walk-in and was interviewed in Dec 2024. There were 2 interview rounds.
Process planning refers to the methodical approach of determining the best possible way to manufacture a product or deliver a service by considering various aspects such as resources, timelines, and methodologies involved in production or execution.
Implemented a new chemical process to increase efficiency and reduce waste.
Researched and analyzed current process to identify areas for improvement
Designed and tested new process using simulation software
Collaborated with production team to implement changes and monitor results
Achieved 20% increase in production output and 15% reduction in waste
Continuously monitored and optimized process for further improvements
I utilize a combination of project management tools and communication strategies to effectively manage my team and projects.
I prioritize tasks based on deadlines and importance
I regularly communicate with team members to ensure everyone is on the same page
I use project management software such as Trello or Asana to track progress and assign tasks
I adapt my management style to fit the needs and preferences of individual
I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.
The Aptitude Test session accesses mathematical and logical reasoning abilities
Vlookup is a function in Excel used to search for a value in a table and return a corresponding value from another column.
Vlookup stands for 'Vertical Lookup'
It is commonly used in Excel to search for a value in the leftmost column of a table and return a value in the same row from a specified column
Syntax: =VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])
Example: =VLOOKUP(A2, B2:D10, 3, FALSE) - searc...
My day in my previous organization involved analyzing large datasets, creating reports, and presenting findings to stakeholders.
Reviewing and cleaning large datasets to ensure accuracy
Creating visualizations and reports to communicate insights
Collaborating with team members to identify trends and patterns
Presenting findings to stakeholders in meetings or presentations
I possess strong technical skills in data analysis, including proficiency in programming languages, statistical analysis, and data visualization tools.
Proficient in programming languages such as Python, R, SQL
Skilled in statistical analysis and data modeling techniques
Experience with data visualization tools like Tableau, Power BI
Knowledge of machine learning algorithms and techniques
A Pivot Table is a data summarization tool used in spreadsheet programs to analyze, summarize, and present data in a tabular format.
Pivot tables allow users to reorganize and summarize selected columns and rows of data to obtain desired insights.
Users can easily group and filter data, perform calculations, and create visualizations using pivot tables.
Pivot tables are commonly used in Excel and other spreadsheet program...
To find the highest-paid employee in each department, we need to group employees by department and then select the employee with the highest salary in each group.
Group employees by department
Find the employee with the highest salary in each group
Retrieve the employee's name, salary, and department name
Software Engineer
4
salaries
| ₹3.3 L/yr - ₹7 L/yr |
Principal Test Engineer
4
salaries
| ₹16 L/yr - ₹17.5 L/yr |
Junior Software Engineer
3
salaries
| ₹2.4 L/yr - ₹4 L/yr |
Senior IOS Developer
3
salaries
| ₹16 L/yr - ₹16 L/yr |
Softwaretest Engineer
3
salaries
| ₹5.1 L/yr - ₹8 L/yr |
Accenture
Capgemini
HCLTech
Teleperformance