can any one tell me how to learn good coding techniques
Answer Posted / afroz
By learning C Programming Language. You can learn lot of
coding techniques.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Describe responsibilities of Activator?
cud u help me ... i am struggling with this question... to find all the subsets of a given set for ex.... a,,b,c shud give all the subsets.... i gt the program in c bt nt able to get it in java..... help needed ..
When a thread blocks on i/o, what state does it enter?
A user of a web application sees a jsessionid argument in the URL whenever a resource is accessed. What does this mean? a. The form must have the field jsessionid b. URL rewriting is used as the session method c. Cookies are used for managing sessions
what is the use of State Factories?
What value does read() return when it has reached the end of a file?
Is the ternary operator written x : y ? Z or x ? Y : z ?
Describe, in general, how java's garbage collector works?
What are the different class loaders used by jvm?
When a thread blocks on i/o?
What is ioc concept & explain it?
What is the purpose of the notifyall() method?
What are various types of class loaders used by jvm?
What is threadfactory?
int x=5,i=1,y=0; while(i<=5) { y=x++ + ++x; i=i+2; } System.out.println(x); System.out.println(y); System.out.println(i); How to solve this? Please explain!