Problem

Write your problem in comment with your name

11 comments:

  1. 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

    ReplyDelete
  2. hello sir...
    please add those progrmms in the blog.....
    have a nice day....
    gaurav babbar

    ReplyDelete
  3. full description of motherboard chart

    ReplyDelete
  4. 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.

    ReplyDelete
  5. What 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.

    ReplyDelete
  6. Akshay Arora said...
    What 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

    ReplyDelete
  7. hello sir..
    the credit folder is empty...
    gaurav babbar

    ReplyDelete
  8. hello sir..
    kindly upload a simple n complete program of array...dis book is nt helping dat much...so plz sir..

    ReplyDelete
  9. Go to program and open folder you will get simple program

    ReplyDelete
  10. ok...thanks sir....i will try dis out...

    anagha

    ReplyDelete
  11. import java.io.*;
    public 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

    ReplyDelete