Home / C++ Programming / References :: General Questions

C++ Programming :: References

  1. Which of the following statements is correct?

    1. Once the variable and the reference are linked they are tied together.
    2. Once the reference of a variable is declared another reference of that variable is not allowed.

  2. A.
    Only 1 is correct.
    B.
    Only 2 is correct.
    C.
    Both 1 and 2 are correct.
    D.
    Both 1 and 2 are incorrect.

    View Answer

    Workspace

    Discuss Discuss in Forum


  3. Which of the following statements is correct?

    1. We can return a global variable by reference.
    2. We cannot return a local variable by reference.

  4. A.
    Only 1 is correct.
    B.
    Only 2 is correct.
    C.
    Both 1 and 2 are correct.
    D.
    Both 1 and 2 are incorrect.

    View Answer

    Workspace

    Discuss Discuss in Forum


  5. Reference is like a _____.

  6. A.
    Pointer
    B.
    Structure
    C.
    Macro
    D.
    Enum

    View Answer

    Workspace

    Discuss Discuss in Forum


  7. Which of the following statement is correct?

  8. A.
    A reference is a constant pointer.
    B.
    A reference is not a constant pointer.
    C.
    An array of references is acceptable.
    D.
    It is possible to create a reference to a reference.

    View Answer

    Workspace

    Discuss Discuss in Forum


  9. Which of the following statement is correct?

  10. A.
    A reference is declared using * operator.
    B.
    Once a reference variable has been defined to refer to a particular variable it can refer to any other variable.
    C.
    A reference must always be initialized within classes.
    D.
    A variable can have multiple references.

    View Answer

    Workspace

    Discuss Discuss in Forum


  11. Which of the following statement is correct?

  12. A.
    An array of references is acceptable.
    B.
    Once a reference variable has been defined to refer to a particular variable it can refer to any other variable.
    C.
    An array of references is not acceptable.
    D.
    Reference is like a structure.

    View Answer

    Workspace

    Discuss Discuss in Forum


  13. Which of the following statements is correct?

    1. Pointer to a reference and reference to a pointer both are valid.
    2. When we use reference, we are actually referring to a referent.

  14. A.
    Only 1 is correct.
    B.
    Only 2 is correct.
    C.
    Both 1 and 2 are correct.
    D.
    Both 1 and 2 are incorrect.

    View Answer

    Workspace

    Discuss Discuss in Forum