asked 235k views
0 votes
Whatever programming language you use will ultimately need to be translated into binary in order for the computer to understand it.

a. True
b. False

1 Answer

1 vote

Answer:

Javascript:

function translate(what) {

if (what) {

return 1;

} else if (!what) {

return 0;

}

}

translate(true);

Step-by-step explanation:

True is 1;

False is 0;

answered
User David Chouinard
by
8.6k points

No related questions found