DMA and Stacks

DMA and Stacks

University

10 Qs

quiz-placeholder

Similar activities

Tutorium 1 - Prog2

Tutorium 1 - Prog2

University

11 Qs

QUIZ 7 PBO

QUIZ 7 PBO

University

10 Qs

Fundamentals of Algorithms - Unit 1 - Test 1

Fundamentals of Algorithms - Unit 1 - Test 1

University

15 Qs

python quiz

python quiz

6th Grade - Professional Development

10 Qs

Java Programming-1

Java Programming-1

University

10 Qs

Bài tập trắc nghiệm C++(tiếp)

Bài tập trắc nghiệm C++(tiếp)

3rd Grade - University

10 Qs

8051-MCQ

8051-MCQ

University

15 Qs

 QUIZ  MS Core Java Quiz-3 2023

QUIZ MS Core Java Quiz-3 2023

University

11 Qs

DMA and Stacks

DMA and Stacks

Assessment

Quiz

Computers

University

Practice Problem

Hard

Created by

RAVIKANTH K

Used 1+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which function is used to delete the allocated memory space?

Malloc()

free()

Calloc()

None

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

#include <stdio.h>

void main() {

int ptr = (int )malloc(sizeof(int));

*ptr = 10;

free(ptr);

p = 5;

printf("%d", ptr);

}

Compilation error

5

0

Garbage value

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What function should be used to free the memory allocated by calloc() ?

dealloc();

malloc(variable_name, 0)

free();

memalloc(variable_name, 0)

4.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

How to increase the size of dynamically allocated array?

realloc(variable_name, value);

malloc(variable_name, value);

calloc(variable_name, value);

I dont know

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt


What is correct about calloc() function?

Allocates the space for elements of an array.

Initializes the elements to zero.

If space is insufficient returns a NULL pointer.

All of these

6.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

What is the functionality of realloc()?

Change the location of memory allocated by malloc() or calloc().

Reallocates memory deleted by free() function.

It is used to modify the size of the previously allocated memory space.

None of these

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Process of inserting an element in stack is called ____________

Create

Push

Evaluation

Pop

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?

Discover more resources for Computers