Testing

Testing

Professional Development

15 Qs

quiz-placeholder

Similar activities

Dieses Titelbild ist eigentlich urheberrechtlich geschützt. Bestimmt.

Dieses Titelbild ist eigentlich urheberrechtlich geschützt. Bestimmt.

University - Professional Development

12 Qs

MEL Team Quiz

MEL Team Quiz

Professional Development

16 Qs

Advanced

Advanced

University - Professional Development

10 Qs

Frontend Development Quiz 7

Frontend Development Quiz 7

Professional Development

16 Qs

SASI -BATCH 3-DAY6-FN(25.11.23)

SASI -BATCH 3-DAY6-FN(25.11.23)

Professional Development

15 Qs

Team_Activities_April

Team_Activities_April

Professional Development

12 Qs

Gamma-AN-01.05.2024

Gamma-AN-01.05.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

Professional Development

20 Qs

Testing

Testing

Assessment

Quiz

English

Professional Development

Hard

Created by

CCC info@ccc.training

Used 3+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

What is the prototype of scanf function?
scanf("controlstring",arg1,arg2,arg3,….,argn);
scanf("control string", variable list);
scanf(" varible list,", control string);
scanf("arg1,arg2,arg3,….,argn", control string);

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

#include <stdio.h> int main() { int i = 10, j = 2; printf("%d\n", printf("%d %d ", i, j)); }
Compile time error
10 2 4
10 2 2
10 2 5

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

#include <stdio.h> int main() { int i = 10, j = 3; printf("%d %d %d", i, j); }
Compile time error
10 3
10 3 some garbage value
Undefined behaviour

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

#include <stdio.h> int main() { int i = 10, j = 3, k = 3; printf("%d %d ", i, j, k); }
Compile time error
10 3 3
10 3
10 3 some garbage value

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Escape sequences are prefixed with ________
%
/
"
none of the mentioned

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

printf(“%10s”, state);
10 spaces before the string state is printed
Print empty spaces if the string state is less than 10 characters
Print the last 10 characters of the string
None of the mentioned

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

#include <stdio.h> int main() { int i = 10, j = 2; printf("%d\n", printf("%d %d ", i, j)); }
Compile time error
10 2 4
10 2 2
10 2 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?