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;
}
Code debugging - Round 1
Quiz
•
Computers
•
University
•
Hard
Hari haran
Used 5+ times
FREE Resource
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;
}
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()
30 questions
BUG@MASTER
Quiz
•
University
25 questions
Aptitude Competition(FY)
Quiz
•
University
35 questions
CodeChef (Secret Snippet)
Quiz
•
University
30 questions
C-Programming
Quiz
•
University
30 questions
Coding Club_SNSCE Quiz (28-04-2023)
Quiz
•
University
25 questions
C PROGRAMMING
Quiz
•
University
25 questions
Programming Skills C/C++
Quiz
•
University
30 questions
Quiz on C
Quiz
•
University
15 questions
Character Analysis
Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing
Quiz
•
9th - 12th Grade
10 questions
American Flag
Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension
Quiz
•
5th Grade
30 questions
Linear Inequalities
Quiz
•
9th - 12th Grade
20 questions
Types of Credit
Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25
Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers
Quiz
•
6th - 8th Grade