HCL C++ Interview questions and answers

Posted by Unknown at 02:20
HCL C++ Interview questions and answers


Define structured programming.


Structured programming techniques use functions or subroutines to organize the programming code. The programming purpose is broken into smaller pieces and organized together using function. This technique provides cleaner code and simplifies maintaining the program. Each function has its own identity and isolated from other, thus change in one function doesn’t affect other.


Explain Object oriented programming.
Object oriented programming uses objects to design applications. This technique is designed toisolate data. The data and the functions that operate on the data are combined into single unit. This unit is called an object. Each object can have properties and member functions. You can call member function to access data of an object. It is based on several techniques like encapsulation, modularity, polymorphism, and inheritance.


List down elements of an object oriented language.

Class

A class is a user defined data type. It serves as a template of the objects. You can definestructure and behavior of an object using class. It includes data and the member functions thatoperate on data.

Inheritance

Inheritance enables a new class to reuse the state and behavior of old class. The new class inherits properties and methods from the old class and is called as derived class and the old class is called as base class. The methods thus inherited can be extended using overriding facility of C++.

Encapsulation

The wrapping up of data and member function into an object is called encapsulation. The data is not accessible to the outside world and only those functions which are wrapped into the object can access it. An encapsulated objects act as a "black box" for other parts of the program which interact with it. They provide a service, but the calling objects do not need to know the details how the service is accomplished.

Polymorphism

Polymorphism enables one common interface for many implementations that allows objects to act differently under different circumstances. You can also achieve polymorphism in C++ by function overloading, operator overloading and implementation inheritance.

What is function prototype in C++?
A function prototype is a declaration of a function that omits the function body. It specifies the function’s name, argument types and return type. E.g. int add(int,int)


What are the ways to comment statement in C++? 

  
/* */ is used for commenting a block of code.

// is used for single line comments.
Define Structure in C++.

The C++ programming technique allows defining user defined datatypes through structure. The

syntax to declare structure is as follows:

struct student

{

char name[100]

char address[250]

};
Explain typecasting.


Typecasting enables data type conversion. C++ supports implicit conversions and explicit conversion. Implicit conversions automatically performed when a value is copied to a compatible type. If there is an operation between an int and a float, the int is promoted to float before performing operation automatically by the compiler.

You can cast explicitly as follows.

int i, j, k;

k = i * long(j);


Define void pointer using C++.


In C++, void represents the absence of type, so void pointers are pointers that point to a value that has no type. The void pointers can point to any data type.

You can declare void pointer as follows.

void *p;


When do you use :: Operator in C++?
:: is the scope resolution operator. When local variable and global variable are having same name, local variable gets the priority. C++ allows flexibility of accessing both the variables through a scope resolution operator.

Define reference variable in C++.
A reference variable is just like pointer with few differences. It is declared using & operator. A reference variable must always be initialized. The reference variable once defined to refer to a variable can’t be changed to point to other variable. You can’t create an array of references the way it is possible with pointer.

What is const qualifier?
const qualifier is used to specify the variable that can’t be change throughout the program. Variables with const qualifier are often named in uppercase.

When do you use bool data type?
The bool data type can take only two values true or false.

What is function overloading in C++?


You can have multiple functions with same name using function overloading facility of C++. You can use same name for multiple functions when all these functions are doing same thing.

What is operator overloading in C++?
With this facility in C++, you can give additional meaning to operators.


Define Inline Function.


When the function is defined Inline, the C++ compiler puts the function body inside the calling function. You can define function as Inline when the function body is small and need to be called  many times, thus reduces the overhead in calling a function like passing values, passing control,returning values, returning control.


Define class using C++.
A class holds the data and functions that operate on the data. It serves as the template of an object.

Explain constructors and destructors.


Constructors are the member functions of the class that executes automatically whenever anobject is created. Constructors have the same name as the class. Constructors initialize the class. Constructors can’t have return type. Destructors are called when the objects are destroyed.

Destructors are usually used to deallocate memory and do other cleanup for a class object and its class members when the object is destroyed. A destructor is called for a class object when that  object passes out of scope or is explicitly deleted. A destructor takes no arguments and has no return type.


When do you use this pointer?
’this pointer’ is used as a pointer to the class object instance by the member function. The address of the class instance is passed as an implicit parameter to the member functions.

What is new and delete operator?

In C++, when you want dynamic memory, you can use operator new. It returns a pointer to the beginning of the new block of memory allocated. It returns a pointer to the beginning of the new block of memory allocated. When memory allocated by new operator is no longer required, it is freed using operator delete.



Explain the difference between structures and classes.
Syntactically and functionally, both structures and classes are identical. By default, members of structures have public accessibility and public inheritance from their parent(s), while members of classes are private and inherit privately from their parent(s).


Define local class in C++.


Local class is define within the scope of a function and nested within a function.

E.g.

int func1()

{

class localclass1

{

};

}

Explain container class and its types in C++.
A container stores many entities and provide sequential or direct access to them. List, vector and strings are such containers in standard template library. The string class is a container that holds chars. All container classes access the contained elements safely and efficiently by using iterators. Container class is a class that hold group of same or mixed objects in memory. It can be heterogeneous and homogeneous. Heterogeneous container class can hold mixed objects in memory whereas when it is holding same objects, it is called as homogeneous container class.


Define an Iterator class.


A container class hold group of objects and iterator class is used to traverse through the objects maintained by a container class. The iterator class provides access to the classes inside a container. They are objects that point to other objects. Iterator points to one element in a range, and then it is possible to increment it so that it points to the next element.

There are several different types of iterators:

input_iterator

output_iterator

forward_iterator

bidirectional_iterator

random_iterator

reverse_iterator


Define storage classes in C++.


Storage class defined for a variable determines the accessibility and longevity of the variable. The accessibility of the variable relates to the portion of the program that has access to the variable. The longevity of the variable refers to the length of time the variable exists within the program.

Auto

Automatic variable, also called as local variable and it has scope only within the function block where it is defined.

External

External variable are defined outside any function and memory is set aside for this type of variable once it is declared and remained until the end of the program. These variables are also called global variables.

Static

The static automatic variables, as with local variables, are accessible only within the function in which it is defined. Static automatic variables exist until the program ends in the same manner as

external variables. In order to maintain value between function calls, the static variable takes its presence.


Define namespace in C++.
Namespaces groups together entities like classes, objects and functions under a name. Namespaces provide a way to avoid name collisions of variables, types, classes or functions. Namespaces reduces the use of nested class thus reduces the inconvenience of handling nested class.

Define access privileges in C++.


You have access privileges in C++ such as public, protected and private that helps in encapsulation of data at various level.

Private

If data are declared as private in a class then it is accessible by the member functions of the class where they are declared. The private member functions can be accessed only by the members of

the class. By default, any member of the class is considered as private by the C++ compiler, if no specifier is declared for the member.

Public

The member functions with public access specifier can be accessed outside of the class. This kind of members is accessed by creating instance of the class.

Protected

Protected members are accessible by the class itself and it’s sub-classes. The members with protected specifier act exactly like private as long as they are referenced within the class or from

the instance of the class. This specifier specially used when you need to use inheritance facility of C++. The protected members become private of a child class in case of private inheritance, public in case of public inheritance, and stay protected in case of protected inheritance.


What is the default access level?
The access privileges in C++ are private, public and protected. The default access level assigned to members of a class is private. Private members of a class are accessible only within the class and by friends of the class. Protected members are accessible by the class itself and its subclasses. Public members of a class can be accessed by anyone.

Explain friend class in C++.
When a class declares another class as its friend, it is giving complete access to all its data and methods including private and protected data and methods to the friend class member methods. Friendship is one way only, which means if A declares B as its friend it does NOT mean that A can access private data of B. It only means that B can access all data of A.

What is virtual function?
Virtual function is the member function of a class that can be overriden in its derived class. It is declared with virtual keyword. Virtual function call is resolved at run-time (dynamic binding) whereas the non virtual member functions are resolved at compile time (static binding).

What are pure virtual functions?

Pure virtual function is the function in the base class with no body. Since no body, you have to add the notation =0 for declaration of the pure virtual function in the base class.

The base class with pure virtual function can’t be instantiated since there is no definition of the function in the base class. It is necessary for the derived class to override pure virtual function.

This type of class with one or more pure virtual function is called abstract class which can’t be instantiated, it can only be inherited.

class shape

{

public: virtual void draw() = 0;

};


Define default constructor.


Default constructor is the constructor with no arguments or all the arguments has default values. Define abstraction. The process of hiding unnecessary data and exposing essential features is called abstraction. Abstraction is separating the logical properties from implementation details.



What is overriding?
Defining a function in the derived class with same name as in the parent class is called overriding. In C++, the base class member can be overridden by the derived class function with the same signature as the base class function. Method overriding is used to provide different implementations of a function so that a more specific behavior can be realized.


What is copy constructor?

A copy constructor is a special type of constructor that is used to create an object as a copy of an existing object. It takes an argument which is a reference to the object to be copied.





click the Below link download this file 


If you enjoyed this post and wish to be informed whenever a new post is published, then make sure you subscribe to my regular Email Updates. Subscribe Now!


Kindly Bookmark and Share it:

YOUR ADSENSE CODE GOES HERE

6 comments:

Naveed Mughal on 6 February 2018 at 03:40 said...

This is very educational content and written well for a change. It's nice to see that some people still understand how to write a quality post!
social bookmarking service


Unknown on 7 May 2018 at 23:54 said...

Hello There,

Great post. Well though out. This piece reminds me when I was starting out Frequently
Interview Questions after graduating from college.

Write a program which reads up to twenty student names and their exam marks from the keyboard. the program must then list the students in order of their success in the exam.?
Please keep providing such valuable information.


Thanks and Regards,
William


Unknown on 9 May 2018 at 00:52 said...

Aloha,

A really interesting, clear and easily readable HCL C++ Interview questions and answers article of interesting and different perspectives. I will clap. So much is so well covered here.

Using C Prog, Dev a prog that will play a number guessing game. The prog should allow users to enter their 3 numbers (between 0-9). You must store teh 3 numbers in a 1D array.

Your prog should use functions. The prog should display a simple menu to the user and each option in teh menu will be implemented by calling a separate function. You must use pointer notation to access array elements-NOT subscripts.

1. Enter 3 selected numbers
2. Display the contents of the 1D array containing the numbers you entered.
3. Compare your chosen lotto numbers in teh 1D array with eh following winning numbers: 1,3, 5

Return to the main () function how many numbers the use entered correctly and display this.

4. Reverse the contents of the 1D array containing the numbers the user entered correctly and display this.


Thanks a lot. This was a perfect step-by-step guide. Don’t think it could have been done better.

Kind Regards,
John


Unknown on 21 May 2018 at 02:57 said...

Hi Stephen,

Brilliant article, glad I slogged through the HCL C++ Interview questions and answers, RPM, Apt, Dpkg, Aptitude and Zypper it seems that a whole lot of the details really come back to from my past project.


I am new to Linux and have been banging my head against the wall finding the games on my system already and finding the downloaded games. I have the files but they will not open. Please help!
It consists of delaying block allocation until the data is going to be written to the disk, unlike some other file systems, which may allocate the necessary blocks before that step. In that case your server will be in unbootable state. Your Server can’t boot without /boot directory because this directory contains all bootable files.
Follow my new blog if you interested in just tag along me in any social media platforms!

Grazie,
Kevin


Raj Sharma on 5 July 2018 at 00:14 said...

Hello.. your blog is great. I read your blog and like it very much. Thanks for sharing.
C++ Interview Questions and Answers


Unknown on 17 October 2018 at 18:24 said...

I need some typical programs in c++


Have any question? Feel Free To Post Below:

Blog Archive

 

© 2011. All Rights Reserved | Interview Questions | Template by Blogger Widgets

Home | About | Top