Write a method called lyrics that prints the lyrics of a song when invoked. The method should accept no parameters and return no value.

What will be an ideal response?

```
public void lyrics()
{
System.out.println("The itsy bitsy spider");
System.out.println("Went up the waterspout.");
System.out.println("Down came the rain and");
System.out.println("Washed the spider out.");
System.out.println("Out came the sun and");
System.out.println("Dried up all the rain.");
System.out.println("So the itsy bitsy spider");
System.out.println("Went up the spout again.");
}

```

Computer Science & Information Technology

You might also like to view...

In the AddRoundKey transformation the 128 bits of State are bitwise XORed with the _________ of the round key.

A. 64 bits B. 128 bits C. 256 bits D. 512 bits

Computer Science & Information Technology

According to the Banker's Algorithm, an unsafe state always leads to deadlock.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology