-
-
-
-
-
-
Call the method to presentation layer
If there is a class library called numbers and method add num.How will you call the method to presentation layer?
-
-
-
-
Floating Point Numbers
Why in c++ (0.1 + 0.1) is not equal to 0.2 ??
Access the members of child class
How is that we can make a parent class to access the members of child class?
Partial class
where do you use partial class ? Explain with real time scenario of the usage ?
What is the output of this code?
if(condition)
{
printf("hello");
}
else
{
printf("world");
}
Java SUPER
Is SUPER a keyword or method? Explain Why?
What types of diagrams are generally created while designing an use case / functionality ?
Most frequently used diagrams are- Class Diagram- Sequence DiagramRarely Used- Component Diagram- Package DiagramClass Diagram A diagram that shows a collection of declarative (static) model elements, such as classes, types and their content and relationshipSequence describes an interaction by focusing on the sequence of messages that are e
Friend Function Overload
Why friend function cannot be used to overload the assignment operator?
Ans