Computer Applications
In the example given below of class Cat, identify the variable and the methods:
| Cat |
| Name |
| meow() |
| eat() |
| play() |
Related Questions
Convert the following switch case into if else if:
switch(x) { case 'T' : case 't' : System.out.print("Teacher"); break; default : System.out.print("Student"); }Write the output of the following program segment:
for(int a = 1; a <= 10; a++) { if(a % 2 == 0) continue; System.out.print(a + " "); }Give the output of the following program segment and mention how many times the loop is executed.
int k = 100; while (k>=10) { System.out.println(k); k-=40; }Consider the given array and answer the questions given below:
int z[ ] [ ] = { {2, 3, 4}, {5, 1, 2}, {7, 9, 3}};(a) What is the order of the array z[ ][ ]?
(b) What is the value in z[2][0]?