Multiple choice How can the integer variable n be displayed in octal format in C++? cout<<oct(n); cout<<octal(n); cout<<n<<oct; cout<<oct<<n; Reveal answer Fill a bubble to check yourself D Correct answer Explanation To display the integer variable in octal format, we have to use the “oct” keyword between the cout and variable using << operator.