[algogeeks] Re: answer these interesting questions

2011-09-08 Thread Anas Hadi
Solution to 3rd question: Charles: 1st True. 2nd False Bobby : 1st True, 2nd False Amar:1st False, 2nd True Hence Bobby is the chief -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this group, send email to

[algogeeks] Re: Answer this !!

2011-08-18 Thread sarath prasath
2.. On Aug 18, 11:31 pm, jestincobol nair jestinco...@gmail.com wrote: In (typical) object-oriented programming languages which one of the following can be done by a subclass (derived class) of class *C*? 1. Remove methods defined in *C* 2. Define instance variables (data members) not

Re: [algogeeks] Re: Answer this !!

2011-08-18 Thread siddharth srivastava
2 On 19 August 2011 00:25, sarath prasath prasathsar...@gmail.com wrote: 2.. On Aug 18, 11:31 pm, jestincobol nair jestinco...@gmail.com wrote: In (typical) object-oriented programming languages which one of the following can be done by a subclass (derived class) of class *C*? 1.

Re: [algogeeks] Re: Answer this !!

2011-08-18 Thread priya ramesh
it can remove methods defined in base class as well?? By overriding a virtual base class func?? -- You received this message because you are subscribed to the Google Groups Algorithm Geeks group. To post to this group, send email to algogeeks@googlegroups.com. To unsubscribe from this group,

Re: [algogeeks] Re: Answer this !!

2011-08-18 Thread siddharth srivastava
On 19 August 2011 00:31, priya ramesh love.for.programm...@gmail.comwrote: it can remove methods defined in base class as well?? By overriding a virtual base class func?? I don't think that overriding is considered as removing the function from base class -- You received this message

Re: [algogeeks] Re: Answer this !!

2011-08-18 Thread Dipankar Patro
Overriding doesn't remove the function. It just changes the function definition. So 2 will be the answer. On 19 August 2011 00:33, siddharth srivastava akssps...@gmail.com wrote: On 19 August 2011 00:31, priya ramesh love.for.programm...@gmail.comwrote: it can remove methods defined in

Re: [algogeeks] Re: Answer this !!

2011-08-18 Thread Dheeraj Sharma
override is not removal..u can still call the base variables and functions.. 2 would be the answer i gues.. On Fri, Aug 19, 2011 at 8:34 AM, Dipankar Patro dip10c...@gmail.com wrote: Overriding doesn't remove the function. It just changes the function definition. So 2 will be the answer.