Glitch Hunting Round-1

Glitch Hunting Round-1

University

20 Qs

quiz-placeholder

Similar activities

Beginning C Programming

Beginning C Programming

University

23 Qs

C Language 101

C Language 101

University

18 Qs

CSI Coding Quiz

CSI Coding Quiz

University

20 Qs

CIS1101-programming practice

CIS1101-programming practice

University

15 Qs

Operator in C

Operator in C

University

20 Qs

Minggu V - PKS 2 - Pemrograman C++

Minggu V - PKS 2 - Pemrograman C++

University

17 Qs

Evaluasi 2 (Mathematica-Phyton)

Evaluasi 2 (Mathematica-Phyton)

University

20 Qs

Operators in C

Operators in C

University

24 Qs

Glitch Hunting Round-1

Glitch Hunting Round-1

Assessment

Quiz

Computers

University

Hard

Created by

Smart venkey

Used 4+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

#include <stdio.h>

int main() {

printf("Hello Everyone");

printf("/n Welcome to \t Event");

return 0;

}

Hello Everyone/n Welcome to Event

Hello Everyone

/n Welcome to \t Event

Welcome to Event

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

choose the invalid declerations for int a,

i)int a;a=10*3+1;

ii)int a =100;

iii) int a=10,b;

iv)int a,b;a+b=100;

i, iii

i, ii

iii

iv

3.

FILL IN THE BLANK QUESTION

1 min • 1 pt

output for given code

#include <stdio.h>

int main() {

   int i;

   i=printf("2024")||printf("EPICS 2024");

   printf(" %d",i);

    return 0;

}

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

output for given code

#include <stdio.h>

int main() {

int i;

i=printf("%d",4/2+3*2);

printf("%d",i);

return 0;

}

81

2

Error

18

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

#include <stdio.h>

int main() {

   int i;

   i=printf("%d",printf("EPICS 2024"));

   printf("\n%d",i);

    return 0;

}

EPICS 202410

2

EPICS 2024

2

  1. EPICS 202410 2

6.

FILL IN THE BLANK QUESTION

1 min • 1 pt

output for given pseudocode

main(){

int a;

a=12>10?print("12"):print("10")

}

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How many times the compiler checks the for loop condition.example for(i=0;i<n;i++)

  1. n+1 times

  1. n-1 times

  1. N+1 times

  1. n times

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?