人気の面接質問と回答・オンラインテスト
面接対策、オンラインテスト、チュートリアル、ライブ練習のための学習プラットフォーム

集中型学習パス、模擬テスト、面接向けコンテンツでスキルを伸ばしましょう。

WithoutBook は、分野別の面接質問、オンライン練習テスト、チュートリアル、比較ガイドをひとつのレスポンシブな学習空間にまとめています。

面接準備

C++ 面接の質問と回答

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

関連する比較

C vs C++Java vs C++

質問 131. Is C an object-oriented language?


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

役に立ちましたか? コメントを追加 コメントを見る
 

質問 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

役に立ちましたか? コメントを追加 コメントを見る
 

質問 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

役に立ちましたか? コメントを追加 コメントを見る
 

質問 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);
}

役に立ちましたか? コメントを追加 コメントを見る
 

質問 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

役に立ちましたか? コメントを追加 コメントを見る
 
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? " />

ユーザー評価で最も役立つ内容:

著作権 © 2026、WithoutBook。