amol kat

Greenhorn
+ Follow
since Dec 12, 2001
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 amol kat

though a lil below expectation, its not all that bad, i guess.
i couldnt get more than a couple of days off from work for the preparation and wat really helped me make the most of these days were the valentin, jiris.com and marcus green mock exams combined with the discussions here at this forum and the mughal book.
(didnt try any other mocks or books)
Thank you all the active greenhorns and bartenders.
Wht do you suggest i should take on next? wcd or just the developer?
Right now, i am into server side programming.
Thnx
amol
21 years ago
1. byte b = 10 ;
2. b = b + 2 ; //compile fails because type cast is required because b is first converted into an int and then 2 added to it and so the result is of type int and not byte. understood.
3. b += 2 ; //compile doesnt fail. why??
I thought "local inner class" is called a "local class" and inner class is always that top level thing which if is static is called a top-level nested class and if not static is called an inner class.
From Marcus Green's mock exam 2:
Which of the following statements are true?
1) Adding more classes via import statements will cause a performance overhead, only import classes you actually use.
2) Under no circumstances can a class be defined with the private modifier
3) A inner class may under some circumstances be defined with the protected modifier
4) An interface cannot be instantiated
I said 4.
Marcus Green says 3,4
Cant inner class be ALWAYS defined with the protected modifier??
Thnx in advance,
Amol
from a mock exam:
Before which of the following can the keyword "synchronized" be placed, without causing a compile error?
1. class methods
2. instance methods
3. any block of code within a method
4. variables
5. a class
I selected 1,2
But the right answer is: 1,2,3
I didnt select 3 because it would indeed give a compile error if the keyword "synchronized" is just placed before a block of code ( unless it precedes { object } )
How do we tackle such tricky questions? Any standard conventions?
I am worried about losing marks to such questions.
If 1,2,3 isthe right answer, they want me to assume the proper presence of "{ object }" after synchronized. How do i know when to assume things and when to not???
Thnx in advance,
Amol
Where can i find digial version of RHE?
pdf, html or any other format for that matter. I want it in some digital format which i can read on the computer -
Any idea?
Thnx in advance