help with this ones

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • jacuna
    New Member
    • Sep 2006
    • 10

    help with this ones

    store class specifier _____________ is a recommendation to the compiler to store a variable in one of the computer registers

    a varible declared outside any blcock or function is a ____________ variable

    for a local variable in a ftuction to retain its value between calls to the function, it must be ceclared with the _____ storage class specifier

    the four pssible scopes of an identifier are __, ___, __, and _____

    a function that calls itself directly or indirectly (i,e, through another function) is a _____ function

    a recursive function typically has two components: one that provides a means for the recursion to terminate by testing for a ______ case and one that expresses the problem as a recursive call for a slghtly simpler problem than the original

    in C++, it is possible to have various functions with the same ame that operate on different types or number of arguments. This is called function _____

    the ________ enables access to a global variable with the same name as a variable in the current scope

    the _______qualifie r is used to declare read-only variables

    a function ______ enables a single function to be defined to perform a task on many different data types
  • AlekseyUS
    New Member
    • Sep 2006
    • 10

    #2
    llooks like homework, and that you should buy and read the book to both find abswers abd pass the class

    Comment

    • nikhilraj
      New Member
      • Sep 2006
      • 11

      #3
      Originally posted by jacuna
      store class specifier _____________ is a recommendation to the compiler to store a variable in one of the computer registersANS=re gister

      a varible declared outside any blcock or function is a ____________ variable(extern )

      for a local variable in a ftuction to retain its value between calls to the function, it must be ceclared with the _____ storage class specifier(stati c)

      the four pssible scopes of an identifier are __, ___, __, and _____(all the above ans along with auto)

      a function that calls itself directly or indirectly (i,e, through another function) is a _____ function(recurs ive)

      a recursive function typically has two components: one that provides a means for the recursion to terminate by testing for a ______ case and one that expresses the problem as a recursive call for a slghtly simpler problem than the original(we terminate the recursive funtion when the no of times it is called is equal to no of times the function is returned)

      in C++, it is possible to have various functions with the same ame that operate on different types or number of arguments. This is called function _____(overloade d funtion)

      the ________ enables access to a global variable with the same name as a variable in the current scope(extern guess so)

      the _______qualifie r is used to declare read-only variables

      a function ______ enables a single function to be defined to perform a task on many different data types


      The answers which i gave were correct upto mu knowledge and i donno the last two answers so couldnt answer them

      Comment

      Working...