Page 1 of 1

Tools can be used during the exam?

Posted: Thu Aug 03, 2023 9:52 am
by StefanoC
Sorry for the dumb question but I couldn't find an answer anywhere.
What tools can I use during the exam? More precisely, can I use pen and paper? (I want to do 1z0-819)
I may be stupid but I find it very difficult to answer a question like this, in one minute and without making mistakes, even the question is very simple, without being able to write notes somewhere...

Code: Select all

What will the following code print when compiled and run?

        int[][] ab = { {1, 2, 3}, {4, 5} };
        for(var i=0; i<ab.length; i++){
            for(var j=0; j<ab[i].length; j++){
                System.out.print(ab[i][j]+" ");
                if(ab[i][j] == 2){
                    break;
                }
            }
            continue;
        }

Re: Tools can be used during the exam?

Posted: Thu Aug 03, 2023 11:58 am
by admin
Unfortunately, no, you can't use physical pen and paper in the exam anymore. But the exam software does have a scratchpad, on which you can write notes or try to work out the answer.