Filter interviews by
Clustered index physically reorders the data in the table while non-clustered index creates a separate structure.
Clustered index determines the physical order of data in the table, while non-clustered index does not.
A table can have only one clustered index but multiple non-clustered indexes.
Clustered index is faster for retrieval of data but slower for insert and update operations.
Non-clustered index is slower for ret...
I applied via Indeed and was interviewed before Jul 2022. There were 3 interview rounds.
ASP.NET Core is a cross-platform, high-performance framework for building modern, cloud-based, internet-connected applications.
Cross-platform framework for building web applications
High-performance and scalable
Supports cloud-based and internet-connected applications
Open-source and actively maintained by Microsoft
Modular design for flexibility and extensibility
Key features of ASP Dot Net CORE include cross-platform support, high performance, and modularity.
Cross-platform support allows developers to build and run applications on Windows, macOS, and Linux.
High performance achieved through features like a new lightweight and modular HTTP request pipeline.
Modularity enables developers to include only the necessary components in their applications, reducing the overall size and ...
Entity Framework Core is an ORM framework that allows developers to work with databases using .NET applications.
Entity Framework Core is an Object-Relational Mapping (ORM) framework for .NET applications.
It allows developers to work with databases using .NET objects and LINQ queries.
EF Core supports various database providers such as SQL Server, SQLite, MySQL, etc.
It simplifies data access and persistence by handling d...
Use the DISTINCT keyword in an SQL query to remove duplicate records.
Use the SELECT DISTINCT statement to retrieve unique records.
Identify the columns that should be used to determine uniqueness.
Consider using GROUP BY clause with aggregate functions if needed.
Joins are used to combine rows from two or more tables based on a related column, while subqueries are nested queries used to return data for the main query.
Joins are used to retrieve data from multiple tables based on a related column
Subqueries are nested queries within a main query to return data for the main query
Joins are typically more efficient than subqueries for large datasets
Joins can be of different types lik...
Views are virtual tables, procedures are reusable code blocks, functions return values
Views are virtual tables that display data from one or more tables
Procedures are reusable code blocks that can be called multiple times
Functions return a single value based on input parameters
Views are read-only, while procedures and functions can modify data
Examples: View - SELECT * FROM employees_view; Procedure - EXECUTE get_employ...
Code First: Develop database from code. Database First: Generate code from existing database.
Code First: Focus on code design and then generate database schema.
Database First: Focus on existing database schema and generate code classes.
Code First: More control over database design and relationships.
Database First: Faster development for existing databases.
Code First: Entity Framework Code First approach.
Database First:
To connect SQL to ASP Core Web API, you need to configure a database connection in the API project.
Configure a connection string in the appsettings.json file of the API project.
Install Entity Framework Core package in the API project.
Create a DbContext class that inherits from DbContext and represents the database.
Use dependency injection to inject the DbContext into the API controllers.
Dependency Injection is a design pattern where the dependencies of an object are provided externally rather than created within the object itself.
Dependencies are injected into a class through constructor injection, setter injection, or interface injection.
This helps in achieving loose coupling between classes and makes the code more testable and maintainable.
Example: Instead of creating an instance of a dependency wit...
LINQ (Language Integrated Query) is a feature in C# that allows for querying data from different data sources using a uniform syntax.
LINQ allows for querying data from collections, databases, XML, and more.
It provides a set of standard query operators like Where, Select, OrderBy, etc.
LINQ queries are written in a declarative syntax similar to SQL.
Example: var result = from num in numbers where num % 2 == 0 select num;
Enable JWT Authentication in ASP Core Web API with Roles
Install the required NuGet packages like Microsoft.AspNetCore.Authentication.JwtBearer
Configure JWT authentication in Startup.cs file
Add authentication middleware in Configure method
Implement role-based authorization using policies and attributes
Optimizing SQL queries involves using indexes, minimizing data retrieval, and avoiding unnecessary joins.
Use indexes on columns frequently used in WHERE clauses
Minimize data retrieval by selecting only necessary columns
Avoid unnecessary joins by using EXISTS or IN clauses instead of JOINs
Use indexing, limit the columns retrieved, optimize queries, use pagination
Create indexes on columns frequently used in queries
Limit the columns retrieved to only those needed
Optimize queries by using WHERE clauses and avoiding SELECT *
Implement pagination to retrieve records in smaller chunks
Indexing in SQL is used to improve the performance of queries by creating a data structure that allows for faster retrieval of data.
Types of indexing include clustered and non-clustered indexes
Clustered indexes physically order the data in the table based on the index key
Non-clustered indexes create a separate data structure that includes the indexed columns and a pointer to the actual data
Indexes can be created on sin...
I have 3 years of experience as an ASP Core Web API and ReactJs Developer.
3 years of experience in ASP Core Web API development
Proficient in ReactJs development
Developed multiple projects using ASP Core Web API and ReactJs
States are mutable data managed within a component, while Props are immutable data passed from parent to child components.
States are managed within a component and can be changed by the component itself
Props are passed from parent to child components and cannot be changed by the child component
States are used for internal component data management, while Props are used for passing data from parent to child components
Context API is a built-in feature in React for managing global state, while Redux is a standalone library for state management.
Context API is built into React, while Redux is a separate library.
Context API is primarily used for managing global state in a React application.
Redux provides a centralized store for managing state across the application.
Context API is simpler to use for smaller applications, while Redux is m...
I applied via AmbitionBox and was interviewed before May 2021. There were 2 interview rounds.
iOS design patterns include MVC, MVVM, Singleton, Factory, and Observer.
MVC separates data, view, and controller logic
MVVM adds a view model to handle data binding
Singleton ensures only one instance of a class exists
Factory creates objects without exposing the creation logic
Observer allows objects to be notified of changes in other objects
posted on 2 Aug 2024
I applied via Approached by Company and was interviewed before Aug 2023. There was 1 interview round.
posted on 13 Aug 2024
I applied via Referral and was interviewed in Jul 2024. There was 1 interview round.
Single page application is a web application that loads a single HTML page and dynamically updates the content as the user interacts with the app.
SPA uses AJAX and HTML5 to create fluid and responsive user experience.
It eliminates the need for page reloading during use, making it faster and more efficient.
Examples include Gmail, Facebook, and Google Maps.
State management is the process of managing the state of an application, including data flow, user interface updates, and user interactions.
State management involves storing and updating the state of an application to ensure data consistency.
It helps in managing user interface updates based on changes in the application state.
State management is crucial for handling user interactions and maintaining a seamless user exp...
posted on 2 Jul 2024
Find the second largest number in an array of strings.
Convert the strings to numbers for comparison.
Sort the array in descending order.
Return the second element in the sorted array.
Find pairs in an array that sum up to a given target value.
Use a hash set to store the difference between the target value and each element in the array.
Iterate through the array and check if the current element's complement exists in the hash set.
Return the pairs that sum up to the target value.
posted on 5 Oct 2023
I applied via Company Website and was interviewed before Oct 2022. There were 5 interview rounds.
Duration is around 1 hour
posted on 14 Sep 2021
I applied via Campus Placement and was interviewed in Mar 2021. There were 4 interview rounds.
Joins in SQL are used to combine data from two or more tables based on a related column.
Inner join returns only the matching rows from both tables
Left join returns all rows from the left table and matching rows from the right table
Right join returns all rows from the right table and matching rows from the left table
Full outer join returns all rows from both tables, with NULL values for non-matching rows
Cross join retur
Given an array of integers, find a contiguous subarray with a given sum.
Use a sliding window approach to iterate through the array and keep track of the current sum.
If the current sum exceeds the given sum, move the window's left endpoint forward.
If the current sum is less than the given sum, move the window's right endpoint forward.
If the current sum equals the given sum, return the subarray.
Time complexity: O(n), Spa
I appeared for an interview before Apr 2021.
Round duration - 60 minutes
Round difficulty - Easy
Technical interview round with questions on DSA and DBMS mainly.
Given an array ARR
consisting of N
integers, determine the sum of the subarray with the maximum sum, including the possibility of an empty subarray.
A subarray is a...
Find the sum of the subarray with the maximum sum in a given array.
Iterate through the array and keep track of the current sum and maximum sum.
Update the maximum sum if the current sum becomes greater.
Handle cases where the array has all negative numbers or empty subarray.
Example: For input [-2, 1, -3, 4, -1], the maximum sum subarray is [4] with sum 4.
Given a positive integer N
, your task is to identify all prime numbers less than or equal to N
.
A prime number is a natural number greater than 1 that has no po...
Identify all prime numbers less than or equal to a given positive integer N.
Iterate from 2 to N and check if each number is prime
Use the Sieve of Eratosthenes algorithm for efficient prime number identification
Optimize by only checking numbers up to square root of N for divisibility
Joins in databases are used to combine rows from two or more tables based on a related column between them.
Joins are used to retrieve data from multiple tables based on a related column.
Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.
INNER JOIN returns rows when there is at least one match in both tables.
LEFT JOIN returns all rows from the left table and the matched rows from the right ta...
Round duration - 30 minutes
Round difficulty - Easy
Typical HR round with behavioral problems.
Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.
Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.
posted on 30 May 2022
I applied via Recruitment Consulltant and was interviewed before May 2021. There were 5 interview rounds.
Hackerrank Test
Some of the top questions asked at the Xetech Software Developer interview -
based on 2 interviews
Interview experience
based on 9 reviews
Rating in categories
Software Tester
17
salaries
| ₹2 L/yr - ₹8.5 L/yr |
Senior Software Developer
12
salaries
| ₹10 L/yr - ₹16.5 L/yr |
Software Developer
9
salaries
| ₹7 L/yr - ₹15 L/yr |
Softwaretest Engineer
5
salaries
| ₹2.7 L/yr - ₹4 L/yr |
Team Lead
5
salaries
| ₹12 L/yr - ₹15.5 L/yr |
Accel Frontline
Northcorp Software
Elentec Power India (EPI) Pvt. Ltd.
HyScaler