热门面试题与答案和在线测试
面向面试准备、在线测试、教程与实战练习的学习平台

通过聚焦学习路径、模拟测试和面试实战内容持续提升技能。

WithoutBook 将分主题面试题、在线练习测试、教程和对比指南整合到一个响应式学习空间中。

面试准备

模拟考试

设为首页

收藏此页面

订阅邮箱地址

C++ 面试题与答案

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

相关差异对比

C vs C++Java vs C++

问题 16. What are the advantages of inheritance?


? It permits code reusability.
? Reusability saves time in program development.
? It encourages the reuse of proven and debugged high-quality software, thus reducing problem after a system becomes functional.

这有帮助吗? 添加评论 查看评论
 

问题 17. What is the difference between declaration and definition?


The declaration tells the compiler that at some later point we plan to present the definition of this declaration.
E.g.: void stars () //function declaration
The definition contains the actual implementation.
E.g.: void stars () // declarator
{
for(int j=10; j>=0; j--) //function body
cout<<?*?;
cout<<endl; }

这有帮助吗? 添加评论 查看评论
 

问题 18. What is the difference between an ARRAY and a LIST?

Answer1
Array is collection of homogeneous elements.
List is collection of heterogeneous elements.

For Array memory allocated is static and continuous.
For List memory allocated is dynamic and Random.

Array: User need not have to keep in track of next memory allocation.
List: User has to keep in Track of next location where memory is allocated.

Answer2
Array uses direct access of stored members, list uses sequencial access for members.

//With Array you have direct access to memory position 5
Object x = a[5]; // x takes directly a reference to 5th element of array

//With the list you have to cross all previous nodes in order to get the 5th node:
list mylist;
list::iterator it;

for( it = list.begin() ; it != list.end() ; it++ )
{
if( i==5)
{
x = *it;
break;
}
i++;
}

这有帮助吗? 添加评论 查看评论
 

问题 19. Does c++ support multilevel and multiple inheritance?


Yes.

这有帮助吗? 添加评论 查看评论
 

问题 20. What is a template?


Templates allow to create generic functions that admit any data type as parameters and return value without having to overload the function with all the possible data types. Until certain point they fulfill the functionality of a macro. Its prototype is any of the two following ones:


template <class indetifier> function_declaration; template <typename indetifier> function_declaration;
The only difference between both prototypes is the use of keyword class or typename, its use is indistinct since both expressions have exactly the same meaning and behave exactly the same way.

这有帮助吗? 添加评论 查看评论
 

4) Does c++ support multilevel and multiple inheritance? 5) What is a template? " />

用户评价最有帮助的内容:

版权所有 © 2026,WithoutBook。