UNIT9: pointer types in c

UNIT9: pointer types in c

University

7 Qs

quiz-placeholder

Similar activities

Linked List 2

Linked List 2

University

10 Qs

TECHNICAL C POINTER JIT04

TECHNICAL C POINTER JIT04

University

8 Qs

DSA quiz 3 set 1

DSA quiz 3 set 1

University

10 Qs

Programming in C

Programming in C

University

10 Qs

DS QUIZ-1 (unit-1)

DS QUIZ-1 (unit-1)

University

10 Qs

DataStruct1

DataStruct1

University

5 Qs

Pointer Basic in C/C++

Pointer Basic in C/C++

University

10 Qs

Quiz: Unit 9

Quiz: Unit 9

University

7 Qs

UNIT9: pointer types in c

UNIT9: pointer types in c

Assessment

Quiz

Computers

University

Easy

Created by

Abhishek Pandey

Used 7+ times

FREE Resource

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Is the NULL pointer same as an uninitialized pointer

True

false

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

int *ptr, p;

both ptr and p are pointers

both ptr and p are not pointers

ptr is a pointer to integer, p is not

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is NOT a pointer variable declaration

int *number;


char *name[20];

double *dp;


float height[];

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

If a pointer variable points another pointer value known as_____

Array of pointers

Run time error

pointer to pointer

multidimensional pointer

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is wild pointer in c___

  • a pointer which we need to write in future

  • a pointer which has bad naming convention

  • a point which has not initialized

  • a pointer which has a limit

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

__________can stored the address of any types of data.

Wild ponter

dangling pointer

Generic pointer

NULL

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Assign the null value is called

wild pointer

dangling

NULL pointer

all