C++ object-oriented questions

  1. What is a modifier? A modifier, also called a modifying function is a member function that
    changes the value of at least one data member. In other words, an
    operation that modifies the state of an object. Modifiers are also
    known as ‘mutators’. Example: The function mod is a modifier in the
    following code snippet:

    class test
    {
        int x,y;
        public:
        	test()
        	{
           		x=0; y=0;
        	}
    	void mod()
        	{
    	       x=10;
    	       y=15;
        	}
    };
    
  2. What is an accessor? An accessor is a class operation that
    does not modify the state of an object. The accessor functions need to
    be declared as const operations
  3. Differentiate between a template class and class template.
    Template class: A generic definition or a parameterized class not
    instantiated until the client provides the needed information. It’s
    jargon for plain templates. Class template: A class template specifies
    how individual classes can be constructed much like the way a class
    specifies how individual objects can be constructed. It’s jargon for
    plain classes.
  4. When does a name clash occur? A name clash occurs
    when a name is defined in more than one place. For example., two
    different class libraries could give two different classes the same
    name. If you try to use many class libraries at the same time, there is
    a fair chance that you will be unable to compile or link the program
    because of name clashes.
  5. Define namespace. It is a feature in C++ to
    minimize name collisions in the global name space. This namespace
    keyword assigns a distinct name to a library that allows other
    libraries to use the same identifier names without creating any name
    collisions. Furthermore, the compiler uses the namespace signature for
    differentiating the definitions.
  6. What is the use of ‘using’ declaration.
    A using declaration makes it possible to use a name from a namespace without the scope operator.
  7. What is an Iterator class? A class that is used to
    traverse through the objects maintained by a container class. There are
    five categories of iterators: input iterators, output iterators,
    forward iterators, bidirectional iterators, random access. An iterator
    is an entity that gives access to the contents of a container object
    without violating encapsulation constraints. Access to the contents is
    granted on a one-at-a-time basis in order. The order can be storage
    order (as in lists and queues) or some arbitrary order (as in array
    indices) or according to some ordering relation (as in an ordered
    binary tree). The iterator is a construct, which provides an interface
    that, when called, yields either the next element in the container, or
    some value denoting the fact that there are no more elements to
    examine. Iterators hide the details of access to and update of the
    elements of a container class.
    The simplest and safest iterators are those that permit read-only access to the contents of a container class.
  8. List out some of the OODBMS available. GEMSTONE/OPAL
    of Gemstone systems, ONTOS of Ontos, Objectivity of Objectivity Inc,
    Versant of Versant object technology, Object store of Object Design,
    ARDENT of ARDENT software, POET of POET software.
  9. List out some of the object-oriented methodologies. Object Oriented Development (OOD) (Booch 1991,1994), Object
    Oriented Analysis and Design (OOA/D) (Coad and Yourdon 1991), Object
    Modelling Techniques (OMT) (Rumbaugh 1991), Object Oriented Software
    Engineering (Objectory) (Jacobson 1992), Object Oriented Analysis (OOA)
    (Shlaer and Mellor 1992), The Fusion Method (Coleman 1991).
  10. What is an incomplete type? Incomplete types
    refers to pointers in which there is non availability of the
    implementation of the referenced location or it points to some location
    whose value is not available for modification.

    	int *i=0x400  // i points to address 400
    	*i=0;        //set the value of memory location pointed by i.
    

    Incomplete types are otherwise called uninitialized pointers.

  11. What is a dangling pointer?
    A dangling pointer arises when you use the address of an object after
    its lifetime is over. This may occur in situations like returning
    addresses of the automatic variables from a function or using the
    address of the memory block after it is freed. The following
    code snippet shows this:

    class Sample
    {
    public:
            int *ptr;
            Sample(int i)
            {
    	        ptr = new int(i);
            }
    
            ~Sample()
            {
    	        delete ptr;
            }
            void PrintVal()
            {
    	        cout << "The value is " << *ptr;
            }
    };
    
    void SomeFunc(Sample x)
    {
    	cout << "Say i am in someFunc " << endl;
    }
    
    int main()
    {
    	Sample s1 = 10;
    	SomeFunc(s1);
    	s1.PrintVal();
    }
    

    In the above example when PrintVal() function is
    called it is called by the pointer that has been freed by the
    destructor in SomeFunc.

  12. Differentiate between the message and method.
    Message:

    • Objects communicate by sending messages to each other.
    • A message is sent to invoke a method.

    Method

    • Provides response to a message.
    • It is an implementation of an operation.
  13. What is an adaptor class or Wrapper class?
    A class that has no functionality of its own. Its member functions hide
    the use of a third party software component or an object with the
    non-compatible interface or a non-object-oriented implementation.
  14. What is a Null object? It is an object of some
    class whose purpose is to indicate that a real object of that class
    does not exist. One common use for a null object is a return value from
    a member function that is supposed to return an object with some
    specified properties but cannot find such an object.
  15. What is class invariant? A class invariant is a
    condition that defines all valid states for an object. It is a logical
    condition to ensure the correct working of a class. Class invariants
    must hold when an object is created, and they must be preserved under
    all operations of the class. In particular all class invariants are
    both preconditions and post-conditions for all operations or member
    functions of the class.
  16. What do you mean by Stack unwinding? It is a
    process during exception handling when the destructor is called for all
    local objects between the place where the exception was thrown and
    where it is caught.
  17. Define precondition and post-condition to a member function.
    Precondition: A precondition is a condition that must be true on entry
    to a member function. A class is used correctly if preconditions are
    never false. An operation is not responsible for doing anything
    sensible if its precondition fails to hold. For example, the interface
    invariants of stack class say nothing about pushing yet another element
    on a stack that is already full. We say that isful() is a precondition
    of the push operation. Post-condition: A post-condition is a condition
    that must be true on exit from a member function if the precondition
    was valid on entry to that function. A class is implemented correctly
    if post-conditions are never false. For example, after pushing an
    element on the stack, we know that isempty() must necessarily hold.
    This is a post-condition of the push operation.
  18. What are the conditions that have to be met for a condition to be an invariant of the class?
    • The condition should hold at the end of every constructor.
    • The condition should hold at the end of every mutator (non-const) operation.
  19. What are proxy objects? Objects that stand for other objects are called proxy objects or surrogates.
    template <class t="">
    class Array2D
    {
    	public:
            class Array1D
            {
             public:
              T& operator[] (int index);
              const T& operator[] (int index)const;
            };
    
            Array1D operator[] (int index);
            const Array1D operator[] (int index) const;
    };
    

    The following then becomes legal:

    Array2D<float>data(10,20);
    cout<<data[3][6];     //  fine
    

    Here data[3] yields an Array1D object
    and the operator [] invocation on that object yields the float in
    position(3,6) of the original two dimensional array. Clients of the
    Array2D class need not be aware of the presence of the Array1D class.
    Objects of this latter class stand for one-dimensional array objects
    that, conceptually, do not exist for clients of Array2D. Such clients
    program as if they were using real, live, two-dimensional arrays. Each
    Array1D object stands for a one-dimensional array that is absent from a
    conceptual model used by the clients of Array2D. In the above example,
    Array1D is a proxy class. Its instances stand for one-dimensional
    arrays that, conceptually, do not exist.

  20. Name some pure object oriented languages. Smalltalk, Java, Eiffel, Sather.
  21. Name the operators that cannot be overloaded. sizeof, ., .*, .->, ::, ?: Salam in the comments notes that -> can be overloaded.
  22. What is a node class? A node class is a class that,
    • relies on the base class for services and implementation,
    • provides a wider interface to the users than its base class,
    • relies primarily on virtual functions in its public interface
    • depends on all its direct and indirect base class
    • can be understood only in the context of the base class
    • can be used as base for further derivation
    • can be used to create objects.

    A node class is a class that has added new services or functionality beyond the services inherited from its base class.

  23. What is an orthogonal base class?
    If two base classes have no overlapping methods or data they are said
    to be independent of, or orthogonal to each other. Orthogonal in the
    sense means that two classes operate in different dimensions and do not
    interfere with each other in any way. The same derived class may
    inherit such classes with no difficulty.
  24. What is a container class? What are the types of container classes?

    A container class is a class that is used to hold objects in memory or
    external storage. A container class acts as a generic holder. A
    container class has a predefined behavior and a well-known interface. A
    container class is a supporting class whose purpose is to hide the
    topology used for maintaining the list of objects in memory. When a
    container class contains a group of mixed objects, the container is
    called a heterogeneous container; when the container is holding a group
    of objects that are all the same, the container is called a homogeneous
    container.

This entry was posted in C++. Bookmark the permalink. Post a comment or leave a trackback: Trackback URL.

24 Comments on C++ object-oriented questions

  1. ashish kumar
    Posted 10/11/2004 at 1:42 am | Permalink

    The example that you are giving here is not correct as per my undertstanding.
    Reason. When you call SomeFunc method - you pass and object by value, So a local object is constructed which is bitwise copied from the object that we are passing.
    The destructor called is that of the local one and not the original
    one.
    Please correct it.

    regards
    ashish

    # What is a dangling pointer?
    A dangling pointer arises when you use the address of an object after
    its lifetime is over. This may occur in situations like returning
    addresses of the automatic variables from a function or using the
    address of the memory block after it is freed. The following
    code snippet shows this:

    class Sample
    {
    public:
    int *ptr;
    Sample(int i)
    {
    ptr = new int(i);
    }

    ~Sample() { delete ptr; } void PrintVal() { cout << “The value is ” << *ptr; } };

    void SomeFunc(Sample x) { cout << “Say i am in someFunc ” << endl; }

    int main() { Sample s1 = 10; SomeFunc(s1); s1.PrintVal(); }

    In the above example when PrintVal() function is
    called it is called by the pointer that has been freed by the
    destructor in SomeFunc.

  2. sarada
    Posted 10/12/2004 at 8:06 am | Permalink

    what is the difference between a null and null pointer?

  3. PRAKASH
    Posted 10/20/2004 at 12:22 pm | Permalink

    the questions are good but if had given an option to down load them it would be better.it is very useful

  4. Luther Woodrum
    Posted 10/22/2004 at 8:22 am | Permalink

    In #17, I would think that if a queue isful() that you cannot push another element to it, and after pushing an element onto the stack that isempty() would not be true. You have the conditions reversed.

  5. Umeshkumar
    Posted 11/1/2004 at 10:09 am | Permalink

    This site is very good for acquiring the knowledge on different subjects. Try to provide more questions on every subject.

  6. swapna vellani
    Posted 11/9/2004 at 8:56 am | Permalink

    In #20, Java is mentioned as pure OOL. I don’t think this is true. Because, for a language to be pure object oriented, all the datatypes should be objects and this is not true with the basic datatypes in java(int,char,etc)

  7. Terje
    Posted 11/18/2004 at 2:39 pm | Permalink

    “Differentiate between a template class and class template.
    Template class: A generic definition or a parameterized class not
    instantiated until the client provides the needed information. It’s
    jargon for plain templates. Class template: A class template specifies
    how individual classes can be constructed much like the way a class
    specifies how individual objects can be constructed. It’s jargon for
    plain classes.”

    This is directly in conflict with how these terms are used in the C++ standard: In fact, it’s the other way around: Class templates are templates (as a function templates), and template classes is basically a deprecated expression (almost gone from the 2003 C++ standard), and has been used both as a synonym for class template, and for classes made (instantiated) from templates, hence classes.

    To be interview questions, I think they should at least agree with the standard, and how today’s experts define the terms.

    The point about Java being pure OO has been mentioned, so I won’t reiterate that argument.

    “What is an incomplete type? Incomplete types
    refers to pointers in which there is non availability of the
    implementation of the referenced location or it points to some location
    whose value is not available for modification.

    int *i=0×400 // i points to address 400
    *i=0; //set the value of memory location pointed by i.
    Incomplete types are otherwise called uninitialized pointers.”

    This sounds really confused, and lead to criticism at the comp.lang.c++.moderated newsgroup. An incomplete type is unambiguously a type that hasn’t been completely defined, e.g.:

    class c;

    (”void” is also an incomplete type)

    It has nothing to do with pointers or initialisation.

  8. Jubda
    Posted 11/24/2004 at 3:40 am | Permalink

    Hi Anish,
    Regarding your comment. It is actually an error even if it is passed by value because, the pointer address is copied and not the value and it is destructed. so the address is still there pointing to nothing. Writing a copy contructor that does deep copy will avoid this.

  9. girish
    Posted 12/11/2004 at 8:42 am | Permalink

    why dont we have virtual constructor?require clear answere with some example?

  10. maheshwer
    Posted 12/12/2004 at 9:37 pm | Permalink

    class base
    {
    protected:
    int a;
    public:
    void get()
    {
    cout< <"enter values";
    cin>>a;
    }
    };
    class derived:public base
    {
    int b;
    public:
    void get(int x)
    {
    b=x;
    }
    };
    void main()
    {
    derived ob;
    ob.get();
    ob.get(9);
    }
    in this programm “funtion overloading” can’t possible in single inheritence so solve this problem

  11. Ranjit
    Posted 4/27/2005 at 12:16 am | Permalink

    class base
    {
    private :
    int a;
    public :
    void get()
    {
    cout>a;
    }
    class derived:public base
    {
    public :
    void display()
    {
    cout>i;
    }
    void display()
    {
    cout

  12. Amit
    Posted 6/7/2005 at 7:04 am | Permalink

    Why is sizeof an operator and not a function?

  13. Parvaiah Kale
    Posted 6/16/2005 at 5:35 am | Permalink

    Really this site is very useful for those who wants to prepare for jobs and to understand the the various technologies. I am wondering at the same time if project management questions and software development life cycle questions can be accomodated? any feedback on this?

    Thanks
    Parvaiah

  14. Rucha Neogi
    Posted 8/4/2005 at 1:02 am | Permalink

    1.Which of the following is not true about C++

    A. Code removable
    B. Encapsulation of data and code
    C. Program easy maintenance
    D. Program runs faster

    2 . For the following C program

    struct base {int a,b;
    base();
    int virtual function1();}

    struct derv1:base
    {int b,c,d;
    derv1()
    int virtual function1();}

    struct derv2 : base
    {int a,e;
    }
    base::base()
    {a=2;b=3;
    }
    derv1::derv1()
    {b=5;
    c=10;d=11;}
    base::function1()
    {return(100);
    }
    derv1::function1()
    {
    return(200);
    }

    main()
    base ba;
    derv1 d1,d2;
    printf(”%d %d”,d1.a,d1.b)

    Output of the program is:

    a) a=2;b=3;
    b) a=3; b=2;
    c) a=5; b=10;
    d) none

  15. Robert Hardy
    Posted 8/20/2005 at 5:52 pm | Permalink

    > 1.Which of the following is not true about C++

    > A. Code removable
    > B. Encapsulation of data and code

    > C. Program easy maintenance
    What is this relative to? Programs written in C++ are easy to maintain when compared to programs written in non-OO languages such as C. However compared to Java or C# programs, those written in C++ are difficult to maintain IMO.

    > D. Program runs faster
    Again, what is this relative to? C++ is probably the lowest-level language with OO support. Since it is so low-level it is likely that a program written using C++ will run faster than, for instance, programs written in Java. The speed benefits to be had from C++ would, in a small part, depend on the compiler used. However, the main contributing factor would be the use of polymorphism. Since, unlike other languages such as Java, C++ does not implicitly declare all methods virtual–the programmer is given the choice. This allows the programmer to be selective about how much dynamic binding is introduced into the running program thereby minimising unecessary overhead.

    This page has some good info: http://www.parashift.com/c++-faq-lite/virtual-functions.html

  16. bharath
    Posted 9/23/2006 at 2:34 pm | Permalink

    The technical questions presented on these site are very good and useful but every body giving a chance to comment on very question.I think it will be still better if anybody is there to correct the comments done on the questions so that people who read them will not misunderstand the concepts behind the therotical and programming part

  17. bharath
    Posted 9/23/2006 at 2:40 pm | Permalink

    can any help me to know what do you mean by structure padding

    thanks inadvance

  18. Posted 11/4/2006 at 2:07 pm | Permalink

    Structure padding is something that the compiler does in order to ensure that your data structures are aligned according to the CPU’s requirements. A char can usually be located anywhere in memory, but a 32-bit number is often supposed to be stored on a 32-bit boundary.

    When data is not stored at the preferred alignment, the CPU will either reject it (and throw an exception), or it might continue along, with a performance penalty.

    You can minimize or avoid structure padding issues by grouping members of the same size together. In other words, do not intersperse chars with ints and floats.

    For example, here is a grouping of members that’s going to result in lots of padding:

    char, int, char, float, char, int

    Each ‘int’ or ‘float’ needs to be stored on a 32-bit memory address (depending on your CPU), but in the example above, we keep interspersing ‘char’ members which forces the compiler to ‘pad’ the struct with some additional bytes so that the next int or float can be properly aligned.

    This would be a more optimal arrangement of members:

    int, int, float, char, char, char

    Here, we don’t have the chars mixed in, and the compiler does not have to insert padding to make the int and float members appear at the preferred addresses.

    To test this for yourself, make a struct or class and do a sizeof() on it. The sizes you get will be bigger than you expected when you have lots of mixed up sizes.

    Padding may be unavoidable, but it represents wasted memory.

    Unless it is incompatible in some way, you can minimize padding by promoting some of your chars to shorts, or shorts to ints, or even consider demoting some doubles to floats.

  19. Himmat Jadhav
    Posted 12/25/2006 at 2:38 am | Permalink

    How about initializing reference member of class?

    e.g.
    class sub
    {
    public:
    sub(){}
    ~sub(){}
    };

    class main
    {
    public:
    main(){}
    ~main(){}
    private:
    sub& m_oSub;
    };

    How do I initialize ‘m_oSub’ member of main class, using initialization list is fine but how e.g would be good?

    Thanks in advance,
    -Himmat

  20. Dex
    Posted 1/8/2007 at 1:52 am | Permalink

    Hi,

    why calling virtual Function inside a constructor is not advisable?

    Thanks in advance :)

  21. Sumanta
    Posted 2/26/2007 at 1:24 pm | Permalink

    Can anybody please clarify the difference between automatic and smart pointers?

    What are differences between shared_pointer and scoped_pointers ?

    Thanks in advance:)

  22. Joe
    Posted 10/26/2007 at 8:02 am | Permalink

    Question one is confusing, because the word ‘modifier’ also has another common meaning. In grammar, it can be used to refer to any adjective or adverb that modifies a noun or verb. Some examples of ‘modifiers’ in the C++ language are ‘const’, ’static’ and ‘mutable’.

  23. noch
    Posted 1/9/2008 at 12:49 pm | Permalink

    @Dex - using virtual inside a constructor isnt advisable because when you are using virtual inheritance, the function prefaced with virtual will be run. This may cause for an unwanted creation of an object.

    @Joe - modifier in the C++ tense means that it is a function that modifies the data of a class.

  24. Erich Liu
    Posted 7/2/2008 at 8:02 pm | Permalink

    Q11,
    Let me try to answer the question confusing ashish kumar.

    The sample here does not define a copy constructor in the class,therefore the compiler itself defines one. This will ensure a shallow copy, that means the two objects will share the same memory instead of allocating new memory. After the local variable be freed in the SomeFunc, that will cause dangling pointer of the original object.

    The good way to aviod the problem is to define your own copy constructor, that will ensure a deep copy, just like the following codes.

    Sample::Sample(const Sample &s)
    {
    ptr = new int(*(s.ptr));
    }

Post a Comment

Your email is never published nor shared. Required fields are marked *

*
*

tadalafil and mephedrone forum acquistare cialis in italia buy cialis generic viagra cialis cialis generic cialis feeling cialis acquista indian cialis cialis viagra vs cheap tadalafil from india tadalafil for high blood pressure cialis bathtub image buy canada cialis physician pharmaceutical samples cialis buy viagra cialis achat cialis cialis generika kaufen liquid cialis generic generic professional cialis order cialis cod regalis cialis tadalafil tadalafil versus sildenafil tadalafil ic levitra cialis viagra comparison inexpensive cialis 20 mg cialis and side effects of fatigue cialis overnight treatment of pulmonary hypertension in dogs using cialis cialis pills taladafil cialis uses comprare cialis in farmacia cialis generico online buy cialis online now comprare cialis in svizzera is there a generic cialis tadalafil and mephedrone buying generic cialis erections with cialis purchasing online generic cialis tadalafil tadalafil alternative 5mg cialis samples cialis g�.nstig is levitra better than cialis cheap tadalafil t large quanity 30mg tadalafil brand name buy soft cialis cialis levitra vs tadalafil forumdrugs ccrx pay for cialis annuaires des sites d emploie sp cialis cialis substitute cialis oralgel cialis 20 mg prices .video clips cialis v levitra tadalafil cheap canadian pharmacy cialis rezeptfrei kaufen ambrisentan tadalafil metroprolol combines with cialis safe? how much cialis to take generic cialis soft online is there a generic for cialis comperare cialis cialis online fruit tadalafil can't get off with cialis tadalafil manufacturers how to take cialis benefits of cialis cialis and zenerx cialis + nasonex cialis tadalafil work cialis femme cheap cialis generic comprare cialis generico cheap tadalafil canada generics macular degeneration cialis cialis tadalafil uk cialis oder viagra viagra vs cialis cialis 20mg generica cialis cheap cialis sale online cheap cialis tadalafil cialis from india online tadalafil dosage 'taking viagra and cialis together' cialis 20 mg can you take cialis and viagra together? cialis best prices tadalafil best price bulk levitra versus cialis viagra sildenafil cialis tadalafil dosage use cialis ingredients cheap tadalafil from middle east large quanity 30mg tadaga cialis phirst-1: tadalafil how does cialis work is cialis better than viagra generic cialis review cialis super active bayer cialis compare cialis viagra levitra tadalafil novi mumbai cialis effetti collaterali high dose of cialis tadalafil relative benefits adverse reactions of cialis cialis results review cheap cialis professional cialis works cialis fast delivery cialis without prescription cialis ricetta medica cialis daily use review buy cialis with discover card cialis basso dosaggio cialis samples cialis and enlarged prostate cialis 5 mg online cialis online description chemistry ingredients tadalafil tadalafil citrate 30mg ml 60ml 1800mg total tadalafil citrate where to go in amsterdam to buy cialis can i exercise when using cialis buying viagra assist cheap cialis cialis pills tadalafil mumbai cialis cheap canada cialis cheapest online prices cialis kauf cialis tadalafil 20 mg cialis prevent heart disease cheap generic cialis cialis vs. levitra female cialis review cialis floaters cialis buy online buy cialis soft tabs cheap cialis comment viagra buy generic cialis online cialis grzegorz marczak molestuje dzieci price of tadalafil generic viagra versus tadalafil cialis vente en ligne tadalafil blood pressure buy brand name cialis best time to take cialis cialis american express cialis low dose cialis commercial cialis -vs- viagra tadalafil test results taking viagra and cialis cialis costi can niacin be taken with cialis cialis acheter online pharmacy cialis tadalafil dosing tadalafil citrate senafi cialis assunzione cialis 2.5 mg muscle sore cialis spotting fake cialis cialis levitra viagra cialis headache cialis erection cialis picture 20 cialis mg tadalafil 10mg cialis daily dose cialis for sale new meds like tadalafil but better and lasts longer cialis en ligne compare ed medicines cialis and levitra comprar cialis internet cialis ohne rezept buy daily cialis cialis and marijuana viagra and cialis taken together best cialis price cialis discussion boards cheap cialis online cialis from european online drugstores cialis generique cialis soft gels free generic cialis cialis im internet cialis achat cialis vs viagara cialis sin receta medica cialis generic tadalafil best price compare low dose cialis cheap strength tadalafil t liquid cialis cialis flomax interaction cheap cialis tadalafil cialis from india online vidrgne cialis purchase cialis in british columbia brand cialis for sale cheap cialis si cialis soft tabs tadalafil natural how to increase the potency of cialis cialis without priction tadalafil generic cialis without a prescription cialis generika order cialis online drug administration food and hit bg cialis generic purchase what is using cialis like cialis in pattaya cost of cialis cialis in usa tadalafil erfahrungsberichte tadalafil sublingual cialis and fertility newspaper coupon for free cialis super active cialis what insurance formulaies list tadalafil cialis g�.nstig kaufen can cialis work against lorazepam? cialis alcohol generic tadalafil online cialis uk suppliers cialis pill description what does cialis look like domestic tadalafil tadalafil 40 mg buy cialis on saipan cialis o viagra how long does it take cialis to work mixing lorazepam and cialis tadalafil paypal non prescription cialis viagra cialis is it legal to order tadalafil from canada cialis cheap canadian pharmacy cialis from net drugstore cialis bathtub order cialis online no prescription cialis 5 mg tadalafil tastes like what cialis precautions cialis barata cialis cheap no prescription buy generic cialis 5mg online buy tadalafil 20 online comprar tadalafil cialis comprimidos cialis overnight shipping cheap cialis online canada child ingests cialis how does one order cialis online comparing cialis and viagra cialis for sale genuine cialis tadalafil order cialis from an online pharmacy when will cialis patent expire tadalafil natural substitute side affects of cialis free samples of cialis buy cialis no online prescription tadalafil producers lowcost cialis cialis 20mg tablet order cialis without prescription cod cialis versus viagra discount cialis buy generic cialis theusdrugs canadia rx drugs cialis take cialis and viagra together cialis headache relief buy cialis no prescription smallest effective doze of tadalafil cialis reaction how can i take cialis generic cialis 10mg cialis assuefazione cialis sample tadalafil 'what is it like to take tadalafil' cialis a roma cialis free sample what does cialis and viagra do? cialis tadalafil tadalis viagra cialis free sample ed pill store your ho off-label use tadalafil cialis consumer reviews generic generic viagra tadalafil buy cialis o female cialis viagra versus cialis cialis canada generic 10mg no prescription cialis for daily use cialis e alcol 20mg professional cialis cialis fast order generic cialis cialis dose viagra vs cialis vs levitra cialis vs viagra vs levitra overnight cialis is cialis available in generic viagra and cialis cialis bugiardino buy tadalafil tadalafil tablets 20mg sls tadalafil cialis vs viagra cialis legal take cabergoline and cialis together how to get cialis cialis on line order how much does tadalafil cost cialis 5mg daily price buy cialis with bonus viagra tadalafil & cardiotoxicity cialis 5mg cialis store online why the bathtubs in the cialis commercials? cheap large quantities of tadalafil cialis 5 mg prices cialis canada how cialis works tadalafil consumer comments buy cialis domain effects of cialis and peyronie's disease cialis gout cialis online uk cialis lawyer ohio tadalafil cialis viagra which is better more effective? buy cialis online canada cialis costs tadalafil 10 1 x tadalafil 20mg - 4's $19.95 cialis better than viagra buy cialis cialis and levitra cialis comparison viagra generic cialis e10 cialis and heart problems tadalafil strips genaric cialis cheap cialis generic levitra viagra lowest price generic cialis no perscription cat 6 cialis cialis news lilly icos llc cialis professional tadalafil dosage drug forum cialis canada generic cialis generic safety cialis dosage splitting pills get tadalafil cialis buy online cheap tadalafil cialis ambien cialis for men generic viagra levitra generic cialis pills cialis site cialis contains tadalafil cialis nebenwirkung cialis patent acquistare cialis originale who invented tadalafil drug screening for cialis average cost of tadalafil prescription cheapest generic cialis uk cialis kaufen cialis interaction with blood pressure lowering drugs cialis professional chemistry metroprolo combined with cialis cialis side effects cialis cost mint tadalafil cialis informacion en espanol cialis on line cialis compare 5mg cialis cialis online tadalafil and dopamine cialis 50mg cialis tadalafil reviews cooper pharma tadalafil 20 mg cialis buy cheap tadalafil tadalafil no prescription cialis frau cialis viagra soft tabs 10 mg cialis cialis 20 mg price tadalafil best price cialis brand online cialis next day cialis perscriptions tadalafil forum 5mg cialis generic cialis and viagra and what if i take both at the same time cialis columbus injury lawyer phirst-1: tadalafil in the treatment of pulmonary art cheap cialis no prescription required my insurance only pays for 3 cialis tadalafil oral jelly canadian pharmacies online cialis cialis cheap canada buy cialis online viagra cialis contains tadalafil side effects of cialis buy cialis from an anline pharmacy otc medicine with tadalafil free trial offer of cialis cialis comparison levitra viagra buy tadalafil india order cialis cialis barato cialis and women cialis rezeptfrei cialis effets secondaires is generic cialis real cialis raynaud's fingers vasodilators active ingredient in cialis cialis walmart pricing new jersey tadalafil canadian pharmacy cialis generique achat cialis dosierung generic cialis soft tabs 20mg cialis mastercard viagra cialis levitra cialis blue cross blue shield pay cialis for women generic cialis soft how does cialis compare to viagra cialis and lisinopril buy tadalafil capsules generic cialis viagra bargain cialis cialis canadian pharmacy cialis versus levitra when to take cialis cocaine with cialis compare viagra cialis tadalafil makers free cialis samples cialis bladder spasms cialis on-line tadalafil 40mg cialis message board buying cialis online discount tadalafil price of cialis cialis 20 mg purchase tadalafil cheap cialis tadalafil for pulmonary hypertension tadalafil ic-351 - 25 mg ml cialis pro online tadalafil cialis voucher review cialis professional cialis compared to viagra results of cialis and viagra difference between cialis and levitra tadalafil india brands does cialis work cialis to buy new zealand cialis 20mg non-generic how fast does cialis daily work taking cialis after expiration date dayly cialis cialis capsules cialis 10 mg tadalafil cialis from india tamsulosin tadalafil combination cialis non generic from canada cialis dosing instructions cialis tadalafil 20mg compare cialis 10 mg cialis online discount viagra cialis cialis story cialis splitting the pill who makes cialis cialis advertisement cialis free trial pack cialis and tinnitus canada cialis cialis generico forum cialis comment info personal remember cialis professional tadalafil navi mumbai cialis tadalafil side effects cialis and ace inhibitors generic versus genuine cialis tadalafil viagra alternatives cialis daily erections per cialis daily use cialis advers reactions cialis clock daily cialis cialis blindness cialis brand buy online cialis price history on line cialis delivered to ireland cialis effetti indesiderati cialis and diabetes cialis overnight shipping john morris cialis add purchase cialis online comprar cialis sin receta doses of cialis cialis forum cialis drug impotence tadalafil and prices cialis sample pack cialis vs viagra number of erections cialis free trial tadalafil effect aerobic activity acquistare cialis senza ricetta cialis injury lawyer columbus tadalafil online pharmacy cialis on line italia pattaya fake cialis anti cialis impotence 5 mg cialis cialis price cialis soft cialis work for women? cialis tadalafil in cialis for high blood pressure cialis and grapefruit juice cheap generic cialis tadalafil cialis half life cialis and poppers cialis tadalafil under tongue dissolve how to make cialis work faster generic cialis tadalafil canadian pharmacy for cialis cialis free samples 3.99 cialis n order tadalafil cooper pharma cheapest place to buy cialis generic tadalafil cheap cialis 20mg tadalafil prices keywords cialis tadalafil cialis pill pictures paypal cialis cialis 20 mg prices eye problems associated with taking cialis cialis online free overnight delivery cialis doses cipla effectiveness tadalafil next day cialis can i use cialis after expiration date cialis dangers cialis buy cialis purchase cialis lawyer columbus how does cialis work? cialis kaufen online buy cialis without a prescription can women use cialis what is the cost of cialis buy cialis usa tadalafil off label uses 5mg cialis generic low cost cialis cialis best price cialis purchase decreasing effects of raynaud's with cialis viagra or cialis canada cialis generic buy cialis doctor online cialis onset canadian pharm cialis cialis packaged as tadalafil soft gels tadalafil cheapest discount generic cialis tadalafil trip to nogales smallest effective dose of tadalafil buy 5mg cialis cialis advice cialis compresse cialis online kaufen soft cialis what is tadalafil does viagra contain tadalafil cialis generico 10 mg mexican cialis tadalafil pro best price for tadalafil 6viagra levitra cialis apcalis regalis zenegra cialis pill tadalafil capsules women taking tadalafil cialis bathtub couple cialis and hep c cialis efectos secundarios 36 hour cialis tadalafil without prescription ambrisentan tadalafil ambition cialis consumer comments buy cialis food and by the hit bg tadalafil soft 20mg tabs cialis drug description tadalafil healthscout liquid research chemicals tadalafil viagra cialis i will donate my cialis tadalafil professional beta blockers combined with cialis safe? cialis us pharmacy cialis 5mg once a day enhanced cialis cialis in canada genuine tadalafil cialis generico cialis overnight delivery cialis and caduet interaction cialis from india tadalafil 'does cialis or viagra get you harder' cialis and multiple orgasms in men cialis blue cross blue shield rxlist cialis tadalafil cialis in jamaica no prescription cialis por internet what is the generic name for cialis cialis sur le net compare cialis levitra viagra india generic cialis ceebis tadalafil cialis viagria levitra cheap cialis pharmacy online what is in cialis cialis dosing cialis cupons cialis pricing low dose tadalafil refractory cialis cialis or viagra fake cialis low price cialis lawrence walter tadalafil cialis lilly icos cialis order cialis lawyers cialis viagra levitra samples dosage for cialis cialis drug cialis prescrizione cialis discounts buy tadalafil cialis online research chemicals cialis acheter cialis free trial viagra cialis levitra achat cialis viagra over the counter cialis medicine4you pharma pvt ltd tadalafil cialis discount 20mg cialis versus 2.5mg cialis no prescription cialis order cialis online cialis professional canadian canada which is better cialis or viagra cialis 5 mg for sale exceed viagra and cialis legally buy cialis on line 4 generic cialis softtabs home made cialis does of cialis 20 cialis mg tadalafil sublingual tadalafil tadalafil buy discover cialis pharmacy how often can you take cialis viagra cialis extra cialis uk online cialis effects cialis reviews canadian pharmancy cialis cialis generico comprar cialis eli lilly order cialis online lowest prices for cialis tadalafil 20 mg 10mg call cialis refills manila pharmacy cialis cialis and professional cheap viagra cialis levitra macleods cialis mail order cialis cialis younger women one a day cialis generic cialis tadalafil php canadian cialis levitra vs cialis cheapest viagra cialis cheap cialis no prescription cialis online order brand cialis name cialis levitra online viagra non prescription tadalafil cialis 20mg for sale is tadalafil a nootropics buy cialis online 'how cialis works' cialis testimonials cialis pills taste like chalk buy tadalafil online cialis vs. viagra directions for using tadalafil cheapest candaian online pharmacy to buy tadalafil cialis does not work anymore cialis mexico cialis and grapefruit overnight cialis tadalafil buy cialis generic buy cialis cheap cooper pharma tadalafil tablets cialis ad cialis levitra sales viagra cialis results cialis coupon cialis india tadalafil soft tabs cialis and woman cialis - details cialis macular degeneration can you take viagra while taking cialis 24-hr. wikipedia cialis cialis bodybuilding cheapest generic drug store for tadalafil cialis contraindications cialis cialis genuinerx net viagra viagra cialis pilss in canada cialis day next cialis pictures of tadalafil cialis verkauf buy cialis without prescription is cialis or levitra better cialis hong kong christ god unhappy cialis discount canadian cialis cialis and fatigue buy cialis soft cautions using cialis republica dominicana tadalafil what do you take cialis 20mg cialis free shipping tadalafil for sale cheap cialis tadalafil treat generic cialis best price cialis cialis discount best buy cialis cialis acquisto cialis from india cheapest secure delivery cialis uk is a prescription needed for tadalafil tadalafil liquid real cialis test buy cialis online in usa cialis pills cialis canada cheap achat cialis generique cialis en france contraindications tadalafil viagra cialis online sales buy canada cialis lowest price cialis cialis for sale cialis and blood pressure medication cialis online no prescription cheap cialis 20 mg 60 pills buy cialis online cialis vs tadalafil generic cialis with no prescription cialis daily information cialis price with insurance cheap tadalafil in quanity cialis tablets buy cheap generic cialis tadalafil usa walgreen price for cialis tadalafil 5mg generic cialis ansia da prestazione generic for cialis acheter cialis original cialis daily mixing viagra and cialis addicted to cialis is cialis stronger than viagra acquistare cialis 30mg cialis generic cialis non prescription generac cialis cialis experiences order cialis online pro cialis cialis discount generic cialis comments cgi generic mt tadalafil tadalafil tadalafil testes cipla cialis tadalafil cheap in large amounts 30 to 40 mg. cialis daily 5 mg tablet wholsale cialis viagra levitra cialis chemistry cheapest cialis online canadian pharmacy cialis generic cialis overnight tadalafil prescription needed in canada?? cialis rezeptfrei aus deutschland need cialis shipped overnight cialis release news cialis shipped from canada fda approval tadalafil nicotinic acid with cialis side effect buy tadalafil in kowloon 91 olds cialis side marker lens farmacia nogales cialis cialis manufacturer 5mg tadalafil without perscription tadalafil substitutes multiple erections per cialis daily use cialis 10mg- compare prices cialis periapsis cialis generico paypal cialis blilig kaufen side effects of tadalafil tadalafil sale cialis 40 mg tadalafil from india cialis -plurisy -pain cialis use what insurance formularies list tadalafil what are the side effects of cialis does cialis increase my size cialis tips cialis online canada cialis store cialis useage cialis alternative cialis order cialis effectiveness hearing loss from using cialis viagra cialis levitra cialis in the uk tadalafil forum drugs tadalafil uk free postage cheap generic drugs viagra cialis levitra does cialis always work the first time lyrics for cialis commercial buy cialis uk cialis user forum cialis experience cialis 20 vs cialis 20 professional genuine cialis cheapest generic india tadalafil generic cialis online a href purchase cialis cialis 10mg cialis for heart health is tadalafil on sale in the usa generic cialis online cialis for high blood pressure? venta de tadalafil can i double the dose of daily use cialis cialis moment viagra and cialis side effects 5 tadalafil cialis tadalafil buy discover generic india 20 10 buy daily tadalafil cialis generic levitra review viagra what is the differance in tadalafil and sildenafil ace inhibitor cialis who invented cialis tadalafil cialis from india comprar cialis generico buy cialis online without prescription cialis generika forum where to buy cialis is generic cialis safe when should you take cialis venta de cialis tadalafil for daily use cialis prezzi re viagra cialis levitra comprare cialis does tadalafil occur in nature cialis compare levitra cheap cialis tadalafil 20 mg cialis performance cialis generic online cialis and high blood pressure free sample cialis generic cialis canada cialis fast delivery cialis prices levitra e cialis medicine4you pharma pvt ltd mumbai tadalafil cialis generika rezeptfrei cialis prescription tadalafil no rx generic tadalafil cialis tv commercial tadalafil 20mg atrial fibrillation and cialis buy generic viagra cialis herbal cialis buy cialis with paypal cialis large dose order cialis without perscription how well does tadalafil work? cialis da 5 mg non perscription cialis cialis daily use faq best free cialis softtabs online cialis info white finger disease cialis research cialis tadalafil beter dan viagra generic tadalafil best price cialis senza ricetta where can you buy cialis in negril? online cialis medicine4you tadalafil cialis contrassegno cialis commercials generic cialis from india tadalafil and lisinopril drug interactions 5 mg tadalafil pills can cialis be used for muscle building cialis online discount generic cialis and viagra combo buy cialis online without a prescription cialis dysfunction erectile levitra viagra tadalafil cheap from india and europe cialis generica tadalafil by post in uk tadalafil tablets cialis online paypal female cialis cheap the truth about cialis cialis pharmacy kowloon viagra cialis a vendre parwanoo hp manufacturing tadalafil cialis lowest price cialis back pain cialis attorneys cialis canada cialis viagra powerpack cialis cheap bath tubs and cialis cialis costo cialis tadalafil uk generic cialis reviews cialis order australia order cialis no prescription tadalafil india when does cialis patent lapse cialis levitra comparison cialis farmacia online cialis pill cutter discount cialis levitra viagra buy-best-k cialis -rsgdba cialis bathtubs low price tadalafil by what mechanism does cialis cause stomach pain ? acheter cialis en france comprar cialis generico en espa�.a acquistare cialis generico tadalafil what isit tadalafil vs vardenafil what insurance formularies list daily tadalafil tadalafil cialis vs viagra e 10 + tadalafil cialis 20mg toronto tadalafil 2.5mg and 5mg once a day ranbaxy tadalafil cialis comparisons cialis 20 mg tadalafil euphoria testimonials + cialis cialis acquisto on line cialis 20 5 mg tadalafil cialis and pomegranate interaction best generic cialis avodart cialis clomid diflucan dostinex gluco bbs inkjet printer cialis cialis super inthe uk cialis commenti tadalafil effects cialis e ipertensione cialis and trimix cialis tadalafil tadalis buying cialis tadalafil for hypertension cialis and alcohol cialis compare levitra viagra cialis generic tadalafil cialis and niacin tadalafil natural herb can woman take cialis can i take 10 mg of cialis 2 days in a row cipla tadalafil cialis us order cialis 5 mg coupon cialis soft order side effects if gernic cialis rapid tabs instant cialis cialis tadalafil 4 pack overnight cialis viagra best way to use cialis tadalafil vs viagra tadalafil chemical compound compare viagra and cialis cialis review best price for cialis uprima cialis viagra tadalafil use in pah french inventor of tadalafil buy cheap cialis generic cialis double cialis professional indian generic cialis professional cialis + levitra cheap cialis pill buy online tadalafil brand name cialis for sale buy cialis today alchohol and cialis tadalafil soft 20mg cialis online buy cialis analog how to use cialis order cialis from an anline pharmacy cialis 40 mg cialis 20mg tadalafil prices cialis taken with viagra cialis - long term side affects blood in urine with cialis cialis coupons cheap strength tadalafil t large quanity 30mg buy cialis professional best way to take tadalafil buy online levitra cialis viagra cialis online pharmacy cialis 20mg 60pills cheap cialis 20mg comprare cialis in italia cialis vs viagra cialis generico mexico herbal alternative to cialis comprar cialis outdated cialis what is it like to use cialis brian stackhouse cialis cialis ads experience with cialis cialis canadian tadalafil online men reviews of cialis cialis online free trial buy cialis online no prescription cialis and ruptured blood vessel in eye purchase cialis purchase tadalafil canada tadalafil cheap maximum effectiveness cialis cialis how fast cialis comprar cialis generic uk cialis confezione cialis prices at true pharmacies eating bananas taking cialis cialis mg dosage tadalafil generic viagra cialis levitra cheap cialis con receta fda tadalafil approval cialis vs levitra 5mg cialis cialis and pacemaker cialis billig 50mg cialis cheapest price for cialis buy cialis soft online cialis medication achat cialis en france cialis rezeptfrei europa cialis sin receta cialis and payment by insurance cialis for woman generic cialis from online pharmacies problems levitra cialis high doses of cialis results of cialis generic prescription cialis drug availability buy cheap cialis buy tadalafil cialis and citris cialis from canda cheap cialis viagra cialis dosage men that use cialis photos free cialis axio lab cialis sale tadalafil uk pharmacy cialis sans prescription cheapest cialis generic cialis buy cheap cheap cialis tadalafil 20 mg comprar cialis online lady cialis cialis scams cialis compra best soft cialis cialis search buy tadalafil cialis cialis advertisements tadalafil over counter buy discount cialis cheap tadalafil from overseas countries .video clips when using cialis tadalafil softsules where to order cialis online cialis order uk fruit flavored tadalafil cialis precio cialis uk chemist tadalafil achalasia cialis injury attorney columbus buy cialis professional online 20mg cialis find best price on cialis from u.s. drug stores cialis prezzo inexpensive cialis cialis alternatives discount price for cialis cialis daily use raynaud's with cialis online cialis purchase cialis injection photo where to buy tadalafil in hong kong forzest tadalafil cialis pictures tadalafil pill identification bathtub scene in cialis commercials viagra vs. cialis cialis and levitra ventajas desventajas chinese cialis compare viagra to cialis effect on women taking tadalafil buy cialis online in canada cialis soft online tadalafil nogales cialis dosages cialis uk tadalafil spier tadalafil 20mg tadalafil weekender cialis non generic buy tadalafil in hong kong viagra vs levitra vs cialis cialis preis cialis kosten brand cialis cialis paypal cialis side effects cialis after expiration date cialis brand prices cialis making liquid cialis cheap tadalafil very cheap cialis bulk cialis cialis online india blog approval cialis received use before and after cialis cialis overdose contraindications and information tadalafil acheter cialis generique side effects cialis best and safest buy cialis without prescr[ption cheap cialis tadalafil where to buy viagra cialis sosua cialis beijing cialis pay paypal cialis paypal tadalafil sale online viagra cialis daily use cialis tadalafil welfil 20 generic soft cialis cialis softtabs cialis composizione generic viagra levitra cialis cialis professional india history of tadalafil how to contact cialis tadalafil citrate cialis one a day daily tadalafil snl cialis cialis consultation delivery discount health man canadian discount pharmicies viagra cialis buy cialis tips and tricks for using cialis cialis femenino cheepest cialis genuine cialis 5mg buy cialis online levitra cialis viagra what medical plans pay for cialis medication where to find cialis without a prescription what to expect from cialis 10mg cialis white finger disease cialis canada cialis index buy cialis by the pill food to avoid while taking cialis cialis 5 mg online canada what is tadalafil 20mg tadalafil discount cialis no prescription cialis dosage amounts buy name brand cialis cialis pharmacy is cialis a blood thinner? generic cialis india cialis from india tadalafil cialis tadalafil cialis vietnam cheapest cialis prices buy cialis brand tadalafil sx sales tadalafil how well does it work sildenafil cialis generico cialis and viagra tadalafil for the treatment of raynaud's cialis official website generic cialis information cialis from canada generic cialis fedex tadalafil directions tadalafil for sale tadalafil medicine4you pharmacy cialis cheapest place online to buy tadalafil tadalafil comments tadalafil price in nogales selges cialis name brand cialis tadalafil tablet tamsulosin tadalafil interaction how long does cialis last cialis and viagra together viagra cialis generica what is cialis tadalafil is more better generic cialis uk natural cialis cialis e alcool by cialis online canada cialis tadalafil cialis half pill cialis online generic cialis soft comparison affects using cialis cheapest tadalafil discounted cialis tadalafil 20 mg cialis and online prescription free cialis sample cialis one a day cost cialis femenina cialis drug interactions tadalafil 50mg canadian pharmacy cialis cialis levitra viagra online cialis nebenwirkungen how fast does cialis 5mg once a day work buying cialis in uk cialis comparison levitra b cialis b cialis per donne tadalafil india brads tadalafil on line cheap cialis with overnight shipping generic form of cialis cialis levitra non prescription generic cialis cialis impotence drug eli lilly co tadalafil or cialis generic cialis no perscription tadalafil cialis india discount daily cialis cialis tablet what is the point of the bathtub in the cialis commercials cialis buy it online huge discount cialis injection video cialis shelf life best place to buy tadalafil order cialis without prescription cialis for order cialis 5mg cialis overnight delivery cialis usa cialis overdose buy cialis viagra buy cialis proffessional online buy cialis tadalafil buy cialis in the uk research prevention raynaud's white finger cialis research cialis information once cialis didn't work should i worry cialis cocaine cialis vs viagra pharmacology cheaper viagra levitra cialis use of cialis in women tadalafil raven cialis benefits how to decide viagra vs. cialis 10 mg cialis tadalafil from india] effect of cialis on women tadalafil 20 cialis canadian epharmacy