I have an interview tomorrow morning and just found out that I will also be taking an hour-long Java proficiency test!
I am a certified C# .NET developer but have barely touched Java since college. (Yes, I am thinking about switching from .NET development to Java!)
I'm not going to be able to effectively cram the whole of the Java library by tomorrow morning. What are some key ideas that I should study that might actually make a difference in such a short time frame? (The examiners will be taking into account that I have had little exposure to Java.)
Thanks!
Edit NOTE: I think that the exam is going to be written, so no specific IDE.
Maybe you have time enough to take a look at this article. You probably won't need to read all of it, just the key points.
I would emphasize some differences:
ref
and out
parametersusing
keywordIn Java syntax you have to explicitly define getters and setters For example:
public int getX() { return x; } public void setX(int x) { this.x = x; }
Java has no goto
IDK about you but I never try to fluff my skills. You know what you know and you don't know much about Java. As you said, they should know this and should take this into account.
I personally try to find a job that fits my skills so I can continue to grow them. If you always try to sway your skills to a job listing that you've found, well, you'll be doing that for the rest of your life!
As for java stuff, C# very similar as you know, just remember you cant do
string a = "aa";
string b = "cc";
if (a == b)
{}
you have to do something like
if (b.isEqualTo(a))
{}
or someting like that (cant remember)
I supose that could be helpful: Tech Interviews - Java
It's a really nice collection of java connected job interviews questions with answers divided into different categories. You can check your situation quickly!
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With