coding skills (ISCP 02) Tuesday slot1 (9am - 11:00am) CSE A & C

coding skills (ISCP 02) Tuesday slot1 (9am - 11:00am) CSE A & C

Professional Development

20 Qs

quiz-placeholder

Similar activities

VCE-GAMMA-21.11.2023-FN

VCE-GAMMA-21.11.2023-FN

Professional Development

15 Qs

14 dec 2023 SRMIST  TRC MCA    AN

14 dec 2023 SRMIST TRC MCA AN

Professional Development

15 Qs

15 dec 2023 SRMIST  TRC MCA    FN

15 dec 2023 SRMIST TRC MCA FN

Professional Development

15 Qs

SRM RMP-MCA -18.01.2024-FN

SRM RMP-MCA -18.01.2024-FN

Professional Development

15 Qs

Gamma -AN-30.01.02024

Gamma -AN-30.01.02024

Professional Development

15 Qs

SASI -BATCH 3-DAY5-AN(24.11.23)

SASI -BATCH 3-DAY5-AN(24.11.23)

Professional Development

15 Qs

VCE-ALPHA-25.11.2023-AN

VCE-ALPHA-25.11.2023-AN

Professional Development

15 Qs

DSBS-FN-30.01.2024

DSBS-FN-30.01.2024

Professional Development

15 Qs

coding skills (ISCP 02) Tuesday slot1 (9am - 11:00am) CSE A & C

coding skills (ISCP 02) Tuesday slot1 (9am - 11:00am) CSE A & C

Assessment

Quiz

English

Professional Development

Medium

Created by

CCC info@ccc.training

Used 1+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

The postfix form of A*B+C/D is?
*AB/CD+
AB*CD/+
A*BC+/D
ABCD+/*

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

How many variables are required to implement queue using arrays?
1
2
3
4

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Which of the data structure follows FIFO principle?
Stack
Queue
Linked list
Tree

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

If REAR, FRONT are the queue variables, then identify correct statement while deleting a value
FRONT=FRONT+1
REAR=REAR+1
REAR=REAR-1
FRONT=FRONT-1

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

If the elements “A”, “B”, “C” and “D” are placed in a stack and are deleted one at a time, in what order will they be removed?
ABCD
DCBA
DCAB
ABDC

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Complexity of linear search if the element to be searched is at index 0 in the array
O(n)
O(n*n)
O(1)
O(nlogn)

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

In the following Code Snippet, if you apply this linear search code to an array of 15 elements and the target is found at the 5th position, what value will be returned? int linearSearch(int arr[], int n, int target) { for (int i = 0; i < n; i++) { if (arr[i] == target) return i; } return -1; }
0
1
4
5

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?