Vikash Verma

Vikash Verma

Member

Member since
Jun 18, 2012
Last active
Aug 27, 2012
Total activities
0

Activity feed

Recent contributions

  1. #Threads

    2ed5c115-c26d-4416-850d-33fe559fcf8a

    #-Link-Snipped-# , two main method with same signature can never exist in a java program, also it is the JVM which always...

  2. #Threads

    d49fd88a-51d0-4ae2-b9df-01f9c9702856

    #-Link-Snipped-# first of all, your program is syntactically wrong... the signature of main method must be one of the following...​public static void...

  3. #Threads

    120fbc24-09fd-4881-a700-5ee69500d05c

    in java, this is the prototype... returnType functionName(String string)

  4. #Threads

    32e8685a-2dd8-4a8f-b421-9f8788d496ab

    #-Link-Snipped-# you are right...😎

  5. #Threads

    c616c5de-2d6e-4acf-ba27-4bae848c23f5

    This is what my code is displaying...😎 C:\Users\VIK\Desktop>javac B.java C:\Users\VIK\Desktop>javap B Compiled from "B.java" class B extends java.lang.Object...

  6. #Threads

    81810a1e-5d81-4734-9294-9cb7ce200d84

    #-Link-Snipped-# you are right...😎

  7. #Threads

    205edc61-e0ac-41a2-83ad-68ba471ec34a

    I mean to find array length , we use arrayname.length . What is this length variable, where it is generated, is arrayname...

  8. #Threads

    what does length represents in the following code snippet: int a[]={10,20,30}; System.out.println(a

    sorry the last line of code is System.out.println(a.length); what exactly length is...😎

  9. #Threads

    d5c08ea9-6e68-4aba-9361-edc50d5e941a

    okay if what you have done doesn't work then try this... 1)copy path of your bin directory. 2)open path environment variable. 3)there...

  10. #Threads

    36545059-3447-4209-9e99-fc602a57f4dc

    #-Link-Snipped-# does it always happen that for each and every java program javap tool will display at least one constructor...😎

  11. #Threads

    fb5d3931-91e2-4eb2-bf26-2aab40927cf3

    declaring variables inside constructor has local scope inside constructor only and it doesn't initialize the values of data members,so default values will...

  12. #Threads

    feabc31c-7202-4e07-b72a-5aadfb5bdeb1

    You need to create clone of an object when you want to create a new object having same state as another existing...