virtual machine is a computer which exists in the cloud.It doesn't exist physically so you can not see and access hardware.So they just exist virtually not physically. To create a virtual machine in azure follow the below steps: Login to the azure … [Continue reading] about Creating virtual machine in the Azure Portal
Python if,elif and else conditional statements
Conditional statements allow to execute logic based on a logic.If is used for defining conditional statements in Python. It is defined using the keywords: if elif else Following is a sample if statement if True: print('this will … [Continue reading] about Python if,elif and else conditional statements
HttpClient example in Angular
To make HTTP Requests in Angular we use the methods of HttpClient class which is defined in the @angular/common/http package. HttpClient uses XMLHttpRequest browser API behind the scenes. HttpClient class provides the following methods each … [Continue reading] about HttpClient example in Angular
Creating Angular application using Angular CLI
Angular CLI is Angular command line interface which simplifies common tasks when working with Angular 2+ applications Unlike AngularJS setting up Angular 2+ application takes time since various files are required in any Angular 2+ application.These … [Continue reading] about Creating Angular application using Angular CLI
Routing in Angular using Routerlink, Navigate and NavigateByUrl
URLs identify resources which the user can request from the server.For example to request products from a website user could append the following to the domain of the website. /products/list But this url might also contain specific details which user … [Continue reading] about Routing in Angular using Routerlink, Navigate and NavigateByUrl