Find the error(s) in the following code (the method should assign the value 14 to vari- able result).

```
1 private void sum()
2 {
3 String number4 = "4";
4 int number10 = 10;
5
6 int result = number4 + number10;
7
8 } // end method sum
```


The error in the code is that number4 is of type String. Therefore, when line 6 is compiled an error will occur. This problem can be fixed by making number4 of type int.

```
1 private void sum()
2 {
3 int number4 = 4;
4 int number10 = 10;
5
6 int result = number4 + number10;
7
8 } // end method sum
```

Computer Science & Information Technology

You might also like to view...

This fiber is typically used with high-power, highly directional modulated light sources such as a laser.

What will be an ideal response?

Computer Science & Information Technology

To use an application icon for starting an application you should

A. double-click mouse right button B. click mouse left button C. double-click mouse left button D. click mouse right button

Computer Science & Information Technology

When the Squirrel peer-to-peer web caching service was evaluated by simulation, 4.11 hops were required on average to route a request for a cache entry when simulating the Redmond traffic, whereas only 1.8 were required for the Cambridge traffic. Explain this and show that it supports the theoretical performance claimed for Pastry.

What will be an ideal response?

Computer Science & Information Technology

Animations control how slides come onto the screen

Indicate whether the statement is true or false

Computer Science & Information Technology