Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


When a private constructer is being inherited from one
class to another class and when the object is instantiated
is the space reserved for this private variable in the
memory??

Answers were Sorted based on User's Feedback



When a private constructer is being inherited from one class to another class and when the object ..

Answer / vatsa

yes.

Is This Answer Correct ?    1 Yes 4 No

When a private constructer is being inherited from one class to another class and when the object ..

Answer / nk

constructors cannot be private.

Is This Answer Correct ?    2 Yes 5 No

When a private constructer is being inherited from one class to another class and when the object ..

Answer / varsha vilas kalebag

yes

Is This Answer Correct ?    1 Yes 6 No

Post New Answer

More OOPS Interview Questions

#include <string.h> #include <stdio.h> #include <stdlib.h> #include <conio.h> void select(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); select(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void select(char *items, int count) { register int a, b, c; int exchange; char t; for(a = 0; a < count-1; ++a) { exchange = 0; c = a; t = items[ a ]; for(b = a + 1; b < count; ++b) { if(items[ b ] < t) { c = b; t = items[ b ]; exchange = 1; } } if(exchange) { items[ c ] = items[ a ]; items[ a ] = t; } } } design an algorithm for Selection Sort

0 Answers  


What is abstraction in oop?

0 Answers  


what is the advantage in software? what is the difference between the software developer and Engineer

1 Answers  


design class for linked list and include constructor,destructor,insert option. struct node { int node; struct node &ptr; }

1 Answers   HSBC,


WHAT'S THE OOPS BASIC OOPS CONCEPTS IN DOTNET

1 Answers  


difference between class and object

10 Answers   Chandan, IBM, Magic Soft,


What is the benefit of oop?

0 Answers  


what is ltti

1 Answers   Unisys,


How to overload postfix operator in c++

1 Answers   Mphasis,


What is methods in oop?

0 Answers  


Write a program in c++ to read two floating point numbers and find their sum and average.

2 Answers  


Write a program to get the binary tree.

3 Answers   ABC,


Categories