Page 1 of 1

Re: About Question enthuware.ocpjp.i.v11.2.3138 :

Posted: Mon Jun 15, 2020 11:59 am
by af1981
Hello,

I've bought the licence in June and I've donwloaded the file on 4th June but it is still like below. We're looking forward to reading an answer of yours. Thanks for your sypport. Have a good day and a good work.


Given the following module definitions:

module m${
requires n;
exports o;
}

module _n{
requires m$;
exports p;
}

Identify the correct statements.

Re: About Question enthuware.ocpjp.i.v11.2.3138 :

Posted: Mon Jun 15, 2020 12:07 pm
by af1981
Hello,
now I've just downloaded https://enthuware.com/downloads/1z0-815.ets and update it into my running folder but I can see like below. We're looking forward to reading an answer of yours. Thanks for your sypport. Have a good day and a good work.

Given the following module definitions:

module m${
requires n;
exports o;
}

module _n{
requires m$;
exports p;
}

Identify the correct statements.

Re: About Question enthuware.ocpjp.i.v11.2.3138 :

Posted: Mon Jun 15, 2020 12:10 pm
by admin
What you are seeing is correct. That is what it should be. So, I am not sure what is your question.
Paul.

Re: About Question enthuware.ocpjp.i.v11.2.3138 :

Posted: Wed Jun 17, 2020 5:30 am
by af1981
Is the correct declaration in this way, please?

module m${
requires _n;
exports o;
}

module _n{
requires m$;
exports p;
}

Now I can see in the question:

module m${
requires n; --> There is NOT "requires _n"
exports o;
}

module _n{
requires m$;
exports p;
}

Thanks for your support. Have a good day!

Re: About Question enthuware.ocpjp.i.v11.2.3138 :

Posted: Wed Jun 17, 2020 5:51 am
by admin
Oh right. You are absolutely correct. I was so focused on $m and m$ , I didn't notice n and _n issue. Sorry about that. Fixing it now.
thank you for your feedback!

Re: About Question enthuware.ocpjp.i.v11.2.3138 :

Posted: Thu Jul 09, 2020 9:13 pm
by dimitrilc
I tried every single special character on my US keyboard.

As opposed to what explanation in C states, dot and underscore are not valid.

Code: Select all

class . {}
     ^
1 error
error: compilation failed

Code: Select all

as of release 9, '_' is a keyword, and may not be used as an identifier
class _ {}
      ^
1 error
error: compilation failed
Can we conclude that the US dollar sign $ is the only valid special character if used as package,class or module name? As least for the US version of the test?

For example, the UK pound £ or Japanese Yen ¥ are also valid, but the Costa Rica colon ₡ or the Cuba peso ₱ are invalid.

Re: About Question enthuware.ocpjp.i.v11.2.3138 :

Posted: Fri Jul 10, 2020 12:51 am
by admin
Right, only $ is valid as far as this exam is concerned.