You forgot to print out the value of totalquestions. Its value controls what solutions element answer is compared against.
If answer can have a null value then it is an object and you should use a method to compare it, not the == operator.
You have this same print out several places. How do you know which one printed?
System.out.println("Score: "+Score);
Add something to different to each String to make each unique:
System.out.println("1 Score: "+Score);
when posting code Please wrap your code with
[code=java]
<YOUR CODE HERE>
[/code]
to get highlighting and preserve formatting.