[Updated] Goldman Sachs Aptitude Test Questions and Answers
Practice List of TCS Digital Coding Questions !!!
Take 50+ FREE!! Online Data Interpretation Mock test to crack any Exams.

Dynamic Memory Allocation Questions

NA
SHSTTON
54
Solv. Corr.
104
Solv. In. Corr.
158
Attempted
0 M:0 S
Avg. Time

1 / 18

What will print out?

#include
void main()
{
char *p1="name";
char *p2;
p2=(char*)malloc(20);
memset (p2, 0, 20);
while(*p2++ = *p1++);
printf("%s\n",p2);
}


Aname

Bempty string

Cnull values

DNone of these

Answer: Option B

Explanation:

In the given question expression while(*p2++ = *p1++); loop is evaluating the expression: *p2++ = *p1++. The while loop expression *p2 = *p1 is evaluated using the result of *p1. However, this value is still assigned to *p2 even if the expression evaluates as false or (0).


As in each step p1 and p2 address is incremented, when while loop terminated y that time p1 and p2 will point to null. so that when p2 printed blank printed. even p1 will too print blank (empty string)



Workspace

NA
SHSTTON
27
Solv. Corr.
30
Solv. In. Corr.
57
Attempted
0 M:0 S
Avg. Time

2 / 18

What is the output of the following C Program?

#include
#include
void main()
{
int *mptr, *cptr;
mptr = (int*)malloc(sizeof(int));
printf("%d",*mptr);
cptr = (int*)calloc(sizeof(int),1);
printf("%d",*cptr);
}


A0 0

Bgarbage-value 0

C0 garbge value

DCompilation Error

Answer: Option B

Explanation:

The memory space allocated by malloc is uninitialized,
whereas calloc returns the allocated memory space initialized to zeros.

Workspace

NA
SHSTTON
6
Solv. Corr.
25
Solv. In. Corr.
31
Attempted
0 M:0 S
Avg. Time

3 / 18

What is the output of the following 'C' program ?
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
typedef struct
{
char *name;
} Addr;
int main()
{
Addr *s;
char comm[10];
char *str = "Hello"; 
s = (Addr *)malloc(sizeof(Addr)); 
printf("Enter a name"); 
fgets(comm, 10,stdin);
s->name = (char*)malloc(sizeof(char[strlen(comm)]));
strcpy(s->name, comm); 
strcat(str,s->name); 
printf("%s", str);
}

// for the input: india

Aindia

BHello india

CSegmentation fault

DCompilation Error

ENone of these

Answer: Option C

Explanation:

Here is no explanation for this answer

Workspace

NA
SHSTTON
9
Solv. Corr.
73
Solv. In. Corr.
82
Attempted
0 M:0 S
Avg. Time

4 / 18

What is the output of the following 'C' program ?
#define MAX 50 
int fun1()
{
char *s1;
s1=(char *) malloc (MAX*sizeof(char));
s1="hello";
printf("%d",s1);
free(s1);
}
int fun2() 
{
char *s;
s=(char *) malloc (MAX*sizeof(char));
strcpy(s,"hello");
printf("%d",s);
free(s);
}
int main ()
{
fun1();
fun2();
return 0;
}

ACompilation Error

Bhello hello

CSegmentation fault

Dhello Segmentation fault

Answer: Option D

Explanation:

Here is no explanation for this answer

Workspace

NA
SHSTTON
28
Solv. Corr.
110
Solv. In. Corr.
138
Attempted
0 M:0 S
Avg. Time

5 / 18

What will be the output of the program?

#include
#include

int main()
{
int *p;
p = (int *)malloc(20); /* Assume p has address of 1314 */
free(p);
printf("%u", p);
return 0;
}


A1314

BGarbage value

C1316

DRandom address

Answer: Option D

Explanation:

the answer is 12157648 ie random values


Workspace

NA
SHSTTON
9
Solv. Corr.
31
Solv. In. Corr.
40
Attempted
0 M:0 S
Avg. Time

6 / 18

What is the output of the following 'C' program ?

#include
#include
int main()
{
int *p;
p = (int *)malloc(20);
printf("%d\n", sizeof(p));
free(p);
return 0;
}


A4

B2

C8

DGarbage value

Answer: Option B

Explanation:

Here is no explanation for this answer

Workspace

NA
SHSTTON
19
Solv. Corr.
60
Solv. In. Corr.
79
Attempted
0 M:0 S
Avg. Time

7 / 18

What is the output of the following C Program?

#include
#include
#define MAXROW 3
#define MAXCOL 4

int main()
{
int (*p)[MAXCOL];
p = (int (*) [MAXCOL])malloc(MAXROW *sizeof(*p));
return 0;
}


A56 bytes

B128 bytes

C24 bytes

D12 bytes

Answer: Option C

Explanation:

Here is no explanation for this answer

Workspace

NA
SHSTTON
110
Solv. Corr.
469
Solv. In. Corr.
579
Attempted
0 M:40 S
Avg. Time

8 / 18

What is the output of the program on a 32 bit Operating System?

#include
#include
void main () {
double val = 12.34;
double *dp = &val;
char *cp;
cp = (char*)malloc(sizeof(char) * 20);
sprintf (cp, "hello world");
printf("%d %d %d", sizeof(cp), sizeof(dp), sizeof(val));
}


A4 4 8

B20 8 8

C11 8 8

D20 4 8

Answer: Option A

Explanation:

size of char in c is 8 bytes 

size of double in c is 8 bytes 

size of double in c is 8 bytes 


Workspace

NA
SHSTTON
62
Solv. Corr.
109
Solv. In. Corr.
171
Attempted
0 M:14 S
Avg. Time

9 / 18

What is the output of the program?

#include
#include
void main()
{
char *pl= "word";
char *p2;
p2=(char*)malloc(10);

memset(p2, 'A', 10);
while(*p2++ = *pl++)
printf("%s ", p2);
}


AAAAAAworda AAAAAwordA AAAAwordA AAwordA

BAAAAAAAAA AAAAAAAA AAAAAAA AAAAAA

CAAAAAword AAAAAwor AAAAAwo AAAAAw

DwordAAAAA wordAAAa wordAAA wordAA

Answer: Option B

Explanation:

Here is no explanation for this answer

Workspace

NA
SHSTTON
5
Solv. Corr.
18
Solv. In. Corr.
23
Attempted
0 M:0 S
Avg. Time

10 / 18

What will be output of the following "c" code?
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
void main()
{
char *p = "Hello";
char *q = "world";
int l1 = strlen (p);
int l2 = strlen (q);
char *l = (char*) malloc (sizeof (l1 + l2)+1);
while (*p) *l++ = *p++;
while (*q) *l++ = *q++;
*l = '\0'; 
}

ASegmentation Fault

BCompilation Error

CNo output No Error

DNone of these

Answer: Option C

Explanation:

Here is no explanation for this answer

Workspace

C Programming Dynamic Memory Allocation Questions and Answers pdf

At C Programming topic Dynamic Memory Allocation page No: 1 you will find list of 10 practice questions, tips/trick and shortcut to solve questions, solved questions, quiz, and download option to download the whole question along with solution as pdf format for offline practice. You can practice all the listed C Programming Dynamic Memory Allocation topic questions offline too, by downloading the MCQs practice question of Dynamic Memory Allocation with detail solution, with formula/Tips & Tricks, with Solved examples and with top-rated users answers, which will give you best answer ascross webs. It is one of the perfect Dynamic Memory Allocation e-book pdf covering all types of questions in detail. These C Programming test with answers pdf cover all types of question asked in IIFT, XAT, SNAP, GRE, GMAT, NMAT, CMAT, MAT or for IT companies written exam like Wipro, HCL, Infosys, Accenture, Government exams, IBPS Exams etc. There are multiple formats to download your online free C Programming Dynamic Memory Allocation e-book, like fully solved, unsolved questions with Answers sheet. Even you can customize your ebook format by adjusting the given options in the download section to make it your one of the best C Programming topic-based ebook. It is recommended to bookmark this page C Programming Dynamic Memory Allocation for your preparation. Most of the students and fresher candidates finding it hard to clear the C Programming section in exams. Here Given Dynamic Memory Allocation practice questions, quiz, fully solved questions, tips & trick and Mock tests, which include question from each topic will help you to excel in Dynamic Memory Allocation. Each test has all the basics questions to advanced questions with answer and explanation for your clear understanding, you can download the test result as pdf for further reference.

At C Programming topic Dynamic Memory Allocation, you will get multiple online quiz difficulty wise, which will have a total of 6 quizzes, categorized as easy, medium, and moderate level. While preparing for any Dynamic Memory Allocation, take all the list quiz and check your preparation level for that topic. Each quiz have 10 different question, which needs to be answered in 20 min., all the listed quiz here is free, however, you will get only one chance for each quiz to attempt(Take Quiz seriously), so it is always recommended to take one quiz in each section before you start solving Dynamic Memory Allocation MCQs practice question, and one after solving all the question of the respective level, you can refer back your Dynamic Memory Allocation quiz result any time or you can download it as pdf for reference.

C Programming Dynamic Memory Allocation Customize Online Mock Test

This is own type of mock test, where At this C Programming Dynamic Memory Allocation MCQs mock test section, you will able to attempt only the questions related to Dynamic Memory Allocation, in that question will be a different level, important, and all the questions will be part of some of the mock tests across Q4interview FREE Mock test. You need to choose the topic as Dynamic Memory Allocation, and click on Double click to generate your customize mock test. While attempting the mock test you need to choose any of the one options out of given option. It is recommended to go through the direction given along with each question, as these questions will be randomly and so that same direction will not be applicable across the entire test. Once you submit your mock test, the result will be generated for Dynamic Memory Allocation Customize mock test, where your performance point points will be highlighted. Q4interview analysis every single point which helps you to improve your topic understanding and help you to know your type of mistakes and way to improve Dynamic Memory Allocation questions, by providing the same type of practice questions from practice exercise. The best part of this Dynamic Memory Allocation, all these mock tests listed here are free and you can take as Many time, as many you want. When you continue to give Dynamic Memory Allocation Customize Online Mock Test here regularly, then you will understand how much you have developed your accuracy on a topic, after that you will be able to decide how much attention you need to focus on. Your continued practice will increase your confidence, speed and thinking ability intensely, the Dynamic Memory Allocation Customize topic on which you will practice more will beneficial for you in future during campus placement.Dynamic Memory Allocation Mock Tests

C Programming Dynamic Memory Allocation Quiz Online Test

The details of the C Programming Dynamic Memory Allocation quiz are as follows. There are 10 questions for you. You have to answer them in 20 minutes. Within 20 minutes you have to see the errors in the sentences given as a question. Four options are also given to you, and you have to choose your opinion. You must be confident in your answer that the choices are difficult. Therefore, below we provide you with some information about C Programming Dynamic Memory Allocation that you see and keep them in mind while answering questions.

C Programming Dynamic Memory Allocation MCQs Practice Questions with Answer

On this Dynamic Memory Allocation section of page you will find the easiest quickest ways to solve a question, formulas, shortcuts and tips and tricks to solve various easiest methods to solve Dynamic Memory Allocation Question Quickly. It contains all the C Programming topic Dynamic Memory Allocation questions which are common in any of the preliminary exams of any company. The solution is provided along with the questions. The practice of these questions is a must as they are easy as well as scoring and asked in all the exams They will confirm the selection if all the questions attempted wisely with little practice. It is recommanded to Take Mock test based on C Programming topic and Dynamic Memory Allocation topic based quiz.

C Programming Dynamic Memory Allocation solved examples question

Clarity of concepts is a must if you want to master the skill of solving C Programming problems. This page contains sample C Programming Dynamic Memory Allocation questions and answers for freshers and competitive exams. Dynamic Memory Allocation Questions with the detailed description, the explanation will help you to master the topic. Here solved examples with detailed answer description, explanations are given and it would be easy to understand. How to solve qDynamic Memory AllocationC Programming? Here are some examples solved with the Common Rules/tricks/tips of C Programming. Enhance your chance to score maximum marks in C Programming sections through. Error Spotting Grammar Questions Online Test for Free. Fully solved Sentence Formation MCQs questions with detailed answer description. C Programming is an important topic for any exams but most aspirants find it difficult. You need to learn various tricks tips, rules, etc to solve quickly. At this page, you will find frequently asked Dynamic Memory Allocation questions or problems with solutions, shortcuts, formulas for all-important competitive exams like IT companies exams, interviews. It is always a best practice to go through the example and understand the types of question and way to solve it, so let's do some examples to calculate efficiency, read through all the given here solved examples. You can post your solution, tips, trick and shortcut if you have any in respect to questions.

You can get here fully solved Dynamic Memory Allocation examples with a detailed answer and description. You can solve Dynamic Memory Allocation problems with solutions, the questions by companies wise by filtering the questions, additionally, you can check what type of questions are being asked in IT companies Written Round from Dynamic Memory Allocation. Dynamic Memory Allocation became one of the most important sections in the entire competitive exams, Companies Campus, and entrance online test. Go through Dynamic Memory Allocation Examples, Dynamic Memory Allocation sample questions. You can Evaluate your level of preparation in Dynamic Memory Allocation by Taking the Q4Interivew Dynamic Memory Allocation Online Mock Test based on most important questions. All the Dynamic Memory Allocation practice questions given here along with answers and explanations are absolutely free, you can take any number of time any mock Test.

Why C Programming Dynamic Memory Allocation?

In this practice section, you can practice C Programming Questions based on "Dynamic Memory Allocation" and improve your skills in order to face the interview, competitive examination, IT companies Written exam, and various other entrance tests (CAT, GATE, GRE, MAT, Bank Exam, Railway Exam etc.) with full confidence.

Where can I get C Programming Dynamic Memory Allocation questions and answers with explanation?

Q4Interview provides you lots of fully solved C Programming (Dynamic Memory Allocation) questions and answers with Explanation. Solved examples with detailed answer description, explanation are given and it would be easy to understand. You can download C Programming Dynamic Memory Allocation quiz questions with answers as PDF files and eBooks.

Where can I get C Programming Dynamic Memory Allocation Interview Questions and Answers (objective type, multiple-choice, quiz, solved examples)?

Here you can find objective type C Programming Dynamic Memory Allocation questions and answers for interview and entrance examination. Multiple choice and true or false type questions are also provided.