How to use material with angular

how to use material with angular, Read More !!! Write material UI import and export code in material.module.ts file now import material.module.ts file in your app.module.ts file Run your application using ng serve. and you are good to go.

How to create Angular Material Project

How to create Angular Material Project, Read More !!! In C Drive create folder name C:>AngularMaterial C:/AngularMaterial> cd your_angular_Project_pathe C:\AngularMaterial\your-project-name> Open app.module.ts file, to check material is working fine or not in our project import matButton in import block. Open app.component.html file and remove all the code.

How do we create service in Angular

How do we create service in Angular, Read More!!! Step 1: – Create Service in your angular application Step 2:- Here down below you can see the code which will generated. From Injectable, remove providedIn: ‘root’. Step 3: – Create Service class with dummy record, as shown in down below. Step 4: – Create new … Read more

C Sharp interview questions for freshers

C Sharp interview questions for freshers

C Sharp interview questions for freshers Part 1, Watch all video and get the your favorites’ job. How to return multiple values c# in English Difference between ref and out in C# How to return multiple values from a function using tuple in c# How to compare two class objects in c# Difference Between Typeof … Read more

Write a SQL query for second highest salary

Write a SQL query for second highest salary, Here is the query. To fetch the second highest value from the database table there are several way. Here I have used CO-RELATED Query concept and try to display the data. SQL Query for | Second highest salary Select 3rd highest salary in SQL In above query … Read more