MCQsBasic MCQsdata-typesdata-types// C++ Data Types Quiz 1).Which of the following is a built-in data type in C++?1) int2) string3) list4) vector 2).What is the size of a `float` data type in C++?1) 4 bytes2) 8 bytes3) 16 bytes4) 2 bytes 3).Which of the following data types is used to store a single character?1) char2) int3) float4) string 4).What is the default value of an uninitialized `int` variable in C++?1) 02) undefined3) null4) It throws an error. 5).Which of the following is a non-built-in (user-defined) data type in C++?1) struct2) int3) char4) float 6).Which data type would you use to store large integers in C++?1) long long int2) int3) short4) char 7).Which of the following is the correct syntax to declare a pointer to an integer in C++?1) int *p;2) pointer int p;3) int p*;4) pointer *int p; 8).Which of the following data types has the largest range in C++?1) long long int2) int3) float4) double 9).What is the size of a `bool` data type in C++?1) 1 byte2) 4 bytes3) 8 bytes4) 2 bytes 10).Which of the following is a valid declaration for a constant variable in C++?1) const float pi = 3.14;2) float pi const = 3.14;3) constant float pi = 3.14;4) pi = const 3.14;