One who wants to become agniveer of India, this article is going to be beneficial for him or her. To get full information regarding new scheme of government i.e. Agnipath Scheme, read this article. Government of India introduced a new scheme i.e. Agnipath Scheme on 14 June 2022 for the recruitment of soldiers below the […]
Main Content
Asp .net
Scalar data types in php
By admin
In php four data types Boolean Integer Float String Boolean data type in php This data type can represent either true or false . In PHP value is 1 and value of false doesn’t any value. is_bool : Using this function , we can check input variable is boolean or not. (bool) var OR (boolean) […]



Variables in PHP
By admin
Variable is name of memory location used to store some data. In PHP no need to provide data types at the time of variable declaration because PHP is loosely types language . Variable names start with ‘$’ symbol. types of variable in PHP Local variable :- Variable declaration within the function comes under local […]
application state in asp.net
By admin
what is application state in asp.net Application state in asp.net is a server side state management technique. The date stored in application state is common for all users of that particular ASP.NET application and can be accessed anywhere in the application. It is also called application level state management. ASP.NET provides application state via the […]



Using ASP.NET To Send Email
Email is a standout amongst the most well-known and dependable strategies for correspondence for both individual and business purposes. It likewise assumes an essential part in every last Web website. This part will be in the sort of computerized messages from the server in the wake of posting data from a shape. You may have […]
php update



Variables in PHP
By admin
Variable is name of memory location used to store some data. In PHP no need to provide data types at the time of variable declaration because PHP is loosely types language . Variable names start with ‘$’ symbol. types of variable in PHP Local variable :- Variable declaration within the function comes under local […]



Using ASP.NET To Send Email
Email is a standout amongst the most well-known and dependable strategies for correspondence for both individual and business purposes. It likewise assumes an essential part in every last Web website. This part will be in the sort of computerized messages from the server in the wake of posting data from a shape. You may have […]


c programming practice questions
c programming practice questions What is the output of the following code? 1. #include<stdio.h> main() { int i; for(i=0;i<5;i++) { static int a=0; int b=0; a++; b++; printf(“\na=%d”,a); printf(“,b=%d”,b); } return 0; } Ans: a=1 b=1 a=2 b=1 a=3 b=1 a=4 b=1 a=5 b=1 2. #include<stdio.h> main() { static int s; ++s; printf(“\n%d”,s); if(s<=3) main(); […]


ADO tutorial
ADO Introduction Pretty much every application deals with data in some manner, whether that data comes from memory, databases, XML files, text files, or something else. The location where we store the data can be called as a Data Source or Data Store where a […]


FormView Control in aap.net with example
ForThe FormView control is used to displays the values of a single record from a data source using user-defined templates.The FormView control allows you to edit, delete, and insert records. The FormView control is used to display a single record from a data source in a table. When using the FormView control, you specify templates […]
- Data structure
- Linear data structure
- Array in data structure
- What is a algorithm
- stacks in data structure
- queue data structure
- dequeue in data structure
- Priority queue
- circular queue in data structure
- linked list algorithm
- Delete node in singly linked list
- tree in data structure
- implementation of stack using array in data structure
- implementation of stack using a Linked list in data structure
- Doubly Linked List Implementation