Explanation:
Following are the difference between overriding and overloading
(1) Method overloading means method having same name but different parameter or method signature Whereas Method overriding means method having same name and same parameter or signature.
(2) Method overloading is achieved the compile time Polymorphism whereas Method overriding is achieved the Run time Polymorphism .
(3 ) In method overriding child class have facility to provide a specific implementation of a method which is already defined by parent class method whereas there is no such facility is available in method overloading
(4 )Programming structure of method overloading
class test
{
void fun()
{
// statement
}
void fun(int b)
{
// statement
}
}
In this fun() method name is same but different signature I.e void fun() and void fun(int a);
Programming structure of method overriding
class parent
{
void fun()
{
// statement in parent class
}
}
class child extends test
{
void fun()
{
// override the statement in child class
}
}
In this fun() method have same name and same signature in both class
Answer:
run the code to see where the error is
Explanation:
Answer:
formula bar shows the contents of the current cell and allows you to create and view the formulas
Answer:
(c) UCA
Explanation:
mRNA is a type of RNA it is also called messenger RNA it has temporary copy of information which is found in DNA. If the particular triplet of bases in the coding sequence of DNA is AGT then corresponding codon for RNA will be UCA which is given in option
so from above discussion it is clear that (C)will be the correct answer
Answer:
Software Engineering.
Explanation:
Software engineering :- It is the branch of engineering which mainly focuses on the development,design and maintenance of the software.
It also deals with the developing the tools,theories ,methodologies supporting software production.
It is one of the most popular branches of engineering nowadays and also software engineers are one of the highly paid employees in a company.