hello sir, its very difficult to cope up with the theory without the practicle knowledge. so pls add the remaining portion of the setup as soon as you can.. Akshay Arora
hello sir, jo program apne aaj dala hai,usme agar me manager ke liye run karu to wo 4 baar print kar raha hai. please check it out and wo manager ke liye bhi it is an employee hi print kar raha hai.
hello sir,
ReplyDeleteits very difficult to cope up with the theory without the practicle knowledge.
so pls add the remaining portion of the setup as soon as you can..
Akshay Arora
hello sir...
ReplyDeleteplease add those progrmms in the blog.....
have a nice day....
gaurav babbar
full description of motherboard chart
ReplyDeletehello sir,
ReplyDeletejo program apne aaj dala hai,usme agar me manager ke liye run karu to wo 4 baar print kar raha hai.
please check it out and wo manager ke liye bhi it is an employee hi print kar raha hai.
What are pass by reference and passby value?
ReplyDeleteA: Pass By Reference means the passing the address itself rather than passing the value. Passby Value means passing a copy of the value to be passed.
Passby Value me copy of the value ka kya matlab hai.
Akshay Arora said...
ReplyDeleteWhat are pass by reference and passby value?
A: Pass By Reference means the passing the address itself rather than passing the value. Passby Value means passing a copy of the value to be passed.
Passby Value me copy of the value ka kya matlab hai.
Pass by value me copy ka matlab hai that orignal value will be copied in parameter variable memory location
hello sir..
ReplyDeletethe credit folder is empty...
gaurav babbar
hello sir..
ReplyDeletekindly upload a simple n complete program of array...dis book is nt helping dat much...so plz sir..
Go to program and open folder you will get simple program
ReplyDeleteok...thanks sir....i will try dis out...
ReplyDeleteanagha
import java.io.*;
ReplyDeletepublic class manager
{
public String name,branch;
public double salary;
public int id,team;
public void getdata(String a,String b,double c,int d,int e)
{
name=a;
branch=b;
salary=c;
id=d;
team=e;
}
public void display()
{
System.out.println("name:"+name);
System.out.println("branch:"+branch);
System.out.println("salary:"+salary);
System.out.println("identity:"+id);
System.out.println("team:"+team);
}
public static void main(String a[])throws IOException
{
manager M;
M=new manager();
InputStreamReader IS=new InputStreamReader(System.in);
BufferedReader br=new BufferedReader(IS);
System.out.println("enter your information");
String branch=br.readLine();
double sal=Double.parseDouble(br.readLine());
int id=Integer.parseInt(br.readLine());
int team=Integer.parseInt(br.readLine());
M.getdata("Anagha","delhi",25000,21,55);
M.display();
}
}
..sir there is some problm in dis program...kindly help..
anagha