Computer Applications
Polymorphism is broadly used in implementing ……………
- inheritance
- encapsulation
- abstraction
- literals
OOP Intro Java
7 Likes
Answer
inheritance
Reason — Polymorphism is broadly used in implementing inheritance.
Answered By
4 Likes
Related Questions
Give the output of Math.sqrt(x); when x = 9.0.
- 3
- 3.0
- 3.00
- All of these
What will be the output of the following code?
String a[] = {"MI", "Samsung", "Micromax", "One Plus"}; System.out.println(a[3].length());- 8
- 7
- 5
- 9
Give the output of the following
switch (x) { case 'M' : System.out.print ("Microsoft Teams"); break; case 'G': System.out.print ("Google Meet"); default: System.out.print("Any Software"); break; case 'W': System.out.print("Web Ex"); break; }when x = 'g'
- Google Meet
- Any Software
- Google Meet
Any Software - Web Ex
Given array int Z[ ] = {15, 16, 17} ; it will occupy …………… bytes in memory.
- 3
- 12
- 24
- 64