Logical and Programming Questions

Logical and Programming Questions

Professional Development

20 Qs

quiz-placeholder

Similar activities

Trabajo TGL

Trabajo TGL

Professional Development

15 Qs

parametric VS non parametric test

parametric VS non parametric test

Professional Development

15 Qs

todo sobre games

todo sobre games

Professional Development

20 Qs

Pretest 7

Pretest 7

Professional Development

15 Qs

Funções e Estruturas - Matrizes & Strings & Apontadores

Funções e Estruturas - Matrizes & Strings & Apontadores

9th Grade - Professional Development

24 Qs

Season 5 #Spaic Python Weekly Quiz

Season 5 #Spaic Python Weekly Quiz

KG - Professional Development

20 Qs

REV CODE

REV CODE

Professional Development

15 Qs

Exception Handling Demo Quiz - 01

Exception Handling Demo Quiz - 01

Professional Development

15 Qs

Logical and Programming Questions

Logical and Programming Questions

Assessment

Quiz

Other

Professional Development

Hard

Created by

Richa Sharma

Used 1+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

int main() { int x; x=printf("RCCIIT"); printf("%d",x); return 0; }

RCCIIT

6

RCCIIT6

Error

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

{ int x=6,y=1; if (x&y) { printf("Yes"); } else { printf("No"); } return 0; }

Yes

No

0

Error

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

console.log(1 + "2" + 3); console.log(1 + 2 + "3");

123 and 33

6 and 6

123 and 123

6 and 123

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

console.log(0.1 + 0.2 === 0.3);

True

False

syntax error

undefined

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

a = 1 def g(): print('Ans1: ', a) a = 2 print('Ans2: ', a) g()

Error

Ans1: 1 & Ans2: 2

Ans1: 2 & Ans2: 2

Ans1: 1 & Ans2: 1

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the time complexity of finding the maximum element in an unsorted array of size n?

O(1)

O(n)

O(log n)

O(n log n)

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the advantage of a doubly linked list over a singly linked list?

Easier to delete a node

Requires less memory

Uses less number of pointers

No advantage

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?