This segment is equivalent to which of the following?
```
if (gender == 1) {
if (age >= 65) {
++seniorFemales;
}
}
```
a. if (gender == 1 || age >= 65) {
++seniorFemales;
}
b. if (gender == 1 && age >= 65) {
++seniorFemales;
}
c. if (gender == 1 AND age >= 65) {
++seniorFemales;
}
d. if (gender == 1 OR age >= 65) {
++seniorFemales;
}
b. if (gender == 1 && age >= 65) {
++seniorFemales;
}
You might also like to view...
Given the following pseudocode, what is the internal name used to work with the file on disk?
``` Declare String item Declare Integer numOrdered Declare InputFile stuffBought Open stuffBought "inventory.dat" Display "Your orders:" While NOT eof(stuffBought) Read stuffBought item, numOrdered Display item, ": " , numOrdered End While Close stuffBought ``` a. numOrdered b. item. c. stuffBought d. inventory.dat
In the say and think methods, the number for the ____ parameter refers to the point size of the text, but the actual size depends on the size of the window in which the world runs, as well as the computer's screen resolution.
A. textSize B. fontSize C. contentSize D. wordSize