How many and what kind of variables (primitive or object) are created in the code below?
```
> double cost = 19.20; // cost is a primitive variable
> double percentOff = 0.4; // percentOff is a primitive variable
> double salePrice = cost * (1.0 - percentOff); // salePrice is a primitive variable
```
This creates 3 primitive variables.
Computer Science & Information Technology
You might also like to view...
A blinking vertical bar on the screen that indicates the current location of the mouse pointer on the screen is a(n) ________
Fill in the blank(s) with correct word
Computer Science & Information Technology
SecOps focuses on integrating the need for the development team to provide iterative andrapid improvements to system functionality and the need for the operations team to improvesecurity and minimize the disruption from software release cycles. _________________________
Answer the following statement true (T) or false (F)
Computer Science & Information Technology