Branka Kranjac

Greenhorn
+ Follow
since Mar 28, 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 Branka Kranjac

Thank you - I've opened account on the server side site and downloaded them. I had first edition of Mastering EJB, and this one is so outdated that I couldn't do anything. Why Java books are become obsolate so quickly?
I'm on my way...
Thanks!
21 years ago
Check this:
http://www.accis.edu/
They are in Alabama, but they are accredited, recognized by Department of Education etc. And not too expensive, like lot of them.
21 years ago
Hi, I'm trying to do similar thing - move to advanced JSP and start with EJB. It's complicated, so far I'm still struggling to understand difference between EJB and JavaBeans. Any good book to recommand? And what are you planing to use for development?
Branka
21 years ago
Hi, I've got call from recruiter yesterday. Somebody gave him list of questions, because probably they wanted to filter people out first. Position was for JSP/XML, but he asked me about creating and problems with Threads in Java, then about Collections - Hashmap and Vector, and should I try to put array into vector... That was confusing one
For XML, it was DOM and SAX, and which parser I used. And also how do I validate XML document.
For JSP - nothing, just what level I think I am. Lot of UML question.
I hope that will help somebody. It's my first call in a month since I'm looking for the job...
Branka
21 years ago
Best solution is to make them package visible - all classes in same package will share variables, but none outside of package.
Difference is that if something is public, every class can access/modify them. If you want to avoid problems that this can cause (and lot of problems can arise from that approach in large project), just make them package variables - public for all classes in same package, invisible to all the rest...
HTH.
21 years ago
Hi, just addition to knowledge pool:
String AND Boolean are overriden to compare content, other classes like StringBuffere, Byte etc are not, and they are doing "shallow comparasion" - compare references, not content.
So, only String and Boolean!
22 years ago
Hi, I think main problem is here:
while (++B<0)
; <--- that's why code below is executing - since System.out.println("LADY"); is not in {}, it will be printed anyway...
Try this:
while (++B<0)
{
System.out.println("LADY");
}

------------------
Branka
22 years ago