Code debugging - Round 1

Code debugging - Round 1

University

30 Qs

quiz-placeholder

Similar activities

VAC - Java -Applets and Servlets

VAC - Java -Applets and Servlets

University

25 Qs

PTLW BIIIIIIIIIIIIL TAAAAAAAAAANG

PTLW BIIIIIIIIIIIIL TAAAAAAAAAANG

KG - University

25 Qs

Information Assurance and Security - Prelim Quiz

Information Assurance and Security - Prelim Quiz

University

25 Qs

Understanding Input, Selection and Loops in Python

Understanding Input, Selection and Loops in Python

7th Grade - University

25 Qs

PreTest Pelatihan Arduino dan IoT

PreTest Pelatihan Arduino dan IoT

University

25 Qs

Quiz 1 MLTI

Quiz 1 MLTI

University

25 Qs

QUIZ

QUIZ

University

25 Qs

IT Quiz | E-Zone

IT Quiz | E-Zone

University

25 Qs

Code debugging - Round 1

Code debugging - Round 1

Assessment

Quiz

Computers

University

Practice Problem

Hard

Created by

Hari haran

Used 5+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

30 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

1.What will be the output of the following C code?

int main()

{

int x = 10;

if (x = 5)

{

printf("True");

}

else

{

printf("False");

}

   return 0;

 }

Segmentation Fault
False
True
Error

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following statements is true about the C programming language's malloc() function?

It automatically initializes the memory allocated to zero.

It allocates memory from the stack.

It returns a pointer to the first byte of the allocated memory.

It is a standard library function for dynamic memory allocation in C++ only.

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What will be the output of the following C code?

#include <stdio.h>

int main()

{

char str[] = "Hello";

str[0] = 'J';

printf("%s", str);

return 0;

}

Hello

Jello

Error

Undefined behavior

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which Python statement creates an empty set?

set()

[]

{}  

empty()

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What will the following C code print?

int x = 5;

printf("%d %d %d", x++, ++x, x);

5 7 6

6 7 6

5 6 6

Undefined behavior

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

In Python, what is the purpose of the lambda function?

To define an anonymous function in a single line.

To define a function with a fixed number of arguments.

To define a function with variable arguments.

To make a function that returns multiple values.

7.

MULTIPLE SELECT QUESTION

20 sec • 1 pt

Which of the following Python methods is used to remove an item from a list?

list.delete()

list.pop()

list.remove()

 list.clear()

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?