• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

learnkey mock exam doubt

 
Ranch Hand
Posts: 817
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hii i have two queries...

1. The cd i got with K&B has learnkey 3 exam 2 mock exam and 1 master exam
pls tell me what the average score one must score to have good confidence in them..............when people say i.e above 90% are they talking of all the average of 3 or only master exam ?


2 in one of the question of mock exam

public class Test{
public static void main(String args[])
long [] [] a1;
long [] a2[];
a2=new long[3][];
a1=a2;
System.out.println(a1[1][0]);
}}

the answer is compiler errror ? why ?

i think it should be runtime error... i.e NullPointerException error ?

pls confirm
 
Ranch Hand
Posts: 287
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by amit taneja:
hii i have two queries...

1. The cd i got with K&B has learnkey 3 exam 2 mock exam and 1 master exam
pls tell me what the average score one must score to have good confidence in them..............when people say i.e above 90% are they talking of all the average of 3 or only master exam ?



how much condifence a person has on something is really depend on him/her self, and it really varies for each individuals, it shows you don't have confidence when you ask confidence related questions




2 in one of the question of mock exam

public class Test{
public static void main(String args[])
long [] [] a1;
long [] a2[];
a2=new long[3][];
a1=a2;
System.out.println(a1[1][0]);
}}

the answer is compiler errror ? why ?

i think it should be runtime error... i.e NullPointerException error ?

pls confirm



if you did not miss copying this code, then you should look at how many open and closing brackets it has
 
amit taneja
Ranch Hand
Posts: 817
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
why do ppl give mock exam ...just to get confidence regarding the exam ..and to learn new things...

if you ask others ...all will say that getting good marks in some mock exam will definetly increase their confidence in sitting in exam...
.......if you don't wana reply to the point better not answer adversly..



hope you understand...

regards,
amit
 
Ranch Hand
Posts: 98
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Only problem is the the main class with out the bracket '{'

If that condition is fulfilled then, it is compiles fine and throwing NullPointException
 
reply
    Bookmark Topic Watch Topic
  • New Topic