Subjectwise MCQ
Statewise Prepration
Govt. Examwise MCQ
4525+ MCQ Questions in english हिन्दी
What is a 32-bit C compiler's sizeof(char)?
The Data Warehouse offers
What data type is FILE in the C language?
When a transaction updates a database object and subsequently fails for some reason, a problem arises, the reason is
Who developed Python Programming Language?
What level of abstraction best identifies the types of data stored in the database?
Define granularity
TCL is used for _______?
Data storage across multiple locations is referred to as
DCL is used to _______?
Which HTML tag is referred to as the document's root element?
The <html> tag is the root element of an HTML document, which means that it contains all the contents and tags of the HTML document within it.
In relation to HTML tags, which of the following is true?
HTML tags are not case-sensitive in nature.
HTML used to describe colours?
Colors are defined using RGB, HEX, HSL, RGBA, HSLA values or with predefined color names.
Which of the following is/are the code editors in PHP?
What is the C++ wchar t size?
Which of the following tags, outside the one, is used to make text bold?
The <em> tag is used to emphasize text, which puts same effect as <i> tag.
Which of the following function is used to unset a variable in PHP?
What keyword does C++ use to define macros?
What will the following C++ programme produce?
#include
using namespace std;
class A{
public:
A(){
cout<<"Constructor called\n";
}
~A(){
cout<<"Destructor called\n";
}
};
int main(int argc, char const *argv[])
{
A *a = new A[5];
delete[] a;
return 0;
}
What tag does a webpage utilise to render an image?
The img tag is used to display an image on a webpage.
What will the following C++ code snippet produce?
#include
#include
using namespace std;
int main ()
{
int array[] = {0, 2, 4, 6, 7, 5, 3};
int n, result = 0;
for (n = 0; n < 8; n++)
{
result += array[n];
}
cout << result;
return 0;
}
What is the HTML definition of a quotation?
The <blockquote> tag is used to define a section that is quoted from another source.
What advantages do input and output in C++ have over those in C?
Which of the following properties is used to change the font of text?
The font-family property is used to change text font in HTML
What will the following C++ code produce?
#include
using namespace std;
int main ()
{
int a, b, c;
a = 2;
b = 7;
c = (a > b) ? a : b;
cout << c;
return 0;
}
How do classes and structures differ in C++?
In what HTML element are description data defined?
Description data is defined by <dd> tag.
For variable list arguments in C, the typical header ______ is utilised.