Your Ad Here
Showing posts with label cpp. Show all posts
Showing posts with label cpp. Show all posts
0

What is the difference between class and structure?

Posted by The Blogger on 8:25 AM in
Answer:

Structure: Initially (in C) a structure was used to bundle different type of data types together to perform a particular functionality. But C++ extended the structure to contain functions also. The major difference is that all declarations inside a structure are by default public.
Class: Class is a successor of Structure. By default all the members inside the class are private.


interview questions and answers, interview question What is the difference between class and structure, What is the difference between class and structure

0

Define a constructor - What it is and how it might be called?

Posted by The Blogger on 8:24 AM in
Answer1
constructor is a member function of the class, with the name of the function being the same as the class name. It also specifies how the object should be initialized.

Ways of calling constructor:
1) Implicitly: automatically by complier when an object is created.
2) Calling the constructors explicitly is possible, but it makes the code unverifiable.

Answer2
class Point2D{
int x; int y;
public Point2D() : x(0) , y(0) {} //default (no argument) constructor
};

main(){

Point2D MyPoint; // Implicit Constructor call. In order to allocate memory on stack, the default constructor is implicitly called.

Point2D * pPoint = new Point2D(); // Explicit Constructor call. In order to allocate memory on HEAP we call the default constructor.



interview questions and answers, interview question Define a constructor - What it is and how it might be called, Define a constructor - What it is and how it might be called

0

What are the advantages of inheritance?

Posted by The Blogger on 8:23 AM in
Answer:

• 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.


interview questions and answers, interview question What are the advantages of inheritance, What are the advantages of inheritance

0

What is virtual constructors/destructors?

Posted by The Blogger on 8:22 AM in
Answer1

Virtual destructors:
If an object (with a non-virtual destructor) is destroyed explicitly by applying the delete operator to a base-class pointer to the object, the base-class destructor function (matching the pointer type) is called on the object.
There is a simple solution to this problem declare a virtual base-class destructor.
This makes all derived-class destructors virtual even though they don’t have the same name as the base-class destructor. Now, if the object in the hierarchy is destroyed explicitly by applying the delete operator to a base-class pointer to a derived-class object, the destructor for the appropriate class is called. Virtual constructor: Constructors cannot be virtual. Declaring a constructor as a virtual function is a syntax error.


Answer2

Virtual destructors: If an object (with a non-virtual destructor) is destroyed explicitly by applying the delete operator to a base-class pointer to the object, the base-class destructor function (matching the pointer type) is called on the object.
There is a simple solution to this problem – declare a virtual base-class destructor. This makes all derived-class destructors virtual even though they don’t have the same name as the base-class destructor. Now, if the object in the hierarchy is destroyed explicitly by applying the delete operator to a base-class pointer to a derived-class object, the destructor for the appropriate class is called.



interview questions and answers, interview question What is virtual constructors/destructors, What is virtual constructors/destructors, constructors, destructor

0

What is public, protected, private?

Posted by The Blogger on 8:20 AM in
Answer:

Public, protected and private are three access specifier in C++.
Public data members and member functions are accessible outside the class.
Protected data members and member functions are only available to derived classes.
Private data members and member functions can’t be accessed outside the class. However there is an exception can be using friend classes.
Write a function that swaps the values of two integers, using int* as the argument type.
void swap(int* a, int*b) {
int t;
t = *a;
*a = *b;
*b = t;
}


interview questions and answers, interview question What is public, protected, private, What is public, protected, private, public private protected cpp

0

What do you mean by inline function?

Posted by The Blogger on 8:19 AM in
Answer:

The idea behind inline functions is to insert the code of a called function at the point where the function is called. If done carefully, this can improve the application's performance in exchange for increased compile time and possibly (but not always) an increase in the size of the generated binary executables.


interview questions and answers, interview question What do you mean by inline function, What do you mean by inline function

0

How do you write a function that can reverse a linked-list?

Posted by The Blogger on 8:18 AM in
Answer:

void reverselist(void)
{
if(head==0)
return;
if(head->next==0)
return;
if(head->next==tail)
{
head->next = 0;
tail->next = head;
}
else
{
node* pre = head;
node* cur = head->next;
node* curnext = cur->next;
head->next = 0;
cur-> next = head;

for(; curnext!=0; )
{
cur->next = pre;
pre = cur;
cur = curnext;
curnext = curnext->next;
}

curnext->next = cur;
}
}



interview questions and answers, interview question How do you write a function that can reverse a linked-list, How do you write a function that can reverse a linked-list, reverse a linked list, linked list

0

What is the difference between declaration and definition?

Posted by The Blogger on 8:17 AM in
Answer:

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; }


interview questions and answers, interview What is the difference between declaration and definition, What is the difference between declaration and definition, declaration and definition

0

What is function overloading and operator overloading?

Posted by The Blogger on 8:16 AM in
Answer:

Function overloading: C++ enables several functions of the same name to be defined, as long as these functions have different sets of parameters (at least as far as their types are concerned). This capability is called function overloading. When an overloaded function is called, the C++ compiler selects the proper function by examining the number, types and order of the arguments in the call. Function overloading is commonly used to create several functions of the same name that perform similar tasks but on different data types.
Operator overloading allows existing C++ operators to be redefined so that they work on objects of user-defined classes. Overloaded operators are syntactic sugar for equivalent function calls. They form a pleasant facade that doesn't add anything fundamental to the language (but they can improve understandability and reduce maintenance costs).


tags: interview questions and answers, interview question What is function overloading and operator overloading, What is function overloading and operator overloading

0

What is the difference between realloc() and free()?

Posted by The Blogger on 8:15 AM in
Answer:

The free subroutine frees a block of memory previously allocated by the malloc subroutine. Undefined results occur if the Pointer parameter is not a valid pointer. If the Pointer parameter is a null value, no action will occur. The realloc subroutine changes the size of the block of memory pointed to by the Pointer parameter to the number of bytes specified by the Size parameter and returns a new pointer to the block. The pointer specified by the Pointer parameter must have been created with the malloc, calloc, or realloc subroutines and not been deallocated with the free or realloc subroutines. Undefined results occur if the Pointer parameter is not a valid pointer.

tags:interview questions and answers, interview questions What is the difference between realloc() and free(), What is the difference between realloc() and free()

0

What is C++?

Posted by The Blogger on 8:08 AM in
Released in 1985, C++ is an object-oriented programming language created by Bjarne Stroustrup. C++ maintains almost all aspects of the C language, while simplifying memory management and adding several features - including a new datatype known as a class (you will learn more about these later) - to allow object-oriented programming. C++ maintains the features of C which allowed for low-level memory access but also gives the programmer new tools to simplify memory management.

C++ used for:

C++ is a powerful general-purpose programming language. It can be used to create small programs or large applications. It can be used to make CGI scripts or console-only DOS programs. C++ allows you to create programs to do almost anything you need to do. The creator of C++, Bjarne Stroustrup, has put together a partial list of applications written in C++.


interview questions and answers, interview question what is C++ cpp cpluspluss, what is c++ cpp cplusplus

0

What is page thrashing ?

Posted by The Blogger on 9:33 AM in ,
Answer:

Some operating systems (such as UNIX or Windows in enhanced mode) use virtual memory. Virtual memory is a technique for making a machine behave as if it had more memory than it really has, by using disk space to simulate RAM (random-access memory).

In the 80386 and higher Intel CPU chips, and in most other modern microprocessors (such as the Motorola 68030, Sparc, and Power PC), exists a piece of hardware called the Memory Management Unit, or MMU.

The MMU treats memory as if it were composed of a series of pages. A page of memory is a block of contiguous bytes of a certain size, usually 4096 or 8192 bytes. The operating system sets up and maintains a table for each running program called the Process Memory Map, or PMM. This is a table of all the pages of memory that program can access and where each is really located.

Every time your program accesses any portion of memory, the address (called a virtual address) is processed by the MMU. The MMU looks in the PMM to find out where the memory is really located (called the physical address). The physical address can be any location in memory or on disk that the operating system has assigned for it. If the location the program wants to access is on disk, the page containing it must be read from disk into memory, and the PMM must be updated to reflect this action (this is called a page fault).

Because accessing the disk is so much slower than accessing RAM, the operating system tries to keep as much of the virtual memory as possible in RAM. If you’re running a large enough program (or several small programs at once), there might not be enough RAM to hold all the memory used by the programs, so some of it must be moved out of RAM and onto disk (this action is called paging out).

The operating system tries to guess which areas of memory aren’t likely to be used for a while (usually based on how the memory has been used in the past). If it guesses wrong, or if your programs are accessing lots of memory in lots of places, many page faults will occur in order to read in the pages that were paged out. Because all of RAM is being used, for each page read in to be accessed, another page must be paged out. This can lead to more page faults, because now a different page of memory has been moved to disk.

The problem of many page faults occurring in a short time, called page thrashing, can drastically cut the performance of a system. Programs that frequently access many widely separated locations in memory are more likely to cause page thrashing on a system. So is running many small programs that all continue to run even when you are not actively using them.

To reduce page thrashing, you can run fewer programs simultaneously. Or you can try changing the way a large program works to maximize the capability of the operating system to guess which pages won’t be needed. You can achieve this effect by caching values or changing lookup algorithms in large data structures, or sometimes by changing to a memory allocation library which provides an implementation of malloc() that allocates memory more efficiently. Finally, you might consider adding more RAM to the system to reduce the need to page out.

tags: c interview questions and answers, c interview question What is page thrashing, What is page thrashing, page thrashing

0

Which bit wise operator is suitable for putting on a particular bit in a number ?

Posted by The Blogger on 9:19 AM in ,
Answer:

The bitwise OR operator. In the following code snippet, the bit number 24 is turned ON:

some_int = some_int | KBit24;


tags: c interview questions and answers, c interview question Which bit wise operator is suitable for putting on a particular bit in a number, Which bit wise operator is suitable for putting on a particular bit in a number

0

What is the difference between calloc() and malloc() ?

Posted by The Blogger on 9:05 AM in ,
Answer:

1. calloc(...) allocates a block of memory for an array of elements of a certain size. By default the block is initialized to 0. The total number of memory allocated will be (number_of_elements * size).

malloc(...) takes in only a single argument which is the memory required in bytes. malloc(...) allocated bytes of memory and not blocks of memory like calloc(...).

2. malloc(...) allocates memory blocks and returns a void pointer to the allocated space, or NULL if there is insufficient memory available.

calloc(...) allocates an array in memory with elements initialized to 0 and returns a pointer to the allocated space. calloc(...) calls malloc(...) in order to use the C++ _set_new_mode function to set the new handler mode.


tags: c interview questions and answers, c interview question What is the difference between calloc() and malloc(), What is the difference between calloc() and malloc(), calloc, malloc

0

What is the output of printf("%d") ?

Posted by The Blogger on 9:03 AM in ,
Answer:

1. When we write printf("%d",x); this means compiler will print the value of x. But as here, there is nothing after %d so compiler will show in output window garbage value.

2. When we use %d the compiler internally uses it to access the argument in the stack (argument stack). Ideally compiler determines the offset of the data variable depending on the format specification string. Now when we write printf("%d",a) then compiler first accesses the top most element in the argument stack of the printf which is %d and depending on the format string it calculated to offset to the actual data variable in the memory which is to be printed. Now when only %d will be present in the printf then compiler will calculate the correct offset (which will be the offset to access the integer variable) but as the actual data object is to be printed is not present at that memory location so it will print what ever will be the contents of that memory location.

3. Some compilers check the format string and will generate an error without the proper number and type of arguments for things like printf(...) and scanf(...).
malloc()


tags: c interview questions and answers, c interview question What is the output of printf("%d") , What is the output of printf("%d") , printf

0

What is a null pointer?

Posted by The Blogger on 9:01 AM in ,
Answer:

There are times when it’s necessary to have a pointer that doesn’t point to anything. The macro NULL, defined in , has a value that’s guaranteed to be different from any valid pointer. NULL is a literal zero, possibly cast to void* or char*.

Some people, notably C++ programmers, prefer to use 0 rather than NULL.

The null pointer is used in three ways:

1) To stop indirection in a recursive data structure.
2) As an error value.
3) As a sentinel value.

tags: c interview questions and answers, c interview question What is a null pointer, What is a null pointer, null pointer, null, pointer

0

What does static variable mean?

Posted by The Blogger on 8:53 AM in ,
Answer:

There are 3 main uses for the static.

1. If you declare within a function:
It retains the value between function calls

2.If it is declared for a function name:
By default function is extern..so it will be visible from other files if the function declaration is as static..it is invisible for the outer files

3. Static for global variables:
By default we can use the global variables from outside files If it is static global..that variable is limited to with in the file.

tags: c interview questions and answers, c interview question What does static variable mean, What does static variable mean, static variable, static

0

what are the different types of instructions in c?

Posted by The Blogger on 12:08 AM in ,
Answer:

There are basically 4 types of instructions in C :

1. Type declaration instructions: to declare the type of variables used in a C program

2. Input/Output instructions: to perform the function of supplying input data to a program and obtaining the output results from it.

3. Arithmetic instructions: to perform arithmetic operations between constants and variables.

4. Control instructions: to control the sequence of execution of various statements in a C program.



tags: interview questions, interview question what are the different types of instructions in c, what are the different types of instructions in c

0

what is a variable?

Posted by The Blogger on 12:05 AM in ,
Answer:

A variable can be considered as a name given to the memory location where the constant is stored.

syntax: <datatype> <variablename>;


tags: interview questions, interview question what is a variable, what is a variable

0

why do we need programming language or computer language?

Posted by The Blogger on 11:50 PM in , , ,
Answer:

We need a Programming or Computer language to communicate with a computer, so that the computer understands that language.

An programming language used to write instructions that can be translated into machine language and then executed by a computer.



tags: interview questions, interview questions why do we need programming language or computer language, why do we need programming language or computer language

Your Ad Here

Copyright © 2009 Interview Questions and Answers