Declare variable sum of type int and initialize it to 0.
Write a Java statement to accomplish each of the tasks.
```
int sum = 0;
```
You might also like to view...
A customer is hosting their company website on a cluster of web servers that are behind a public-facing load balancer. The customer also uses Amazon Route 53 to manage their public DNS. How should the customer configure the DNS zone apex record to point to the load balancer?
A. Create an A record pointing to the IP address of the load balancer B. Create a CNAME record pointing to the load balancer DNS name. C. Create a CNAME record aliased to the load balancer DNS name. D. Create an A record aliased to the load balancer DNS name
The original program instructions entered into an editor is known as which of the following?
A. linker B. object code C. IDE D. source code