anamika sharma

Greenhorn
+ Follow
since Oct 31, 2000
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by anamika sharma

This topic has really confused me.And has wasted lots of my precious time.My exam is on 16th.And i just find myself nowhere with this topic.Please help me.How can i master this topis.Please advise me.
This topic has really confused me.And has wasted lots of my precious time.My exam is on 16th.And i just find myself nowhere with this topic.Please help me.How can i master this topis.Please advise me.
22 years ago
THANX!!! Rajdev
Anamika
Can anybody give me the list of IO constructors.In RHE there are
so many given.I am getting confused and ending up learning nothing.Please help :-(!!!
The following code will give
1: class Test
2: {
3: static void show()
4: {
5: System.out.println("Static method in Test");
6: }
7: }
8: public class Q4 extends Test
9: {
10: void show()
11: {
12: System.out.println("Overridden static method in Q4");
13: }
14: public static void main(String[] args)
15: {
16: }
17: }A) Compilation error at line 3.
B) Compilation error at line 10.
C) No compilation error, but runtime exception at line 3.
D) No compilation error, but runtime exception at line 10.
Answer: B
But when i copied and pasted it and tried to run there was no compilation err. but runtime error
Help me!!