1. A derived element is typically shown by placing either a slash (/) or a stereotype of <> before the name of the element.



Ask Your Doubts Here

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

Show Similar Question And Answers
QA->Slash and burn agriculture in North Eastern State is Known by which name?....
QA->‘Equality before law’ in India is derived from?....
QA->A name derived from father's name.....
QA->How is the frequency of ultrasound wave typically?....
QA->Which type of spurs is typically associated with valleyglaciers?....
MCQ->A derived element is typically shown by placing either a slash (/) or a stereotype of <> before the name of the element.....
MCQ->What will be the output of the following program? #include<iostream.h> class Base { int x, y; public: Base() { x = y = 0; } Base(int xx) { x = xx; } Base(int p, int q = 10) { x = p + q; y = q; } void Display(void) { cout<< x << " " << y << endl; } }objDefault(1, 1); class Derived: public Base { Base obj; public: Derived(int xx, int yy): Base(xx, xx + 1) { } Derived(Base objB = objDefault) { } }; int main() { Derived objD(5, 3); Derived ptrD = new Derived(objD); ptrD->Display(); delete ptrD; return 0; }....
MCQ->Which of the following statements is correct about the C#.NET program given below? namespace IndiabixConsoleApplication { class Baseclass { int i; public Baseclass(int ii) { i = ii; Console.Write("Base "); } } class Derived : Baseclass { public Derived(int ii) : base(ii) { Console.Write("Derived "); } } class MyProgram { static void Main(string[ ] args) { Derived d = new Derived(10); } } }....
MCQ->The current wave shape shown in figure (1) is applied to a circuit element. The voltage across the element is shown in figure (2). The element is ....
MCQ->If a base class and a derived class each include a member function with the same name, the member function of the derived class will be called by an object of the derived class....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use | Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions
Question ANSWER With Solution