QuestionQ199
Using Operators and Decision ConstructsGiven this code fragment:

Which three code fragments can each be independently inserted at line n1 so that the code prints One?
Choose three
- A byte x = 1;
- B short x = 1;
- C String x = "1";
- D long x = 1;
- E double x = 1;
- F Integer x = new Integer("1");
Community Discussion