Sasi-AN-02.05.2024

Sasi-AN-02.05.2024

Professional Development

15 Qs

quiz-placeholder

Similar activities

UNIT 9-P1- VOCAB PART 1 & 2

UNIT 9-P1- VOCAB PART 1 & 2

University - Professional Development

16 Qs

SASI -BATCH 3-DAY5-AN(24.11.23)

SASI -BATCH 3-DAY5-AN(24.11.23)

Professional Development

15 Qs

Cycle 4: Session 2 Review.

Cycle 4: Session 2 Review.

Professional Development

11 Qs

Training evaluation Module 3

Training evaluation Module 3

Professional Development

11 Qs

Cinema and TV shows

Cinema and TV shows

University - Professional Development

10 Qs

Easter Quiz

Easter Quiz

6th Grade - Professional Development

12 Qs

CURRICULUM VITAE

CURRICULUM VITAE

Professional Development

10 Qs

HOW LONG HAVE YOU BEEN ...?

HOW LONG HAVE YOU BEEN ...?

10th Grade - Professional Development

15 Qs

Sasi-AN-02.05.2024

Sasi-AN-02.05.2024

Assessment

Quiz

English

Professional Development

Hard

Created by

CCC info@ccc.training

Used 1+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

What does the following function do for a given Linked List with first node as head? void fun1(struct node* head) { if(head == NULL) return; fun1(head->next); printf("%d ", head->data); }

Prints all nodes of linked lists
Prints all nodes of linked list in reverse order
Prints alternate nodes of Linked List
Prints alternate nodes in reverse order

2.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

A linear collection of data elements where the linear node is given by means of pointer is called?

linked list
node list
primitive list
None of these

3.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Linked lists are not suitable to for the implementation of?

Insertion sort
Radix sort
Polynomial manipulation
Binary search

4.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

In linked list each node contain minimum of two fields. One field is data field to store the data second field is?

Pointer to character
Pointer to integer
Pointer to node
Node

5.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Which of these is an application of linked lists?

To implement file systems
For separate chaining in hash-tables
To implement non-binary trees
All of the mentioned

6.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

The concatenation of two list can performed in O(1) time. Which of the following variation of linked list can be used?

Singly linked list
Doubly linked list
Circular doubly linked list
Array implementation of list

7.

MULTIPLE CHOICE QUESTION

2 mins • 1 pt

Consider the following definition in c programming language.Which of the following c code is used to create new node? struct node { int data; struct node * next; } typedef struct node NODE; NODE *ptr;

ptr = (NODE*)malloc(sizeof(NODE));
ptr = (NODE*)malloc(NODE);
ptr = (NODE*)malloc(sizeof(NODE*));
ptr = (NODE)malloc(sizeof(NODE));

Create a free account and access millions of resources

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

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?