A. B. C. D. Hide Answer Workspace: 1) #Include
A. B. C. D. Hide Answer Workspace: 1) #Include
h>
Which of the following is the correct syntax to add the header file in the C++ program?
a. #include<userdefined>
b. #include "userdefined.h"
c. <include> "userdefined.h"
d. Both A and B
Hide Answer Workspace
Answer: D
Explanation: To include the herder files in the C++ program user can use any of the following given
syntax.
1. #include <Filename.h>
Or
1. #include "filename.h"
2) Which of the following is the correct syntax to print the message in C++ language?
Hide Answer Workspace
Answer: A
Explanation: To print the message in the C++ language user can use the following syntax:
1. #include <iostream>
2. using namespace std;
3.
4. int main() {
5. cout << "Hello World!";
6. cout << "I am learning C++";
7. return 0;
8. }
3) Which of the following is the correct identifier?
a. $var_name
b. VAR_123
c. varname@
Hide Answer Workspace
Answer: B
Explanation: There are some certain rules that must be followed by the users while writing the
identifiers.
a. @
b. #
c. &
d. %
Hide Answer Workspace
Answer: C
Explanation: To print the address of any variable, a user can use the "&" operator. To understand it
more clearly, consider the following example:
1. #include <iostream>
2. #include<conio.h>
3.
4. using namespace std;
5.
6. int main() {
7.
8. // Declare Variables
9. int a;
10. int *pt;
11.
12. cout << "C++ Pointer Example Program : Print Pointer Address\n";
13. a = 10;
14. pt = &a;
15.
16. cout << "\n[a ]:Value of A = " << a;
17. cout << "\n[*pt]:Value of A = " << *pt;
18. cout << "\n[&a ]:Address of A = " << &a;
19. cout << "\n[pt ]:Address of A = " << pt;
20. cout << "\n[&pt]:Address of pt = " << &pt;
21. cout << "\n[pt ]:Value of pt = " << pt;
22.
23. getch();
24. return 0;
25. }
a. Encapsulation
b. Inheritance
c. Polymorphism
Hide Answer Workspace
Answer: D
Explanation: There is nothing that forces a user to use the OOP concept in C++. In contrast, it is
necessary for a programming language that it must support all three features as encapsulation,
inheritance, and polymorphism completely to become a pure Object-Oriented Language.
6) The programming language that has the ability to create new data types is called___.
a. Overloaded
b. Encapsulated
c. Reprehensible
d. Extensible
Hide Answer Workspace
Answer: D
Explanation: A language that can generate the new data types is known as the extensible
languages as they can handle the new data types.
a. Dennis Ritchie
b. Ken Thompson
c. Bjarne Stroustrup
d. Brian Kernighan
Hide Answer Workspace
Answer: C
Explanation: Bjarne Stroustrup creates C++ language during 1997 at AT&T Bell Labs.
8) Which of the following is the correct syntax to read the single character to console in
the C++ language?
a. Read ch()
b. Getline vh()
c. get(ch)
d. Scanf(ch)
Hide Answer Workspace
Answer: C
Explanation: The "cin.get()" is one of the several functions provided in C++ language that is used to
read the single or multiple characters to console.
9) Which of the following statements is correct about the formal parameters in C++?
Hide Answer Workspace
Answer: A
Explanation: Parameters that are used in the body of the function are known as formal parameters.
These parameters represent the parameters passed to the function and are only used inside the
function's body.
10) The C++ language is ______ object-oriented language.
Hide Answer Workspace
Answer: C
Explanation:
The common thing about the Pure Object-oriented language it provides three basic features like
Inheritance, Encapsulation, and Polymorphism. Each programming language that supports these
entire three features is known as the Pure-Object oriented language. Whereas if a programming
language support all these three features but not support completely are known as the Partial-Object
oriented languages or the Semi Object-oriented languages
The main reasons why the C++ programming language is Known as Semi-Object oriented language
are as follows:
A friend class is allowed to access private and protected members of another class, within
which it is declared a friend. It may be very useful for some time, but still, it violates the rule
of the Object-Oriented features.
As we all know that we can declare a global variable in C++ language that can be easily
accessible from anywhere within the program. So again, C++ does not provide complete
privacy because no one is restricted to access and manipulate that data/information. Hence it
offers partial Encapsulation, unlike Java Language, in which a user only allows to declare a
variable within the class and can provide access specifier to it.
C++ is an object-oriented language, but still, object-oriented is not fundamentally related (or
implicit) to the language. So a user can easily write a valid, well-defined C++ code even
without using any object once.
a. Encapsulation
b. Inheritance
c. Polymorphism
Hide Answer Workspace
Answer: D
Explanation: There is nothing that forces a user to use the OOP concept in C++. In contrast, it is
necessary for a programming language that it must support all three features of Encapsulation,
Inheritance, and Polymorphism completely to become a Pure Object-Oriented Language.
12) Which of the following comment syntax is correct to create a single-line comment in
the C++ program?
a. //Comment
b. /Comment/
c. Comment//
Hide Answer Workspace
Answer: A
Explanation: To create a single line comment (or one-line comment) in C++ program one can use
the "// write comment" syntax. We can understand it more easily with the help of following given
Program:
Example
1. #include <stdio.h>
2. int main(void)
3. {
4. // This is a single line comment
5. // Welcome user comment
6. printf("Welcome to Javatpoint");
7. return 0;
8. }
Output
Welcome to Javatpoint
a. High-level Language
b. Low-level language
c. Middle-level language
Hide Answer Workspace
Answer: C
Explanation: C++ contains the features of both types of high and Low-level programming languages,
and it is also not wrong if we call it the combination of both high and low-level languages.
14) For inserting a new line in C++ program, which one of the following statements can be
used?
a. \n
b. \r
c. \a
Hide Answer Workspace
Answer: A
Explanation:
To insert a new line or to jump on to the next line, one can use the "\n." In c++, there is also an
alternative is available that is " endl," which is also used for breaking a line in the output. Let see the
example of both the "\n" and "endl."
Example: Using "\n."
1. #include <iostream>
2. using namespace std;
3.
4. int main() {
5. cout << "Hello World! \n\n";
6. cout << "I am learning C++";
7. return 0;
8. }
Output
Hello World!
I am learning C++
Example: With using "end"
1. #include <iostream>
2. using namespace std;
3.
4. int main() {
5. cout << "Hello World!" << endl;
6. cout << "I am learning C++";
7. return 0;
Output
Hello World!
I am learning C++
a. \n
b. \t
c. \r
Hide Answer Workspace
Answer: B
Explanation: The "\t" is a type of space sequence representing the tab, which means a set of blank
space adds to the line. To understand it more clearly, consider the following example:
Program
1. #include<iostream>
2. using namespace std;
3. int main()
4. {
5. int a,b;
6. cout<<"Enter the first number\t";
7. cin>>a;
8. cout<<"Enter the second number\t";
9. cin>>b;
10. if(a>b)
11. cout<<"Greatest number is\t"<<a;
12. else
13. cout<<"Greatest number is\t"<<b;
14. return 0;
15. }
Output
Enter the first number 12
Enter the second number 13
Greatest number is 13
Hide Answer Workspace
Answer: A
Explanation: Basically, an array is a set of similar data items that are stored in the contiguous
memory blocks. You can access any data item randomly using the index address of the element s.
2) If we stored five elements or data items in an array, what will be the index address or
the index number of the array's last data item?
a. 3
b. 5
c. 4
d. 88
Hide Answer Workspace
Answer: C
Explanation: The array uses the contiguous block of memory for storing the data elements. Hence
the data items pushed into an array are stored at the continuous address space. The index number of
the array begins with zero so, the first data item pushed into the array will be stored at zero and so
on. Hence index number of the last (fifth) element will be 4.
3) Which of the following is the correct syntax for declaring the array?
a. init array []
c. Array[5];
Hide Answer Workspace
Answer: B
Explanation: To declare an array in C++, we first need to specify its data type according to
requirements such as int or char, afterward that the array's name and the size of the array. So the
correct answer will be B.
4) Which of the following is the correct syntax for printing the address of the first element?
a. array[0];
b. array[1];
c. array[2];
Hide Answer Workspace
Answer: A
Explanation: To print or access the first data item of the array, the correct syntax is "array[0];"
because the array's index begins with zero instead of one. So the correct answer will be A.
a. Array[0];
b. Array[0];
c. Array[3];
Hide Answer Workspace
Answer: C
Explanation: The index of the array begins with zero instead of 1. To print the 4th element of the
array, the index number will be n-1 or (3);
2. using namespace std;
3. int main()
4. {
5. int array[] = {10, 20, 30};
6. cout << -2[array];
7. return 0;
8. }
a. -15
b. -30
c. Compiler error
d. Garbage value
Hide Answer Workspace
Answer: B
Explanation: It will print the negative value of the specified values because the "-" sign we used
while specifying the array elements. So the correct answer will be the "-30".
a. Contiguous
b. None-contiguous
c. Both A and B
d. Not mentioned
Hide Answer Workspace
Answer: A
Explanation: In the C and C++ programming language, the memory used by an array is usually
contiguous, which means when an array is declared or initialized in the program a block of memory is
selected form the memory space immediately. The major drawback of an array is that users have to
guess the size of the array before actually using it, in which a significant amount of memory will be
occupied even when it is not used. This later creates the problem of lack of memory.
a. Sorting is a type of process in which the data or information is ordered into a specific order.
Explanation: Sorting is a type of technique or process in which the locations of data elements hold
by the array are reordered or manipulated. So the correct answer will be A.
For Example
Un-sorted Array
4 3 2 1 5 6 7
Sorted Array
1 2 3 4 5 6 7
9) How many types of the array are there in the C++ programming language?
d. Both A and B
Hide Answer Workspace
Answer: C
Explanation: In the C++ programming language, there are mainly two types of arrays that
are Single Dimension arrays and Multi-Dimension arrays. In Single-Dimension arrays, the same
types of values are hold in the form of a List, while on the other hand, in Multi-Dimension arrays;
values are stored in the form of a matrix.
b. It returns the maximum number of elements that can be stored in the array
Hide Answer Workspace
Answer: C
Explanation: In C++, one can use the rank function where he wants to know about the
dimensions( e.g., single-dimension, multi-dimension) of a specific array by just passing it to the
"rank()" function.
11) Which one of the following is the correct definition of the "is_array();" function in C+
+?
d. Both B and C
Hide Answer Workspace
Answer: A
Explanation: In C++, the "is_array();" is used for checking that the specified element or data item
belongs to the array type or not.
12) Observer the given C++ program carefully and choose the correct output from the
given options:
Program
1. #include <iostream>
2. #include <string>
3. using namespace std;
4. int main()
5. {
6. cout<<is_array<int>::value; // case A
7. cout<<is_array<char[10]>::value; // case B
8. cout<<is_array<string>::value; // case c
9. return 0;
10. }
a. 110
b. 001
c. 010
Hide Answer Workspace
Answer: C
Explanation: The correct output will be "010" Because in both cases, A and C variables passed to the
"is_array()" function are different, so the function returns zero in both cases while in the case of B,
they are the same. Hence it returns one as the output.
13) Read the given C++ program carefully and choose the correct output from the given
options:
Program
1. #include <iostream>
2. #include <string>
3. using namespace std;
4. int main()
5. {
6. cout<<rank<int[10]>::value; // Case A
7. cout<<rank<char[10][10]>::value; // Case B
8. cout<<rank<string[10][10][10]>::value; //Case C
9. return 0;
10. }
a. 121
b. 321
c. 123
d. 010
Hide Answer Workspace
Answer: C
Explanation: As we can see in the above program, here, the "rank()" function is used. The "rank()"
function is used to know about the dimensions of the passed array. In case A the array passed to the
"rank()" function is single-dimensional, In case B, the passed array is 2-dimensional, and in case C,
the array passed is three-dimensional. So the output return by the "rank()" function is 123.
b. Multi-Dimensional array
d. Both A and B
Hide Answer Workspace
Answer: C
a. Single-dimensional
b. Multi-dimensional
c. Both A and B
Hide Answer Workspace
Answer: A
a. Index of an array
Hide Answer Workspace
Answer: B
Explanation: The elements in the array are known as the objects of the array.
Hide Answer Workspace
Answer: A
Explanation: An array can hold several elements except that all the data elements are of the same
type.
18) Elements of a one-dimensional array are numbered as 0,1,2,3,4,5, and so on; these
numbers are known as ____
a. Subscript of Array
b. Members of Array
c. Index values
d. Both A and C
Hide Answer Workspace
Answer: D
Explanation: The elements of one-dimensional array are indexed as 0,1,2,3,... and these numbers
are also known as the index values or subscripts of the array.
a. Only I
b. Both I and II
c. I, II, III
Hide Answer Workspace
Answer: C
Explanation: All statements mentioned in the above question are completely true about the "malloc"
and the "new." The "malloc" is a kind of function available in the C++ language, while the "new" is a
type of operator that invokes the Constructor.
2) Which of the following statement is true about the new and malloc?
I. The pointer object initialization of a specific class using "malloc" also needs to include constructor
calls; on the other hand, doing so with the "new" keyword does not include any constructor calls.
II. The pointer object initialization of a specific class using the "new" keyword also needs to include a
constructor call. On the other hand, doing so with the "malloc" does not need to include any
constructor calls.
III. Pointer object initialization of a specific class using either "new" or "malloc" involves the
constructor call.
a. Only II
c. Only I
Explanation: In object initialization of a class using the "new" keyword also involves a constructor
call, while doing so with the "malloc" does not require any involvement of the constructor call. This is
the main reason why the "new" is added explicitly in the C++ language. However, the "malloc"
function is used to assign the memory to any specific pointer, so it assigns an equal amount of
memory to the class size. At the same time, the "new" keyword involves the initialization, hence
invokes the Constructor of that particular class.
d. It is a C++ technique to avoid multiple copies of the base class into the derived or child
classes
Hide Answer Workspace
Answer: D
Explanation:
4) Which one of the following statements correctly refers to the Delete and Delete[] in C+
+ programming language?
a. Delete is syntactically correct although, if the Delete[] is used, it will obtain an error.
b. The "Delete" is used for deleting the standard objects, while on the other hand, the
d. The "Delete" is used for deleting a single standard object, whereas the "Delete[]" is used for
Hide Answer Workspace
Answer: D
Explanation: The "Delete" is used with the single general object, while on the other hand, the
"Delete[]" is used with the array of the multiple objects initiated with the new operator.
5) Consider the following given program and choose the most appropriate output from the
given options:
1. #include <iostream>
2. using namespace std;
3. class A{
4. public:
5. A(){
6. cout<<"Constructor called\n";
7. }
8. ~A(){
9. cout<<"Destructor called\n";
10. }
11. };
12. int main(int argc, char const *argv[])
13. {
14. A *a = new A[5];
15. delete[] a;
16. return 0;
17. }
a. Segmentation failure.
b. Error.
c. The Constructor will be invoked five times, and after that destructor will be invoked only
once.
d. The Constructor will be invoked five times, and after that destructor will also be invoked five
times.
Hide Answer Workspace
Answer: D
Explanation: As mentioned in the above-given program, five-pointer variables are initiated using the
"new" keyword so that the Constructor will be invoked five times. In addition, the destructor
"Delete[]" is used( that is used for deleting the group of the several objects) for terminating variables.
Hence all of the variables will be terminated completely, and while terminating the variables, the
destructor will be invoked five times.
6) Consider the following given program and choose the most appropriate output from the
given options:
1. #include<iostream>
2. using namespace std;
3. class Base {
4. public:
5. Base()
6. { cout<<"Constructing Base \n"; }
7. ~Base()
8. { cout<<"Destructing Base \n"; }
9. };
10. class Derived: public Base {
11. public:
12. Derived()
13. { cout<<"Constructing Derived \n"; }
14. ~Derived()
15. { cout<<"Destructing Derived \n"; }
16. };
17.
18. int main(void)
19. {
20. Derived *d = new Derived();
21. Base *b = d;
22. delete b;
23. return 0;
24. }
Hide Answer Workspace
Answer: B
Explanation: In the above-given program, the derived class's object is storing in the base class
pointer; while the object is destroyed, the program has never invoked the destructor of the Derived
class. Therefore, it shows that the object is not destroyed at all; hence, in this case, the program may
also behave undesirably.
7) Which of the following can be considered as the correct syntax for declaring an array of
pointers of integers that has a size of 10 in C++?
Hide Answer Workspace
Answer: C
Explanation: To declare an array of integers' pointer, here we need to use the double-pointer array
where every element is set of the pointer to the integers. Therefore the correct option is C.
8) Which of the following can be considered as the members that can be inherited but not
accessible in any class?
a. Public
b. Protected
c. Private
d. Both A and C
Hide Answer Workspace
Answer: C
Explanation: The "Private" member of a class can be inherited by the child class. Still, the child class
cannot access them (Or we can say that they are not accessible from the child class).
9) Which of the following can be used to create an abstract class in the C++ programming
language?
Hide Answer Workspace
Answer: A
Explanation: A class must contain at least one declaration of the pure virtual function in itself to be
called an abstract class. Therefore to make an abstract class, one has to declare at least one pure
virtual function in that class.
d. Both A and C
Hide Answer Workspace
Answer: A
Hide Answer Workspace
Answer: D
Explanation: A friend function can access any member of a class without caring about the type of
member it contains, such as public, private, and protected.
Hide Answer Workspace
Answer: C
Explanation: In C, structures are not allowed to have member functions; while on the other hand,
C++ allows the structure to have the member functions. Members of the class are generally private
by default, and those of the structures are public. So it is a completely false statement that classes
can not private members.
I. In an object-oriented programming language, all the function calls are resolved at compile-time.
II. In a procedure programming language, all the function calls are resolved at compile-time
a. Only II
b. Only I
c. Both I & II
Hide Answer Workspace
Answer: B
Explanation: In a procedure programming language such as C, we do not have the concept of
Polymorphism, so all function calls are resolved at the compile-time while, on the other hand, In an
Object-Oriented language, through the concept of Polymorphism, all function calls cannot be resolved
at the compile-time.
14) Which one of the following cannot be used with the virtual keyword?
a. Constructor
b. Destructor
c. Member function
Hide Answer Workspace
Answer: A
Explanation: In C++, we cannot use the virtual keyword with the Constructor because constructors
are generally defined to initialize the object of a specific class; hence no other class requires the other
class's object.
15) Which of the following is used for implementing the late binding?
a. Operator Functions
b. Constant Functions
c. Virtual Functions
d. Both A and B
Hide Answer Workspace
Answer: C
Explanation: A virtual function can be used for implementing the concept of late binding. For
example - Binding the actual functions to their corresponding calls.
16) Which of the following statements supports that reusable code should be one of the
desirable features of any language?
Hide Answer Workspace
Answer: C
Explanation: While reusing the existing code, we are not required to test/check that code, again and
again, because it was already tested while it was written for the very first time. So the reusing the
code defiantly helps in reducing the maintenance and testing time.
While reusing the existing code, the compile-time most likely to be increased or remain the same, and
it is obvious because we use the existing code in our program to save our time( or to include any
specific functionality) by which the size of the overall program gets grows which is natural.
50) Which of the following statement is correct about the C++ programming language?
a. In C++, both the Static and Dynamic type checking are allowed
Hide Answer Workspace
Answer: A
Explanation: In C++, both types of static and dynamic checking are allowed.
a. Distributed
b. Multiple
c. Multi-level
d. Hierarchal
Hide Answer Workspace
Answer: A
Explanation: Among the above options, Distributed is only, which is not a type of inheritance, while
Multiple, Multi-level, and the Hierarchal are the types of inheritance.
19) What will happen if "In a C++ program a class has no name"?
d. Both B and C
Hide Answer Workspace
Answer: C
Explanation: In the C++ program, if we use a class without assigning a name. As a result, it will not
be going to have a destructor, but it will have the object. To understand it in more detail, consider the
following program:
Program
#include
using namespace std;
class
{
public:
void func()
{
cout<<"Hello world";
}
}a;
int main(int argc, char const *argv[])
{
a.func();
return 0;
}
a. Right to left
b. Left to right
c. Top to bottom
d. Bottom-up
Hide Answer Workspace
Answer: D
Explanation: Generally, C++ uses the Bottom-up approach while other programming languages like
C use the top-down approach.
21) Which of the following concept refers to adding new components to the program at the
run time?
a. Dynamic Loading
b. Dynamic binding
c. Data hiding
d. Both A & B
Hide Answer Workspace
Answer: C
Explanation: The dynamic loading is referred to as the concept of adding a new component to the
program as it runs.
22) How can one implement the compile-time Polymorphism in the C++ programming
language?
Hide Answer Workspace
Answer: A
Explanation: One can easily implement the Compile-time Polymorphism using the Template.
23) How can one implement the run-time Polymorphism in the C++ programming
language?
Hide Answer Workspace
Answer: In C++, one can implement the run-time Polymorphism by using the virtual functions and
inheritance where the object decides which function to call.
Explanation: C
24) Which of the following offers a programmer the facility of using a specific class object
into other classes?
a. Polymorphism
b. Abstraction
c. Inheritance
d. Composition
Hide Answer Workspace
Answer: D
Explanation: The composition is referred to as the concept of using objects of a specific class into
several other classes.
a. A Class
b. A Function
c. An Object
Hide Answer Workspace
Answer: C
Explanation: In general, an object of any class cannot be a friend of the same and any other class as
well. However, there are some functions, operator, and classes which can be made a friend.
Hide Answer Workspace
Answer: D
Explanation: These are some basic reasons why the references are far different from the pointers.
In the case of pointers "*" operator is required for dereferencing the value contain by it. However, the
reference does not need any type of operator for deference.
A Reference cannot be modified once it is initialized, but it is possible to do so in the case of a pointer.
27) Among the following given options, which can be considered as a member of a class?
a. Class variable
b. Member variable
c. Class functions
d. Both A and B
Hide Answer Workspace
Answer: B
Explanation: Generally, the functions of any class are also considered as the member function of that
class.
28) Which of the following refers to the wrapping of data and its functionality into a single
individual entity?
a. Modularity
b. Abstraction
c. Encapsulation
Hide Answer Workspace
Answer: C
Explanation: In C++, the property of wrapping the data and its functionality into a single entity is
known as Encapsulation ( e.g., Classes).
29) Which of the following refers to using the existing code instead of rewriting it?
a. Inheritance
b. Encapsulation
c. Abstraction
d. Both A and B
Hide Answer Workspace
Answer: A
Explanation: With the help of the inheritance concept, one can use existing code instead of rewriting.
We can do this by inheriting the properties of pre-written code in other parts of the code blocks.
Therefore the user is not required to write the same code repeatedly.
a. X,Y->Z
b. X->Y->Z
c. X->Y;X->Z
Hide Answer Workspace
Answer: A
Explanation: In multiple inheritances, a single class can inherit properties form more than one base
class.
31) Which of the following statements is true about the C++ programming language?
Hide Answer Workspace
Answer: D
Explanation: C++ is a type of programming language which supports both the procedural ( or step
by step instructions) and object-oriented through the concept of classes.
32) Among the following, which statement is correct about the Modularity?
b. Modularity refers to dividing a program into subsequent small modules or independent parts
d. Modularity refers to wrapping the data and its functionality into a single entity
Hide Answer Workspace
Answer: B
Explanation: Modularity refers to dividing a program into small independent code blocks or modules
so that they can be easily called anywhere in the entire program where it is required. The concept of
Modularity is very efficient and helpful for developers because it makes the program well structured
and easy to understand. Hence the correct option is D.
33) Read the following program carefully and find out which concept from the given
options is not used or missing in the following program?
Program
1. class A
2. {
3. int x;
4. public:
5. void print(){cout<<"hello"<<x;}
6. }
7.
8. class B: public A
9. {
10. int y;
11. public:
12. void assign(int a){y = a;}
13. }
a. Polymorphism
b. Encapsulation
c. Inheritance
d. Abstraction
Hide Answer Workspace
Answer: A
Explanation: As we can see in the above-given program, the variables X and Y both are private
members, which means they both are hidden from the outside world of the class, so here the concept
of abstraction is used.
The other data members and their corresponding functions are stored in an individual class, so here
the concept of Encapsulation is also used. In addition, Class B is derived from Class A, which means
the concept of inheritance is used as well, but still, we didn't find and an overloaded function in any of
the classes. Therefore the concept of Polymorphism is missing or not used in the given program.
34) Which of the following options correctly explains the concept of Polymorphism?
a.
1. int func(float);
2. float func(int, int, char);
b.
1. int func(int);
2. int func(int);
c.
1. int func(int, int);
2. float func1(float, float);
Hide Answer Workspace
Answer: A
Explanation: The concept of Polymorphism refers to the overloading a function by changing either its
number of passed arguments or changing its type. So you have only two options in which the function
has named the same. Therefore one can easily find out that in option C, the type and the number of
the argument all are the same, which definitely leads to an error that is wrong. However, the option in
which the name of the function is the same has a different number of arguments, or different types is
the correct option. So the correct answer is A.
← PrevNext →