Sasi-AN-02.05.2024

Sasi-AN-02.05.2024

Professional Development

15 Qs

quiz-placeholder

Similar activities

VCE-ALPHA-22.11.2023-FN

VCE-ALPHA-22.11.2023-FN

Professional Development

15 Qs

coding skills (ISCP 02) Tuesday slot2 (11am - 1:00pm) CSE E & G

coding skills (ISCP 02) Tuesday slot2 (11am - 1:00pm) CSE E & G

Professional Development

20 Qs

NetAppSep1

NetAppSep1

University - Professional Development

10 Qs

SASI -1st year -DAY6-AN (23.12.23)

SASI -1st year -DAY6-AN (23.12.23)

Professional Development

15 Qs

C1 - Phrasal Verbs

C1 - Phrasal Verbs

10th Grade - Professional Development

11 Qs

Roadways to Reading Part III

Roadways to Reading Part III

KG - Professional Development

13 Qs

Alliteration

Alliteration

Professional Development

10 Qs

SASI -1st year -DAY4-AN (21.12.23)

SASI -1st year -DAY4-AN (21.12.23)

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
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?