Tumgik
dntdrifts Β· 2 years
Text
Tumblr media
to overcome all such issues client-side framework Angular came into the scenario which made the life of the developer as well as the organization easier by handling separation of concerns and dividing code into smaller bits of information. Today it is in high demand among various industries across the world. So, to make yourself ready in Angular and to get a good job in Angular, you need to prepare yourself for the interview and take training along with the Angular Interview Question Answer Pdf file to crack the interview.
0 notes
dntdrifts Β· 2 years
Text
Tumblr media
In the world of the database, the most common and well popular database systems are RDBMS (Relational Database Management Systems). Now, if we want to develop an application which deals with a large volume of data, then we need to choose one such database which always provides a high – performance data storage solutions. MongoDB
0 notes
dntdrifts Β· 2 years
Text
Tumblr media
SQL Joins are used to fetch/retrieve data from two or more data tables, based on a join condition. A join condition is a relationship among some columns in the data tables that take part in SQL join. Basically, database tables are related to each other with keys. We use this keys relationship in SQL Joins.
0 notes
dntdrifts Β· 2 years
Text
Tumblr media
LINQ Tutorial | LINQ Tutorial For Beginners Language-Integrated Query (LINQ) is a set of extensions methods on the top of the .NET Framework. LINQ allows a developer to query data from different data sources (like collections, RDBMS, XML) by using a uniform API and syntax.
0 notes
dntdrifts Β· 2 years
Text
Tumblr media
0 notes
dntdrifts Β· 2 years
Photo
Tumblr media
Decision making statements help you to make decision based on certain conditions. These conditions are specified by a set of decision making statements having boolean expressions which are evaluated to a boolean value true or false. There are following types of decision making statements in C#.
#C
0 notes
dntdrifts Β· 2 years
Photo
Tumblr media
ASP.NET MVC provides a simple way to inject your piece of code or logic either before or after an action is executed. This is achieved by decorating the controllers or actions with ASP.NET MVC attributes or custom attributes. An attribute or custom attribute implements the ASP.NET MVC filters(filter interface) and can contain your piece of code or logic. You can make your own custom filters or attributes either by implementing ASP.NET MVC filter interface or by inheriting and overriding methods of ASP.NET MVC filter attribute class if available.
0 notes
dntdrifts Β· 2 years
Photo
Tumblr media
Inheritance is a mechanism of acquiring the features and behaviors of a class by another class. The class whose members are inherited is called the base class, and the class that inherits those members is called the derived class. Inheritance implements the IS-A relationship. For example, mammal IS-A animal, dog IS-A mammal; Hence dog IS-A animal as well.
0 notes
dntdrifts Β· 2 years
Photo
Tumblr media
Unlimited Access to Live Training Understanding Microsoft Azure Offering IaaS, PaaS, SaaS Learn to migrate your project to Azure cloud Learn to build .NET applications with Azure Discuss Case Studies and Interview Q&A Learn from Microsoft MVPs and Technical Consultant Get access to DotNetTricks Membership Get Access to Interview preparation sessions Resume review and Resume Building Pro tips Learn to pass Azure certification exam AZ-900
0 notes
dntdrifts Β· 2 years
Photo
Tumblr media
Transforming and showing the modified data to the user is what pipes are used for, in Angular. Pipes help to apply fine tune to the data and display value transformation to the user. Pipes can also be thought of, as styles which we apply in the HTML template. A pipe takes in some data as input and returns an output based on the output of transform function evaluation.
0 notes
dntdrifts Β· 2 years
Photo
Tumblr media
In the world of the database, the most common and well popular database systems are RDBMS (Relational Database Management Systems). Now, if we want to develop an application which deals with a large volume of data, then we need to choose one such database which always provides a high – performance data storage solutions. So that, we can achieve the performance in the solution in terms of the data store and data retrieval with accuracy, speed and reliability. Now, if we categorized the database solutions then there are mainly two types of database category available i.e. RDBMS or Relational Database like SQL Server, Oracle etc. and another type is NoSQL database like MongoDB, CosmosDB etc.
0 notes
dntdrifts Β· 2 years
Photo
Tumblr media
Constraints are some rules that enforce on the data to be enter into the database table. Basically constraints are used to restrict the type of data that can insert into a database table. Constraints can be defined in two ways:
0 notes
dntdrifts Β· 2 years
Photo
Tumblr media
A MERN stack developer is an expert in MongoDB, Express, React and Node. They are proficient in JavaScript and use HTML, CSS and JavaScript to handle front-end operations and JavaScript with Node.js to handle back-end operations.
0 notes
dntdrifts Β· 2 years
Photo
Tumblr media
In SQL Server, we have two keys which distinctively or uniquely identify a record in the database. Both the keys seem identical, but actually, both are different in features and in behaviours. In this article, I would like to share the key differences between primary key and unique key.
0 notes
dntdrifts Β· 2 years
Photo
Tumblr media
C is called middle-level language because it actually binds the gap between a machine level language and high-level languages. A user can use c language to do System Programming (for writing operating system) as well as Application Programming (for generating menu driven customer billing system ). That's why it is called the middle-level language.
0 notes
dntdrifts Β· 2 years
Photo
Tumblr media
In SQL Server, there are two keys - primary key and foreign key which seems identical, but actually both are different in features and behaviours. In this article, I would like to share the key differences between primary key and foreign key.
0 notes
dntdrifts Β· 2 years
Photo
Tumblr media
Cursor is a database object to retrieve data from a result set one row at a time, instead of the T-SQL commands that operate on all the rows in the result set at one time. We use a cursor when we need to update records in a database table in singleton fashion means row by row. Life Cycle of Cursor.
3 notes Β· View notes