Question Detail What is getline() in c++ getline() extract the delimeter newline character from the input streamgetline() does not extract the delimeter newline character from the input streamNone of above Answer: Option A Similar Questions : 1. Constructor is A class automatically called whenever a new object of this class is createdA class automatically called whenever a new object of this class is destroyedA function automatically called whenever a new object of this class is createdA function automatically called whenever a new object of this class is destroyed Answer: Option C 2. How to define a destructor X~() {}X() {}~X() ~{}~X() {} Answer: Option D 3. ios::ate is used for Set the initial position at the start of the file Set the last position at the end of the fileSet the initial position at the end of the fileSet the last position at the start of the file Answer: Option C 4. Which operator is used to define a member of a class from outside the class definition ->::.>> Answer: Option B 5. Can #define accept parameters YesNo Answer: Option A Read more from - C++ Programming Questions Answers - Chapter 1