Is multii level inheritance possible in java ? explain with example.
Developer Interview Questions
268,925 developer interview questions shared by candidates
Inheritance related. given two classes, A has public static void main() method. B extends A which is an empty class. what happens when we run B class
The programming questions were all series problems.
how to calculate size of integer without using sizeof function ?
When N=2800 as input... Print 1,4,49,121,169,361,529,841,1329,1681,1849 and count the numbers which have digit 9 and print the count.
Print 11,41,102, 196,325......
Do you have your own laptop ?
Which of the following program is a correct implementation of fizzbuzz program? FizzBuzz is a program that prints the integers from 0 to 99. But for multiples of three print “Fizz” instead of the number, and for the multiples of five print “Buzz”. For numbers which are multiples of both three and five print “FizzBuzz”. for(i = 0; i < 100; i++) { if(i % 3 == 0) printf("Fizz\n"); if(i % 5 == 0) printf("Buzz\n"); if(i % 15 == 0) printf("FizzBuzz\n"); else printf("%d\n", i); } for(i = 0; i < 100; i++) { if(i % 3 == 0) printf("Fizz\n"); else if(i % 5 == 0) printf("Buzz\n"); else if(i % 15 == 0) printf("FizzBuzz\n"); else printf("%d\n", i); } for(i = 0; i < 100; i++) { if(i % 15 == 0) printf("FizzBuzz\n"); else if(i % 5 == 0) printf("Buzz\n"); else if(i % 3 == 0) printf("Fizz\n"); else printf("%d\n", i); } for(i = 0; i < 100; i++) { if(i % 15 == 0) printf("FizzBuzz\n"); if(i % 5 == 0) printf("Buzz\n"); if(i % 3 == 0) printf("Fizz\n") else printf("%d\n", i); }
Will your parents allow you to come kolkata for job?
For what designation who have applied?
Viewing 651 - 660 interview questions