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

VRESEC-24.01.2024-AN-1-3

VRESEC-24.01.2024-AN-1-3

Professional Development

15 Qs

Focus 3 Unit 4.1 Vocabulary Group B

Focus 3 Unit 4.1 Vocabulary Group B

Professional Development

20 Qs

Units 1, 2, 3 & 4 Exam

Units 1, 2, 3 & 4 Exam

Professional Development

24 Qs

Ecologie et environnement _ QUIZS

Ecologie et environnement _ QUIZS

Professional Development

20 Qs

Grow your vocabulary 2 Verbs saying

Grow your vocabulary 2 Verbs saying

Professional Development

15 Qs

Review units 4, 5 and 6 - Level B1+

Review units 4, 5 and 6 - Level B1+

Professional Development

20 Qs

房屋與修繕 Day 22 Pt. 2

房屋與修繕 Day 22 Pt. 2

10th Grade - Professional Development

20 Qs

表演與展覽 Day 20 Pt. 1

表演與展覽 Day 20 Pt. 1

10th Grade - Professional Development

20 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?