1. A name derived from father's name.

Answer: Patronymic

Reply

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

Comments

Tags
Show Similar Question And Answers
QA->A name derived from father's name.....
QA->The name Idukki has been derived from....
QA->World Bank economist who derived Lorenzo’s Oil to treat his son, died on October 24, 2013?....
QA->Human rights are derived from:....
QA->The term bank is derived from 'banco'; from ?....
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->A father and his son are waiting at a bus stop in the evening. There is a lamp post behind them. The lamp post, the father and his son stand on the same straight line. The father observes that the shadows of his head and his son's head are incident at the same point on the ground. If the heights of the lamp post, the father and his son are 6 metres, 1.8 metres and 0.9 metres respectively, and the father is standing 2.1 metres away from the post then how far (in metres) is son standing form his father?...
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...
MCQ->Which of the following is correct about the C#.NET snippet given below? namespace IndiabixConsoleApplication { class Baseclass { public void fun() { Console.WriteLine("Hi" + " "); } public void fun(int i) { Console.Write("Hello" + " "); } } class Derived: Baseclass { public void fun() { Console.Write("Bye" + " "); } } class MyProgram { static void Main(string[ ] args) { Derived d; d = new Derived(); d.fun(); d.fun(77); } } }...
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
DMCA.com Protection Status Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions