Самые популярные вопросы и ответы для интервью и онлайн-тесты
Образовательная платформа для подготовки к интервью, онлайн-тестов, учебных материалов и живой практики

Развивайте навыки с целевыми маршрутами обучения, пробными тестами и контентом для подготовки к интервью.

WithoutBook объединяет вопросы для интервью по предметам, онлайн-практику, учебные материалы и сравнительные руководства в одном удобном учебном пространстве.

Подготовка к интервью

C++ вопросы и ответы для интервью

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

Связанные сравнения

C vs C++Java vs C++

Вопрос 36. What are 2 ways of exporting a function from a DLL?

1.Taking a reference to the function from the DLL instance.
2. Using the DLL ?s Type Library

Это полезно? Добавить комментарий Посмотреть комментарии
 

Вопрос 37. What is the difference between an object and a class?


Classes and objects are separate but related concepts. Every object belongs to a class and every class contains one or more related objects.
- A Class is static. All of the attributes of a class are fixed before, during, and after the execution of a program. The attributes of a class don't change.
- The class to which an object belongs is also (usually) static. If a particular object belongs to a certain class at the time that it is created then it almost certainly will still belong to that class right up until the time that it is destroyed.
- An Object on the other hand has a limited lifespan. Objects are created and eventually destroyed. Also during that lifetime, the attributes of the object may undergo significant change.

Это полезно? Добавить комментарий Посмотреть комментарии
 

Вопрос 38. Suppose that data is an array of 1000 integers. Write a single function call that will sort the 100 elements data [222] through data [321].


quicksort ((data + 222), 100);

Это полезно? Добавить комментарий Посмотреть комментарии
 

Вопрос 39. What is a class?


Class is a user-defined data type in C++. It can be created to solve a particular kind of problem. After creation the user need not know the specifics of the working of a class.

Это полезно? Добавить комментарий Посмотреть комментарии
 

Вопрос 40. What is friend function?


As the name suggests, the function acts as a friend to a class. As a friend of a class, it can access its private and protected members. A friend function is not a member of the class. But it must be listed in the class definition.

Это полезно? Добавить комментарий Посмотреть комментарии
 

2) What is the difference between an object and a class? 3) Suppose that data is an array of 1000 integers. Write a single function call that will sort the 100 elements data [222] through data [321]. 4) What is a class? 5) What is friend function? " />

Самое полезное по оценкам пользователей:

Авторские права © 2026, WithoutBook.