0% found this document useful (0 votes)
11 views123 pages

TCS - D2-S2

The document contains a series of multiple-choice questions (MCQs) related to the C programming language, covering topics such as command line arguments, data types, pointers, recursion, and memory management. Each question is followed by four answer options, with the correct answer provided at the end of each question. The document serves as a study guide or quiz for individuals looking to test their knowledge of C programming concepts.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
11 views123 pages

TCS - D2-S2

The document contains a series of multiple-choice questions (MCQs) related to the C programming language, covering topics such as command line arguments, data types, pointers, recursion, and memory management. Each question is followed by four answer options, with the correct answer provided at the end of each question. The document serves as a study guide or quiz for individuals looking to test their knowledge of C programming concepts.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 123

TCSTopic/Course

- Ninja
Sub-Topic (Example: name of college)

MCQs
Question 1
What argv[0] and argv[1] denote in Command line Arguments ?

A Pointers to first two command line argument supplied


)
B File Name and pointer to first command line argument supplied
)
C Program Name and Pointer to the 1st argument
)
D None of these
)
Question 1
What argv[0] and argv[1] denote in Command line Arguments ?

A Pointers to first two command line argument supplied


)
B File Name and pointer to first command line argument supplied
)
C Program Name and Pointer to the 1st argument
)
D None of these
)

Ans: B
Question 2
Choose the correct statement :- while (0 == 0) { }

A It has syntax error as there are no statements within braces {}


)
B It will run forever
)
C It compares 0 with 0 and since they are equal it will exit the loop
) immediately
D It has syntax error as the same number is being compared with
) itself
Question 2
Choose the correct statement :- while (0 == 0) { }

A It has syntax error as there are no statements within braces {}


)
B It will run forever
)
C It compares 0 with 0 and since they are equal it will exit the loop
) immediately
D It has syntax error as the same number is being compared with
) itself
Ans: B
Question 3
Which one of these is equivalent to argc ?

A Number of Arguments
)
B Number of Arguments - 1
)
C Number of Arguments + 2
)
D Number of Arguments + 1
)
Question 3
Which one of these is equivalent to argc ?

A Number of Arguments
)
B Number of Arguments - 1
)
C Number of Arguments + 2
)
D Number of Arguments + 1
)
Ans: D
Question 4
What is dangling pointer?

A points to garbage value


)
B points to function
)
C Both A and B
)
D None of these
)
Question 4
What is dangling pointer?

A points to garbage value


)
B points to function
)
C Both A and B
)
D None of these
)
Ans: A
Question 5
Which of the following is not a data type in C?

A) int
B) float
C) char
D) string
Question 5
Which of the following is not a data type in C?

A) int
B) float
C) char
D) string
Ans: D
Question 6
what is the purpose of ftell ?

A to get the current file position


)
B to get the current file attribute
)
C to get the current file status
)
D to get the current file name
)
Question 6
what is the purpose of ftell ?

A to get the current file position


)
B to get the current file attribute
)
C to get the current file status
)
D to get the current file name
)

Ans: A
Question 7
What is the similarity between enum, union and structure?

A) Can assign new values


B) Can create new data types
C) Nothing is common
D) They are same
Question 7
What is the similarity between enum, union and structure?

A) Can assign new values


B) Can create new data types
C) Nothing is common
D) They are same

Ans: B
Question 8
A memory leak happens when?

A) A program allocates memory in heap but forget to delete it


B) A program allocate memory in stack
C) When an unsigned pointer is freed using free function
D) When reallocate()is called on a pointer that is not allocated
Question 8
A memory leak happens when?

A) A program allocates memory in heap but forget to delete it


B) A program allocate memory in stack
C) When an unsigned pointer is freed using free function
D) When reallocate()is called on a pointer that is not allocated

Ans: A
Question 9
Which of the following statement is true about the c language?

A) (void*)0 is different from a null pointer


B) null pointer is another name for uninitialized pointer
C) calloc() can be used only for character pointer allocation
D) char *i=0 and char *i=null means the same
Question 9
Which of the following statement is true about the c language?

A) (void*)0 is different from a null pointer


B) null pointer is another name for uninitialized pointer
C) calloc() can be used only for character pointer allocation
D) char *i=0 and char *i=null means the same

Ans: A
Question 10
While declaring parameters for main, the second parameter argv
should be declared as

A) char argv
B) char argv[]
C) char *argv[]
D) char **argv
Question 10
While declaring parameters for main, the second parameter argv
should be declared as

A) char argv
B) char argv[]
C) char *argv[]
D) char **argv

Ans: D
Question 11
Predict the output:

#include<stdio.h>
int main()
{
clrscr();
int x = 10;
printf("%d", x);
return 0
}

A) 10 B) Garbage C) Error D) None of these


Value
Question 11
Predict the output:

#include<stdio.h>
int main()
{
clrscr();
int x = 10;
printf("%d", x);
return 0
}

A) 10 B) Garbage C) Error D) None of these


Ans: C Value
Question 12
Which of this is used to skip one iteration?

A break
)
B continue
)
C goto
)
D return
)
Question 12
Which of this is used to skip one iteration?

A break
)
B continue
)
C goto
)
D return
)
Ans: B
Question 13
which of the following is not a fundamental data type?

A Enum
)
B unsigned long int
)
C Long int
)
D double
)
Question 13
which of the following is not a fundamental data type?

A Enum
)
B unsigned long int
)
C Long int
)
D double
)

Ans: A
Question 14
What is the similarity between enum and struct ?

A can assign new values


)
B can create new data types
)
C nothing in common
)
D they are same
)
Question 14
What is the similarity between enum and struct ?

A can assign new values


)
B can create new data types
)
C nothing in common
)
D they are same
)
Ans: B
Question 15
What is recursion ?

A looping
)
B a function calls another function repeatedly
)
C a function calls repeatedly
)
D function calls itself repeatedly
)
Question 15
What is recursion ?

A looping
)
B a function calls another function repeatedly
)
C a function calls repeatedly
)
D function calls itself repeatedly
)
Ans: D
Question 16
Where did local variable get stored ?

A Disk
)
B Stack
)
C Heap
)
D Register
)
Question 16
Where did local variable get stored ?

A Disk
)
B Stack
)
C Heap
)
D Register
)
Ans: B
Question 17
Which of the following is a User-defined data type?

A struct {char name[10], int age};


)
B typedef enum {Mon, Tue, Wed, Thu, Fri} Workdays;
)
C typedef int Boolean;
)
D all of the mentioned
)
Question 17
Which of the following is a User-defined data type?

A struct {char name[10], int age};


)
B typedef enum {Mon, Tue, Wed, Thu, Fri} Workdays;
)
C typedef int Boolean;
)
D all of the mentioned
)
Ans: D
Question 18
Which of the following cannot be a variable name in C?

A friend
)
B true
)
C volatile
)
D export
)
Question 18
Which of the following cannot be a variable name in C?

A friend
)
B true
)
C volatile
)
D export
)

Ans: C
Question 19
Which keyword can be used for coming out of recursion?

A break
)
B return
)
C exit
)
D Both break and return
)
Question 19
Which keyword can be used for coming out of recursion?

A break
)
B return
)
C exit
)
D Both break and return
)
Ans: B
Question 20
What will be output of the following program if argument passed to
command lines are : prog 1 4 2.

#include<stdio.h>
int main(int argc, char *argv[])
{
while(argc--)
printf("%s\n",argv[argc]);
return 0;
}
A 241
)

B Garbage-value 2 4 1
)

C Garbage-value 2 4 1 prog
)

D Infinte Loop
)
A 241
)

B Garbage-value 2 4 1
)

C Garbage-value 2 4 1 prog
)

D Infinte Loop
)

Ans: A
Question 21
int **ptr; is

A) pointer to pointer
B) pointer to integer
C) Invalid
D) None of the above
Question 21
int **ptr; is

A) pointer to pointer
B) pointer to integer
C) Invalid
D) None of the above

Ans: A
Question 22
What argv means in command line argument?

A Array of pointers
)
B pointer to a character array
)
C Array of character pointers
)
D Array of Strings
)
Question 22
What argv means in command line argument?

A Array of pointers
)
B pointer to a character array
)
C Array of character pointers
)
D Array of Strings
)

Ans: C
Question 23
What is the first argument of command line ?

A File Name
)
B Program Designation
)
C argument passed by user
)
D Program
)
Question 23
What is the first argument of command line ?

A File Name
)
B Program Designation
)
C argument passed by user
)
D Program
)
Ans: A
Question 24
What does argc and argv indicate in int main(int argc, char
*argv[]) ?

A argument constant, argument variable


)
B argument count, argument vector
)
C argument constant, argument vector
)
D argument count, argument variable
)
Question 24
What does argc and argv indicate in int main(int argc, char
*argv[]) ?

A argument constant, argument variable


)
B argument count, argument vector
)
C argument constant, argument vector
)
D argument count, argument variable
)
Ans: B
Question 25
What is the output of this C code?

#include <stdio.h>
int main()
{
float x = 'a';
printf("%f", x);
return 0;
}
A 97.000000
)

B run time error


)

C a.0000000
)

D a
)
A 97.000000
)

B run time error


)

C a.0000000
)

D a
)

Ans: A
Question 26
What is the size of an int data type?

A 4 Bytes
)
B 8 Bytes
)
C Depends on the system/compiler
)
D Cannot be determined
)
Question 26
What is the size of an int data type?

A 4 Bytes
)
B 8 Bytes
)
C Depends on the system/compiler
)
D Cannot be determined
)

Ans: C
Question 27
Predict the output:

#include <stdio.h> else


int main() printf("b is small");
{ return 0;
unsigned int a = -1; }
signed int b = 10;
if(a < b)
printf("a is small");

A) a is small B) b is small C) Error D) Both


statements
Question 27
Predict the output:

#include <stdio.h> else


int main() printf("b is small");
{ return 0;
unsigned int a = -1; }
signed int b = 10;
if(a < b)
printf("a is small");

A) a is small B) b is small C) Error D) Both


Ans: B statements
Question 28
Predict the output:

#include <stdio.h>
int main()
{
if(1)
printf("hai");
else
printf("hello");
return 0;
}

A) Error B) hai C) hello D) No output


Question 28
Predict the output:

#include <stdio.h>
int main()
{
if(1)
printf("hai");
else
printf("hello");
return 0;
}

A) Error B) hai C) hello D) No output


Ans: B
Question 29
Predict the output:

#include<stdio.h>
int main()
{
if(5,4,3,2,1,0)
printf("True");
else
printf("False");
return 0;
}

A) True B) False C) True False D) Error


Question 29
Predict the output:

#include<stdio.h>
int main()
{
if(5,4,3,2,1,0)
printf("True");
else
printf("False");
return 0;
}

A) True B) False C) True False D) Error


Ans: B
Question 30
Predict the output:

#include<stdio.h>
int main()
{
if(printf("Hai"))
printf("Face");
else
printf("Focus");
return 0;
}

A) Error B) HaiFace C) HaiFocus D) Face


Question 30
Predict the output:

#include<stdio.h>
int main()
{
if(printf("Hai"))
printf("Face");
else
printf("Focus");
return 0;
}

A) Error B) HaiFace C) HaiFocus D) Face


Ans: B
Question 31
Predict the output:

#include<stdio.h>
int main()
{
if(-1)
printf("True");
else
printf("False");
return 0;
}

A) True B) False C) True False D) Error


Question 31
Predict the output:

#include<stdio.h>
int main()
{
if(-1)
printf("True");
else
printf("False");
return 0;
}

A) True B) False C) True False D) Error


Ans: A
Question 32
Predict the output:

#include<stdio.h>
int main()
{
int a = 100, b = 300;
if(a > 50)
a = 200;
b = 400;
printf("%d", b);
return 0;
}

A) 400 B) 300 C) 100 D) Error


Question 32
Predict the output:

#include<stdio.h>
int main()
{
int a = 100, b = 300;
if(a > 50)
a = 200;
b = 400;
printf("%d", b);
return 0;
}

A) 400 B) 300 C) 100 D) Error


Ans: A
Question 33
Predict the output:

#include<stdio.h> case 3 : printf("Three");


int main() default:
{ printf("Invalid
int a = 2; Option");
switch(a) }
{ return 0;
case 1 : printf("One"); }
case 2 : printf("Two");

A) B) One Two C) Invalid Option


D) None of these
OneTwoThree
Question 33
Predict the output:

#include<stdio.h> case 3 : printf("Three");


int main() default:
{ printf("Invalid
int a = 2; Option");
switch(a) }
{ return 0;
case 1 : printf("One"); }
case 2 : printf("Two");

A) B) One Two C) Invalid Option


D) None of these
Ans: D
OneTwoThree
Question 34
Predict the output:

#include<stdio.h>
int main()
{
int a = 2;
if(a-- , --a, a)
printf("Tom");
else
printf("Jerry");
return 0;
}

A) Tom B) Jerry C) Tom Jerry D) Error


Question 34
Predict the output:

#include<stdio.h>
int main()
{
int a = 2;
if(a-- , --a, a)
printf("Tom");
else
printf("Jerry");
return 0;
}

A) Tom B) Jerry C) Tom Jerry D) Error


Ans: B
Question 35
Predict the output:

#include<stdio.h>
int main()
{
printf("%d", sizeof('a'));
return 0;
}

A) 2 Or 4 B) 1 Or 3 C) Garbage D) ASCII value of


Value a
Question 35
Predict the output:

#include<stdio.h>
int main()
{
printf("%d", sizeof('a'));
return 0;
}

A) 2 Or 4 B) 1 Or 3 C) Garbage D) ASCII value of


Ans: A Value a
Question 36
Predict the output:

#include<stdio.h>
int main()
{
int a = b = c = d = 10;
printf("%d,%d,%d,%d", a, b, c, d);
}

A) Error B) C) GV,GV,GV,10 D) GV,GV,GV,GV


10,10,10,10
Question 36
Predict the output:

#include<stdio.h>
int main()
{
int a = b = c = d = 10;
printf("%d,%d,%d,%d", a, b, c, d);
}

A) Error B) C) GV,GV,GV,10 D) GV,GV,GV,GV


Ans: A 10,10,10,10
Question 37
Predict the output:

#include<stdio.h>
int main()
{
int sum;
char ch1 = 'a';
char ch2 = 'b';
sum = ch1 + ch2;
printf("%d", sum);
return 0;
}

A) Error B) 195 C) 201 D) “ab”


Question 37
Predict the output:

#include<stdio.h>
int main()
{
int sum;
char ch1 = 'a';
char ch2 = 'b';
sum = ch1 + ch2;
printf("%d", sum);
return 0;
}

A) Error B) 195 C) 201 D) “ab”


Ans: B
Question 38
Predict the output:

#include<stdio.h>
int main()
{
float a = 1.1; double b = 1.1;
if(a == b)
printf("equal");
else
printf("not equal");
return 0;
}

A) equal B) not equal C) Error D) equal not


equal
Question 38
Predict the output:

#include<stdio.h>
int main()
{
float a = 1.1; double b = 1.1;
if(a == b)
printf("equal");
else
printf("not equal");
return 0;
}

A) equal B) not equal C) Error D) equal not


Ans: B equal
Question 39
What is the return type of printf() and scanf() function ?

A) int
B) float
C) char
D) void
Question 39
What is the return type of printf() and scanf() function ?

A) int
B) float
C) char
D) void

Ans: A
Question 40
Predict the output:

#include<stdio.h>
int main()
{
printf("%%%%");
return 0;
}

A) %%%% B) %% C) Error D) Garbage


Value
Question 40
Predict the output:

#include<stdio.h>
int main()
{
printf("%%%%");
return 0;
}

A) %%%% B) %% C) Error D) Garbage


Ans: B Value
Question 41
Predict the output:

#include<stdio.h>
int main()
{
printf("%d");
return 0;
}

A) 0 B) 1 C) Error D) Garbage
Value
Question 41
Predict the output:

#include<stdio.h>
int main()
{
printf("%d");
return 0;
}

A) 0 B) 1 C) Error D) Garbage
Ans: D Value
Question 42
Predict the output:

#include<stdio.h>
int main()
{
100;
printf("%d“, 100);
return 0;
}

A) Error B) 100 C) 100100 D) Garbage


Value
Question 42
Predict the output:

#include<stdio.h>
int main()
{
100;
printf("%d“, 100);
return 0;
}

A) Error B) 100 C) 100100 D) Garbage

Ans: B Value
Question 43
Predict the output:

#include<stdio.h>
int main()
{
printf("%d", printf("FACE"));
return 0;
}

A) FACE4 B) Error C) FACE D) Garbage


Value
Question 43
Predict the output:

#include<stdio.h>
int main()
{
printf("%d", printf("FACE"));
return 0;
}

A) FACE4 B) Error C) FACE D) Garbage


Ans: A Value
Question 44
Predict the output:

#include<stdio.h>
int main()
{
printf("FACE"+2);
return 0;
}

A) FACE B) FA C) CE D) Garbage
Value
Question 44
Predict the output:

#include<stdio.h>
int main()
{
printf("FACE"+2);
return 0;
}

A) FACE B) FA C) CE D) Garbage
Ans: C Value
Question 45
Predict the output:

#include<stdio.h>
int main()
{
int a = 2000;
printf("%2d", a);
return 0;
}

A) 2000 B) 20 C) 4000 D) Garbage


Value
Question 45
Predict the output:

#include<stdio.h>
int main()
{
int a = 2000;
printf("%2d", a);
return 0;
}

A) 2000 B) 20 C) 4000 D) Garbage


Ans: A Value
Question 46
Predict the output:

#include<stdio.h>
int main()
{
int x = 10, c, d, a;
d = !x + x;
c = x && x || printf("hai\t");
a = x && x && printf("hai\t");
printf("%d,%d,%d", d, c, a);
return 0;
}

A) Error B) hai 10,1,1 C) 1,1,hai,hai D) 0,1,1,hai


Question 46
Predict the output:

#include<stdio.h>
int main()
{
int x = 10, c, d, a;
d = !x + x;
c = x && x || printf("hai\t");
a = x && x && printf("hai\t");
printf("%d,%d,%d", d, c, a);
return 0;
}

A) Error B) hai 10,1,1 C) 1,1,hai,hai D) 0,1,1,hai


Ans: B
Question 47
Predict the output:

#include<stdio.h>
int main()
{
int x, a = 10;
x = a == 10 ? printf("hai\t") : printf("hello\n");
printf("%d", x);
return 0;
}

A) hai 4 B) Error C) hello 3 D) hai hello


Question 47
Predict the output:

#include<stdio.h>
int main()
{
int x, a = 10;
x = a == 10 ? printf("hai\t") : printf("hello\n");
printf("%d", x);
return 0;
}

A) hai 4 B) Error C) hello 3 D) hai hello


Ans: A
Question 48
Predict the output:

#include<stdio.h>
int main()
{
unsigned int x = 0xffff;
~x;
printf("%x", x);
return 0;
}

A) ffff B) 0000 C) 0xffff D) 0x0000


Question 48
Predict the output:

#include<stdio.h>
int main()
{
unsigned int x = 0xffff;
~x;
printf("%x", x);
return 0;
}

A) ffff B) 0000 C) 0xffff D) 0x0000


Ans: A
Question 49
Predict the output:

#include<stdio.h>
int main()
{
int a = 10, b = 20, c = 5, d;
d = a < b < c;
printf("%d", d);
return 0;

A) 0 B) 1 C) 5 D) Error
Question 49
Predict the output:

#include<stdio.h>
int main()
{
int a = 10, b = 20, c = 5, d;
d = a < b < c;
printf("%d", d);
return 0;

A) 0 B) 1 C) 5 D) Error
Ans: B
Question 50
Predict the output:

#include<stdio.h>
int main()
{
int x = 10, y = -10;
printf("%x\t", x << 2);
printf("%x", y >> 2);
return 0;

A) 28 fffd B) 40,-3 C) 0,1 D) Error


Question 50
Predict the output:

#include<stdio.h>
int main()
{
int x = 10, y = -10;
printf("%x\t", x << 2);
printf("%x", y >> 2);
return 0;

A) 28 fffd B) 40,-3 C) 0,1 D) Error


Ans: A
Question 51
Predict the output:

#include<stdio.h>
int main()
{
int a, x = 2, 3, 4, 5;
a=1, 2, 3, 4, 5;
printf("%d,%d", x, a);
return 0;

A) 5,1 B) 2,1 C) 5,5 D) Error


Question 51
Predict the output:

#include<stdio.h>
int main()
{
int a, x = 2, 3, 4, 5;
a=1, 2, 3, 4, 5;
printf("%d,%d", x, a);
return 0;

A) 5,1 B) 2,1 C) 5,5 D) Error

Ans: D
Question 52
Predict the output:

#include<stdio.h>
int main()
{
int a, x = (2, 3, 4, 5);
a = 1, 2, 3, 4, 5;
printf("%d,%d", x, a);
return 0;

A) 5,1 B) 2,1 C) 5,5 D) Error


Question 52
Predict the output:

#include<stdio.h>
int main()
{
int a, x = (2, 3, 4, 5);
a = 1, 2, 3, 4, 5;
printf("%d,%d", x, a);
return 0;

A) 5,1 B) 2,1 C) 5,5 D) Error


Ans: A
Question 53
Predict the output:

#include<stdio.h>
int main()
{
int i = 10, j = 2, k = 0, m;
m = ++i || ++j && ++k;
printf("%d,%d,%d,%d", i, j, k, m);
return 0;

A) 11,3,1,1 B) 11,2,0,1 C) 11,3,1,0 D) 10,2,0,1


Question 53
Predict the output:

#include<stdio.h>
int main()
{
int i = 10, j = 2, k = 0, m;
m = ++i || ++j && ++k;
printf("%d,%d,%d,%d", i, j, k, m);
return 0;

A) 11,3,1,1 B) 11,2,0,1 C) 11,3,1,0 D) 10,2,0,1


Ans: B
Question 54
Predict the output:

#include<stdio.h>
int main()
{
int i = 10, j = 2, k = 0, m;
m = ++i && ++j && ++k;
printf("%d,%d,%d,%d", i, j, k, m);
return 0;

A) 11,3,1,1 B) 11,2,0,1 C) 11,3,1,0 D) 10,2,0,1


Question 54
Predict the output:

#include<stdio.h>
int main()
{
int i = 10, j = 2, k = 0, m;
m = ++i && ++j && ++k;
printf("%d,%d,%d,%d", i, j, k, m);
return 0;

A) 11,3,1,1 B) 11,2,0,1 C) 11,3,1,0 D) 10,2,0,1


Ans: A
Question 55
Predict the output:

#include<stdio.h>
int main()
{
int x, a = 10;
x = 9 * 5 + 7 / 3 – 6 + a;
printf("%d", x);
return 0;

A) 51 B) 51.5 C) 31 D) None of these


Question 55
Predict the output:

#include<stdio.h>
int main()
{
int x, a = 10;
x = 9 * 5 + 7 / 3 – 6 + a;
printf("%d", x);
return 0;

A) 51 B) 51.5 C) 31 D) None of these


Ans: A
Question 56
Predict the output:

#include<stdio.h>
int main()
{ 0
int var = 20;
printf("%d", var);
{
int var = 30;
printf("%d", var);
}
return 0;
}

}A) Error B) 20,30 C) 20,20 D) Garbage


Value
Question 56
Predict the output:

#include<stdio.h>
int main()
{ 0
int var = 20;
printf("%d", var);
{
int var = 30;
printf("%d", var);
}
return 0;
}

}A) Error B) 20,30 C) 20,20 D) Garbage


Ans: A Value
Question 57
Predict the output:

#include<stdio.h>
int main()
{
int i = -1;
-i;
printf("%d,%d", i, -1);
return 0;

A) -1,1 B) -1,-1 C) 1,1 D) 0,1


Question 57
Predict the output:

#include<stdio.h>
int main()
{
int i = -1;
-i;
printf("%d,%d", i, -1);
return 0;

A) -1,1 B) -1,-1 C) 1,1 D) 0,1


Ans: B
Question 58
Predict the output:

#include<stdio.h>
int main()
{
int a = - - 2;
printf("%d", a);
return 0;
}

A) 2 B) -2 C) 1 D) Error
Question 58
Predict the output:

#include<stdio.h>
int main()
{
int a = - - 2;
printf("%d", a);
return 0;
}

A) 2 B) -2 C) 1 D) Error
Ans: A
Question 59
Which of the following special symbol is allowed in a variable
name?

A) *(asterisk)
B) _(underscore
C) .(dot)
D) –(hyphen)
Question 59
Which of the following special symbol is allowed in a variable
name?

A) *(asterisk)
B) _(underscore
C) .(dot)
D) –(hyphen)
Ans: B
THANK YOU

You might also like