June 13, 2021 in C and CPP
PROGRAMMING AND PROBLEM SOLVING THROUGH ‘C’ LANGUAGE
1.7. The values of the following storage classes are initialized by the compiler
A) auto and extern
B) register and static
C) static and extern
D) auto and register
June 13, 2021 in C and CPP
1.7. The values of the following storage classes are initialized by the compiler
A) auto and extern
B) register and static
C) static and extern
D) auto and register
June 13, 2021 in C and CPP
1.6. C uses pointers explicitly with:
A) Arrays
B) Structures
C) Functions
D) All of the above
June 13, 2021 in C and CPP
1.5. What will assign in s, when we use the following pair of statements in c-program:
char *s;
s = “my car color is : white”;
A) first character of the string constant
B) complete string
C) address of the string storage
D) is a logical error
June 13, 2021 in C and CPP
1.4. What is printed?
for ( i=1; i<=5;)
i++;
printf(“%d”,i)
A) 23456
B) 12345
C) 123456
D) error
June 13, 2021 in C and CPP
1.3. An Array’s name is a:
A) Pointer constant
B) Pointer variable
C) Variable name
D) None of the above
June 13, 2021 in C and CPP
1.2. When we execute X++; the value of the expression X++ :
A) is equal to the original value of X
B) is one more than the original value of X
C) is X times more than the original value of X
D) none of the above
June 13, 2021 in C and CPP
1.1. In a for loop with a multi statement loop body, semicolons should appear following:
A) the for statement itself
B) the crossing brace in the multiple statement loop body
C) each statement within the loop body and the test expression
D) each statement within the loop only
June 5, 2021 in Learning, MySql, Technology, Tips and Tricks
1. What is clustering in MySQL?
2. What Is comment in MySQL?
3. Why clustering is used in MySQL?
4. How comment is useful in MySQL?
5. Column level, Table level, Database level comment.
July 19, 2020 in Learning, Tips and Tricks
How to change in angular project and run locally after that upload on live server after angular deployment
nd serve

ng build --prod
