Infosys questions Flashcards
What is a candidate key?
Minimal set of columns in a table that every other column depends on
How do you send information from the controller to the view in MVC?
by passing an object of the model class to the View.
What is the difference between a function and stored procedure?
Basic Differences between Stored Procedure and Function in SQL Server. The function must return a value but in Stored Procedure it is optional. Even a procedure can return zero or n values. Functions can have only input parameters for it whereas Procedures can have input or output parameters.
What is a primary key and foreign key and how are they used?
Primary key: Unique identifier for a row in a table
Foreign key: A set of columns which hold the values of some primary key to establish a relationship to another row
In MVC, how would you add another record in your database?
from the controller (which pulls from your dbrepo), to your models, to the database
What is the difference between Union and Union All?
The only difference between Union and Union All is that Union extracts the rows that are being specified in the query while Union All extracts all the rows including the duplicates (repeated values) from both the queries.
What is a join?
combines columns from one or more tables into a new table.
Difference Between Delete and Truncate
DELETE: It removes rows one at a time.
TRUNCATE: It removes all rows in a table by deallocating the pages that are used to store the table data
What are temporary tables?
A temporary table is a base table that is not stored in the database but instead exists only while the database session in which it was created is active
What are temporary tables used for?
lets you store and process intermediate results by using the same selection, update, and join capabilities that you can use with typical SQL Server tables.
how do you create a temporary table?
SELECT INTO statement
What are global variables and table variables
A global variable is a named memory variable that you access through SQL statements.
The table variable is a special type of the local variable that helps to store data temporarily
How to find the highest salary of a given table, then the 2nd highest salary, then the 100th.
To find the highest:
select * from employee where salary=(select Max(salary) from employee);
2nd highest:
SELECT name, MAX(salary) AS salary
FROM employee
WHERE salary ID = 2
100 highest:
SELECT name, MAX(salary) AS salary
FROM employee
WHERE salary ID = 100
Too much white space in front of my string, how to remove it? (SQL)
use trim() , ltrim() or rtrim() to remove it.
How to do angular validation, client or server?
AngularJS offers client-side form validation.
AngularJS monitors the state of the form and input fields (input, textarea, select), and lets you notify the user about the current state.
What is the difference between an inner and outer join?
The major difference between inner and outer joins is that inner joins result in the intersection of two tables, whereas outer joins result in the union of two tables.
What header you use to send data to api
HTTP POST
What header you use to get data from api
HTTP GET
What is MVC workflow
HTTP request comes to the controller then controller categorized an action, then send request to the Model to get data for the categorized action, then finally send the action to the view and process the view to send as a HTTP response. so the workflow is Controller-Model-View.
What frontend libraries have you used in your recent project
JS, TS, Bootstrap
Can you use two Action Methods in a controller to get the data from same table
yes
What are filters
a custom class where you can write custom logic to execute before or after an action method executes. Filters can be applied to an action method or controller in a declarative or programmatic way.
What type of databases have you worked in
azure, elephant sql
How do you pass values between controller and view in your Application
ViewBag and ViewData serves the same purpose in allowing developers to pass data from controllers to views.
Difference between ViewData and ViewBag
ViewData is derived from the ViewDataDictionary class and is basically a Dictionary object i.e., Keys and Values where Keys are String while Values will be objects.
Data is stored as Object in ViewData.
While retrieving the data it needs to be Type Cast to its original type as the data is stored as the object and it also requires NULL checks while retrieving.
ViewData is used for passing value from Controller to View.
ViewData is available only for Current Request. It will be destroyed on redirection.
ViewBag is a Wrapper built around ViewData.
ViewBag is a dynamic property and it makes use of the C# 4.0 dynamic features.
While retrieving, there is no need for Type Casting data.
ViewBag is used for passing value from Controller to View.
ViewBag is available only for Current Request. It will be destroyed on redirection.
How much Devops do you know
CI/CD, test coverage, unit testing
What are HTTP methods
verbs that tell the server what you want
What is TDD and did you implemented TDD in your projects
Test driven development. Write tests that fail,
Implement code to make tests pass. Yes.
What is routing
routing from one component in your program to another
What are Nested Triggers
actions that automatically execute when a certain database operation is performed, for example, INSERT, DROP, UPDATE
Explain MVC components
Model: Handles data logic. View: It displays the information from the model to the user. Controller: It controls the data flow into a model object and updates the view whenever data changes.
Error Handling in MVC
Try-catch-finally
Overriding OnException method
Using the [HandleError] attribute on actions and controllers
Setting a global exception handling filter
Handling Application_Error event
Extending HandleErrorAttribute
What are the pillars of OOP?
Polymorphism, Inheritance, Abstraction, Encapsulation
What are access modifiers and label them?
private, public, protected, internal, and two combinations: protected-internal and private-protected.
What is the difference between public and protected?
public - can be access by anyone anywhere. protected - can only be accessed from with in the class or any object that inherits off of the class.
What is Entity Framework?
an open-source ORM framework for .NET applications supported by Microsoft. It enables developers to work with data using objects of domain specific classes without focusing on the underlying database tables and columns where this data is stored.
What is managed code?
code whose execution is managed by a runtime.
What is SQL?
Structured Query Language. SQL is used to communicate with a database.
Explain the query for searching an “Employee Table” where I want three employees with their name and employee ID.
SELECT id, name FROM Employee
WHERE ( ( id >= 3 ) );
What is ACID?
ACID refers to the four key properties of a transaction: atomicity, consistency, isolation, and durability.
Explain the query for searching an “Employee Table” where I want three employees with their name and employee ID.
SELECT * FROM Employee
WHERE ( ( id >= 3 ) );
Explain the query for searching an “Employee Table” where I would like to find the top employee based on productivity.
SELECT * FROM Employee WHERE MAX(productivity);
What is a function?
a set of instructions bundled together to achieve a specific outcome.
Which function have you used more and why (Scalar and Tabular)?
Scalar
Which function have you used more and why (Scalar and Tabular)?
Scalar
The functions which return only a single value from an input value are known as a _____.
scalar function
A table-valued function is a user-defined function that returns data of a table type.
Tabular function
What is a view?
a software class that contains a template and data form and produces a response for the browser. It receives data from the Controller of the MVC and packages it and presents it to the browser for display.
What is a primary key?
a value, or a combination of few values from the table, uniquely defining each record in this table.
What type of key represents the relationship between “Department” and “Employee”?
Foreign
What is the SELECT and WHERE clause?
select row from table where (condition)
How do you handle/deal with exceptions in SQL?
TRY.. CATCH blocks
Give me the steps by steps to consume api service.
Create MVC Application. Install HttpClient library from NuGet. Install WebAPI.Client library from NuGet. Create Model Class.
‘with’ in SQL?
allows us to give a subquery block a name that can be used in multiple places within the main SELECT, INSERT, DELETE or UPDATE SQL query.
How do you do unions?
UNION clause
What did you observe about DbFirst vs ‘the normal way’?
freestyle
client-side scripting
Client-side scripting simply means running scripts, such as JavaScript, on the client device, usually within a browser
How do you pass data between components?
Parent to Child component: When you define @Input() in the child component it will receive value from the master or parent component.
Child to Parent component: For sharing data from child to parent we need output decorator.
How to do LINQ query
select, from, where clauses
from s in stringList
where s.Contains(“Tutorials”)
select s;
How to use Lambda expression
Func square = x => x * x;
How do observables work?
Emit multiple values over a period of time. Have subscriptions that are cancellable using the unsubscribe() method, which stops the listener from receiving further values.
SOLID principles
S - Single-responsiblity Principle O - Open-closed Principle L - Liskov Substitution Principle I - Interface Segregation Principle D - Dependency Inversion Principle
Single-responsibility Principle (SRP) states:
A class should have one and only one reason to change, meaning that a class should have only one job.
Open-closed Principle (OCP) states:
Objects or entities should be open for extension but closed for modification.
Liskov Substitution Principle states:
This means that every subclass or derived class should be substitutable for their base or parent class.
Interface segregation principle states:
A client should never be forced to implement an interface that it doesn’t use, or clients shouldn’t be forced to depend on methods they do not use.
Dependency inversion principle states:
Entities must depend on abstractions, not on concretions. It states that the high-level module must not depend on the low-level module, but they should depend on abstractions.
ACID principles
atomicity, consistency, isolation, and durability.
Atomicity
All changes to data are performed as if they are a single operation. That is, all the changes are performed, or none of them are.
Consistency
Data is in a consistent state when a transaction starts and when it ends.
Isolation
The intermediate state of a transaction is invisible to other transactions. As a result, transactions that run concurrently appear to be serialized.
Durability
After a transaction successfully completes, changes to data persist and are not undone, even in the event of a system failure.
Why do we even use abstract classes and interfaces?
An abstract class allows you to create functionality that subclasses can implement or override. An interface only allows you to define functionality, not implement it. And whereas a class can extend only one abstract class, it can take advantage of multiple interfaces.
Two interfaces with same method name. How can you fix this?
There is a conflict
How can you make an array hold many different types of data?
declare the array as Object.
How can you deal with null reference exception?
Use Debug. Assert if a value should never be null , to catch the problem earlier than the exception occurs. When you know during development that a method could, but never should return null , you can use Debug.
What are interfaces used for in C#.
Interfaces help define a contract (agreement or blueprint, however you chose to define it), between your application and other objects. This indicates what sort of methods, properties, and events are exposed by an object.
What are transactions in SQL
A transaction is a logical unit of work that contains one or more SQL statements
Difference between Angular app and MVC app
Angular uses components where MVC uses controllers
what are Data Annotations
the process of labeling the data available in various formats like text, video or images.
What is Entity Framework Core?
a lightweight, extensible, open source and cross-platform version of the popular Entity Framework data access technology.
Write a function to find all null first names and replace with empty string/last name.
string[] firstName = new string[] {null, "john", null, "betty"}; string[] lastName = new string[] {"rose", "test", "test1", "oops"}; func test() { for(int i = 0; i
Explain what Inheritance is and how it is implemented in Object Oriented Programming.
The mechanism of basing an object or class upon another object or class, retaining similar implementation
Establishes an “is-a” relationship between objects
Promotes code reusability
In C# the constructors are inherited from parent to child
You can ____ from multiple interfaces but you can only ____ from one class
How would you instantiate a static class?
A static class cannot be instantiated. All members of a static class are static and are accessed via the class name directly, without creating an instance of the class.
What does the sealed keyword do?
Applied to: classes, class members
Sealed classes cannot be inherited by other classes
Sealed methods and properties aren’t overridable in
any classes that inherit those members
Similar to the final keyword in java
What are indexes in SQL?
Indexes are special lookup tables that the database search engine can use to speed up data retrieval. Simply put, an index is a pointer to data in a table.
what is JIRA?
a proprietary issue tracking product developed by Atlassian that allows bug tracking and agile project management
Describe the SQL Normalization forms
1NF = Atomic Values, No repeating groups of columns, No duplicate rows
2NF = Has to be 1NF, NO partial dependencies, No composite keys mean you’re 2NF by default
3NF =Has to be 2NF, NO transitive dependencies
Explain subqueries in SQL
A Subquery or Inner query or a Nested query is a query within another SQL query and embedded within the WHERE clause.
A subquery is used to return data that will be used in the main query as a condition to further restrict the data to be retrieved.
Subqueries can be used with the SELECT, INSERT, UPDATE, and DELETE statements along with the operators like =, , >=, <=, IN, BETWEEN, etc.
Explain Angular Lifecycle hooks and their order
Lifecycle hooks are timed methods. They differ in when and why they execute. Change detection triggers these methods. They execute depending on the conditions of the current cycle. Angular runs change detection constantly on its data. Lifecycle hooks help manage its effects.
ngOnChanges triggers following the modification of @Input bound class members. Data bound by the @Input() decorator come from an external source. When the external source alters that data in a detectable manner, it passes through the @Input property again.
Differences between structs and classes in C#
Structs are value types while classes are reference types. Structs can be instantiated without using a new operator. A struct cannot inherit from another struct or class, and it cannot be the base of a class. All structs inherit directly from System.
What are the levels of garbage collection?
A marking phase that finds and creates a list of all live objects.
A relocating phase that updates the references to the objects that will be compacted.
A compacting phase that reclaims the space occupied by the dead objects and compacts the surviving objects.
How does an object progress through those levels of garbage collection?
Objects that are not reclaimed in a garbage collection are known as survivors and are promoted to the next generation:
Objects that survive a generation 0 garbage collection are promoted to generation 1.
Objects that survive a generation 1 garbage collection are promoted to generation 2.
Objects that survive a generation 2 garbage collection remain in generation 2.
What is dynamic polymorphism
a process or mechanism in which a call to an overridden method is to resolve at runtime rather than compile-time.
give an example of dynamic polymorphism
All cats have tails. Bobcats have short tails.
What is object pooling?
software creational design pattern that uses a set of initialized objects kept ready to use – a “pool” – rather than allocating and destroying them on demand.
What is depth first search?
an algorithm for traversing or searching tree or graph data structures.
How do you accomplish error handling in C#?
testing, debugging
What is “finally” used for in C#?
The finally block will execute when the try/catch block leaves the execution, no matter what condition cause it. It always executes whether the try block terminates normally or terminates due to an exception. The main purpose of finally block is to release the system resources.
How do you do multiple inheritance?
implement multiple interfaces in a class.
How would you protect routes?
using route guards. Angular’s route guards are interfaces which can tell the router whether or not it should allow navigation to a requested route.
What are dependencies and how are they managed in Angular?
dependencies are imports that a component needs to use that classes methods or variables and angular manages this through dependency inject
What are the different types of directives and what do they do?
Structural, and attribute directives structural directives change the structure of dom/html page - so things like ngIf, ngFor, anything that adds or removes html elements are structural directives Attribute directives changes the look and feel of elements - like ngStyle
How would you pass data from a parent to a child component or a child to a parent component
child to parent component
- In the parent component, create a callback function. …
- Pass the callback function to the child as a props from the parent component.
- The child component calls the parent callback function using props and passes the data to the parent component.
parent to child component
the parent component passes props to the child component and the child can then access the data from the parent via this.props.
What is startup.cs, Is it possible to run an ASP.NET Core API without one?
startup.cs registers services and injection of modules in HTTP pipeline. Startup. cs file contains Startup class which triggers at first when application launches and even in each HTTP request/response. No you can’t run without it.
What are the different types of dependency lifetimes in ASP.NET?
Transient — Services are created each time they are requested
Scoped — Services are created on each request (once per request)
Singleton — Services are created once for the lifetime of the application.
In what situation would you use each dependency lifetime?
use transient for adding items to cart
use scoped for purchasing
singleton for creating account
Rest vs Soap?
REST:
HTTP
Any format, JSON is easier to parse and is lightweight
Stateless
Good caching support
Just https, not truly end to end security
Simpler, easy to get up and running because http is everywhere and you don’t have to deal with XML
Contract based on HTTP standards & conventions & is either hypermedia or an API description language
Errors: 4xx, 5xx, status codes
Gets told by the client what it wants to do to a resource via http verb
SOAP: Any protocol over HTTP, just uses POST XML Could be stateful Supports caching but not at the http level Lots of security support Contract based on WSDL document Errors: faults Gets told by the client what it wants to do to a resource via articulating it in the soap message
XML vs JSON?
Both JSON and XML are “self describing” (human readable)
Both JSON and XML are hierarchical (values within values)
Both JSON and XML can be parsed and used by lots of programming languages
Both JSON and XML can be fetched with an XMLHttpRequest
JSON doesn’t use end tag
JSON is shorter
JSON is quicker to read and write
JSON can use arrays
XML is much more difficult to parse than JSON.
JSON is parsed into a ready-to-use JavaScript object.
Why use Soap over REST?
if you need more robust security, SOAP’s support for WS-Security can come in handy. It offers some additional assurances for data privacy and integrity. It also provides support for identity verification through intermediaries rather than just point-to-point, as provided by SSL (which is supported by both SOAP and REST).
Another advantage of SOAP is that it offers built-in retry logic to compensate for failed communications.
What is the file that represents the database?
DBContext
What class represents a collection of entities?
Entity Class
Can you have multiple DBContexts?
yes
What is a microservice?
A microservice architecture – a variant of the service-oriented architecture structural style – arranges an application as a collection of loosely-coupled services.
How to toggle from one controller to another in a standalone app without any server side response.
using keyword
what is flexbox in css?
The flex layout allows responsive elements within a container to be automatically arranged depending upon screen size.
what is the box model?
refers to how HTML elements are modeled in browser engines and how the dimensions of those HTML elements are derived from CSS properties.
what is local storage?
the process of storing digital data on physical storage devices, such as hard disc drives (HDDs), solid state drives (SSDs), or external storage devices, such as thumb drives or discs.
what is session storage?
It enables developers to save and retrieve different values. Unlike local storage, session storage only keeps data for a particular session. The data is cleared once the user closes the browser window.
what is normalization
a database design technique that reduces data redundancy and eliminates undesirable characteristics
what are attributes in C#
Attributes are like adjectives, which are used for metadata annotation that can be applied to a given type, assembly, module, method and so on.