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

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

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

Prepare Interview

모의 시험

홈페이지로 설정

이 페이지 북마크

이메일 주소 구독

C++ 면접 질문과 답변

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

관련 차이점

C vs C++Java vs C++

Ques 131. Is C an object-oriented language?


C is not an object-oriented language, but limited object-oriented programming can be done in C.

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

Ques 132. Name some major differences between C++ and Java.


C++ has pointers; Java does not. Java is platform-independent; C++ is not. Java has garbage collection; C++ does not. Java does have pointers. In fact all variables in Java are pointers. The difference is that Java does not allow you to manipulate the addresses of the pointer

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

Ques 133. What is the difference between Stack and Queue?


Stack is a Last In First Out (LIFO) data structure.
Queue is a First In First Out (FIFO) data structure

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

Ques 134. Write a fucntion that will reverse a string.


char *strrev(char *s)
{
int i = 0, len = strlen(s);
char *str;
if ((str = (char *)malloc(len+1)) == NULL)
/*cannot allocate memory */
err_num = 2;
return (str);
}
while(len)
str[i++]=s[?len];
str[i] = NULL;
return (str);
}

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

Ques 135. What is the software Life-Cycle?


The software Life-Cycle are
1) Analysis and specification of the task
2) Design of the algorithms and data structures
3) Implementation (coding)
4) Testing
5) Maintenance and evolution of the system
6) Obsolescence

도움이 되었나요? Add Comment View Comments
 
2) Name some major differences between C++ and Java. 3) What is the difference between Stack and Queue? 4) Write a fucntion that will reverse a string. 5) What is the software Life-Cycle? " />

Most helpful rated by users:

Copyright © 2026, WithoutBook.