가장 많이 묻는 면접 질문과 답변 & 온라인 테스트
면접 준비, 온라인 테스트, 튜토리얼, 라이브 연습을 위한 학습 플랫폼

집중 학습 경로, 모의고사, 면접 준비 콘텐츠로 실력을 키우세요.

WithoutBook은 주제별 면접 질문, 온라인 연습 테스트, 튜토리얼, 비교 가이드를 하나의 반응형 학습 공간으로 제공합니다.

Prepare Interview

모의 시험

홈페이지로 설정

이 페이지 북마크

이메일 주소 구독

C++ 면접 질문과 답변

Test your skills through the online practice test: C++ Quiz Online Practice Test

관련 차이점

C vs C++Java vs C++

Ques 116. What is polymorphism?


Polymorphism is the idea that a base class can be inherited by several classes. A base class pointer can point to its child class and a base class array can store different child class objects.

도움이 되었나요? Add Comment View Comments
 

Ques 117. How can you tell what shell you are running on UNIX system?

You can do the Echo $RANDOM. It will return a undefined variable if you are from the C-Shell, just a return prompt if you are from the Bourne shell, and a 5 digit random numbers if you are from the Korn shell. You could also do a ps -l and look for the shell with the highest PID.

도움이 되었나요? Add Comment View Comments
 

Ques 118. What is pure virtual function?


A class is made abstract by declaring one or more of its virtual functions to be pure. A pure virtual function is one with an initializer of = 0 in its declaration
 

도움이 되었나요? Add Comment View Comments
 

Ques 119. Write a Struct Time where integer m, h, s are its members


struct Time
{
int m;
int h;
int s;
};

도움이 되었나요? Add Comment View Comments
 

Ques 120. How do you traverse a Btree in Backward in-order?


Process the node in the right subtree
Process the root
Process the node in the left subtree

도움이 되었나요? Add Comment View Comments
 

3) What is pure virtual function? 4) Write a Struct Time where integer m, h, s are its members 5) How do you traverse a Btree in Backward in-order? " />

Most helpful rated by users:

Copyright © 2026, WithoutBook.