In this article we will learn VB.NET Program to swap two numbers without third variable. We can swap two numbers without using third variable. There are two common ways to swap two numbers without using third variable: Program 1: Using ∗ and / Let’s see a simple example VB.NET Program to swap two numbers without third variable [php] Imports System…
Armstrong Number in VB.NET
An Armstrong number is a number such that the sum of its digits raised to the third power is equal to the number itself. Armstrong Number in VB.NET In case of an Armstrong number of 3 digits, the sum of cubes of each digit is equal to the number itself. For example: 153 = 1*1*1 + 5*5*5 + 3*3*3 “153…
Factorial program in VB.NET
Factorial Program in VB.NET: Factorial, in mathematics, the product of all positive integers less than or equal to a given positive integer and denoted by that integer and an exclamation point. Thus, factorial seven is written 7!, meaning 1 × 2 × 3 × 4 × 5 × 6 × 7. Factorial of n is the product of all positive…
Dynamics 365 trial
In this article we will learn how to Create Dynamics 365 trial. In this blog we will see How to Setup Dynamics 365 30 days Online Trial version. Dynamics 365 trial Follow the below steps to Create Trails Dynamics 365. Step 1. Click here for open Dynamics 365 trials. Click on Sign up here. Step 2. Click on No, continue…
Palindrome program in VB.Net
A palindrome is a number that will show same after reverse. For example 121, 34543, 343, 131 are the palindrome numbers. Palindrome program in VB.Net 1) First point Enter any number for check Palindrome 2) Hold the number in any variable 3) Reverse the number 4) Compare the number with reversed number 5) If both numbers are same, print palindrome…
How to use like and not like operator in FetchXML
In this blog we will learn How to use like and not like operator in FetchXML? Use like and not like operator in FetchXML The LIKE operator is used to search for a specified pattern in a column. Generally There are two wildcards often used in conjunction with the LIKE operator: 1. The percent sign (%) represents zero, one, or…
How to use like operator in FetchXML
In this blog we will learn how to use like operator in FetchXML? Use like operator in FetchXML The LIKE operator is used to search for a specified pattern in a column. Generally There are two wildcards often used in conjunction with the LIKE operator: 1. The percent sign (%) represents zero, one, or multiple characters 2. The underscore sign…
Use MIN() and MAX() Functions in FetchXML
In this blog we will learn how to Use MIN() and MAX() Functions in FetchXML? Use MIN() and MAX() Functions in FetchXML. MIN(): The MIN() function returns the smallest value of the selected column. MAX(): The MAX() function returns the largest value of the selected column. MIN() Syntax [php] <fetch mapping="logical" aggregate="true" version="1.0"> <entity name="entity_name"> <attribute name="attribute_name" alias="allias_name" aggregate="min" />…
Use null and not null operator in FetchXML
In this blog we will learn How to Use null and not null operator in FetchXML? First learn about What is a NULL Value? A field with a NULL value is a field with no value. If a field in a table is optional, it is possible to insert a new record or update a record without adding a value…
How to pass null and not null operator in FetchXML
In this blog we will learn How to pass null and not null operator in FetchXML? First learn about What is a NULL Value? A field with a NULL value is a field with no value. If a field in a table is optional, it is possible to insert a new record or update a record without adding a value…