What is polymorphism? (C++)
Answers were Sorted based on User's Feedback
Answer / augustus
Polymorphism is the ability of a message to be written in
more than one form
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / achal ubbott
Literally Polymorphism means one thing taking different
forms. e.g. in Function overloading same function name can
be used to represent 2 different functions.
fun(int a);
fun(int a, int b);
Similarly Operator overloading is polymorphism.
| Is This Answer Correct ? | 1 Yes | 0 No |
What is hot electron effect?
what is Early effects and their physical origin.
What are the different design constraints occur in the synthesis phase?
Differences between D-Latch and D flip-flop?
17 Answers AIT, Intel, Sibridge Technologies,
what is charge sharing?
Factors affecting Power Consumption on a chip?
How can you model a SRAM at RTL Level?
Explain the concept of a Clock Divider Circuit? Write a VHDL code for the same?
What happens if we increase the number of contacts or via from one metal layer to the next?
If the current thru the poly is 20nA and the contact can take a max current of 10nA how would u overcome the problem?
How do you size NMOS and PMOS transistors to increase the threshold voltage?
Help with VHDL programming. Write a VHDL code for a D-Latch with clear input ?? (Hint: Set up a “Process” with appropriate sensitivity list to get the desired D-Latch with Clr working.) Inputs AND OUTPUTS: entity Lab4b is Port ( Clr, Clk, D : in STD_LOGIC; Q : out STD_LOGIC); end Lab4b;