Skip to main content

Best Programming Channel. What is variable and its types, Clear Your Con...


Variables



The variable in Java is a memory location which used to stores the data values during Java program execution. Every variable has a data type that defined the type and quantity of data that hold data. variable used to store data temporarily. The name of the variable cannet be changed but the value of the variable.
Declaration of variables in java
Syntax 
 type        Variable Name  = Value;
       ↘                            ↘ variable name 
     Data type like int,             Like a,b
     string, char
Example 1:
     Create a variable called the ’ Student Name’ of type String and assign it the value "Ahmad Mukhtiar":  
String Student Name =” Ahmad Mukhtiar”;  
System.out.println(“Student Name”,+Student Name);
  Example 2:
Create a variable called ‘Roll No’ of type int and assign it 50: 
int Roll No=50;
System.out.println(“Your Roll No “+Roll No);   
Example 3:
You can assign value later declare a variable without assigning a value
Int a ;
a=10;
System.out.println(The value of a=”+a);
You can assign a new value to exist it will overwrite the previous value


Int a=40;
a=30;
System.out.println(“overwrite the value is “,+a);
Types of Variables 

There are their types of variable

1)Instance variable
2)Static variable 
3)Local variable 


1)Instance Variable 

A variable declared outside the method but inside the class is called instance variable 
It not declared with the static keyword.



2)Static variable

A variable declared with a static keyword is called a static variable.
A single copy of a static variable can  you create and share among all the instance of the class 
When class is loaded in memory at this time static variable happens.




3)Local Variable

A type of variable that declared inside the method is called local 

Variable. You can access the local variable only inside the method.
You cannet use the “static” keyword with the local variables.



To Visit the fellowing programming for better understating.
Programs No1.



Class A{
Int a=20;
Static int b=50;
Void method()
{
Int c=40;
system.out.println(“Sum of instance ,static and local variable are =”+a+b+c);
}
Public static void main(String[]  args){
method();
}
}
Programs NO 2:
  1. Class ADD{  
  2. public static void main(String[] args){  
  3. int y=100;  
  4. int x=40;  
  5. int z=y+x;  
  6. System.out.println(z);  
  7. }}  





Comments

Popular posts from this blog

Medical Technology

fasmart1.blogspot.com Advancements in medical technology have allowed physicians to raised diagnose and treat their patients since the start of the professional practice of medication.Here we discuss some technological advancements for healthcare.           1. mHealth Portable well being is  liberating medicinal  services gadgets of  wires and features  and empowering  doctors and patients  the just like watch out for human  services forms  in an exceedingly  hurry.  Cell phones and tablets permit  human services  suppliers to any  or all the more unreservedly  get to and send  data. Doctors and  specialist co-ops  can utilize mHealth   devices for requests,  documentation and  essentially to hit  more data when with patients.                         In any case, mHealth isn't almost remote netw...

How long will the COVID 19 last?

fasmart1.blogspot.com CORONA VIRUS One of the incredible inquiries with COVID 19 is the manner by which long is this going to last and any individual who asserts that they know the response to that it's tricking you. Basically put we don't have the foggiest idea whether this infection is occasional, If you take a gander at crown  infections by and large some of them are occasional however we likewise have ones like meres-inlet that we know is amazingly impervious to warm so that this infection will vanish in April or May when it starts to heat up we just don't have the foggiest idea about the response to that reality so how long is it going to take? What we expect as disease transmission specialists will happen is the infection will gradually circle through the network at one point we will get what we call group resistance and crowd invulnerability implies we've contaminated such a large number of individuals that when the infection experiences individuals th...

What is an Android open source project?

The Android Open Source Project (AOSP) refers to the people, methods, and source code that make up Android .          Individuals develop management extensions and source code. Methods are the devices and strategies we use to deal with the increase in programming. The net result is source code, which you can use in cell phones and various gadgets. android is a free open-source working framework. AOSP (Android Open Source Project) is permitted to download, permitted to change, permitted to develop anything that can make anything ground-breaking. In any case, this is presumably not something you have ever utilized when you got a telephone or other thingamajig that runs " Android ".  Android isn't something you use to make things.  At its heart, Android is simply a stage that anybody can use to run applications and even utilize the odds and ends it needs to speak with standard equipment. ۔ We need to consider Android the working arrangement of a telephon...