variable in java scripting

Variable Definition -: A variable is a container for information we want to store. A variable’s value can change during the script. You can refer to a variable by name to see its value or to change its value. Rules for variable name -: variable names are case sensitive means uppercase and lower case are … Read more

Learning Java scripting programming language

Java scripting Introduction-:Java scripting is a programming language that can be included on web pages to them more interactive.we can use it check or modify the contents of forms,changes,images open new window and write dynamic page content.we can even use it with css to make DHTM(Dynamic Hyper Text markup Language). This allows you to make … Read more

Insert Button in html

Button –HTML is a web programming language that providing the facility for  multiple type button in our web page. There are many types buttons are available here HTML language. Insert a button in html -:  In the html language we can insert button. where we want to insert we give this way as like First … Read more

Learning html commands and use

html commands -: Here are multiple html command are given Subscript -: By the help of this command we can create subscript. This is mostly use in math and other formula  as like <body> netnic<sub>.org</sub>// use of subscript </body> output—–   Superscript-: By the help of this command we can create superscript.  as like  <body> netnic<sup>.org</sup> … Read more

html formatting command

HTML Format command -: In html language provide all type formatting command here are some BOLD-: This command use for text in Bold in html language as like  its represent <b> <html> <head> <title>tips and Technic of computer and internet</title> </head> <body> <b> http://netnic.org</b><br /> http://netnic.org                      … Read more

Learning HTML

Introduction of HTML-: Its main purpose for developing a wold wide pages. means  HTML was developed for the web application. HTML is not a programming language but it is know as a markup language. BY the help of html we can create our web page. By the help of any computer test editor as like … Read more

String in c language

String definition -:  A string is a sequence of characters that is treated as a single data item.  Any group of character (except double quote sign) defined between double quotation marks is a string constant as like ” Vikarm is always right ” if we want to include a double quote in the string to … Read more

Array in C

Array Definition-: In many application we need to handle a large volume of data in terms of reading,processing and printing. to process such large amount of data we need a powerful data type that would facilitate efficient sorting accessing and manipulation of data items. C support a derived data type known as array. An array … Read more

Data structure in C

Data structure in C:– C support a rich set of derived and user define data type.Data structures are used to store data in a computer in an organized form. In C Programming Language Different types of data structures are; Array, Stack, Queue, Linked List, Tree. In term of computer programming language, a data structure may … Read more

Looping in C language

Introduction of looping -: Suppose if we want to calculate all sum of integer 1 to 1000. It is not possible in  IF statement. This will be written in this way sum = sum + n*n; 1000 time it is called the loop. In looping a sequence of statement are executed until some conditional for termination … Read more