The parameters in a function definition are

functions in C programming

Quiz
•
Computers
•
University
•
Medium
Satya Suneetha
Used 13+ times
FREE Resource
10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
real parameters
formal parameters
actual parameters
dummy parameters
2.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
The parameters in a function call are
real parameters
formal parameters
actual parameters
dummy parameters
3.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
A function can be called in a program
Only two times
Only once
Any number of times
Only three times
4.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
The names of actual parameters and formal parameters
always same
should be same
need not be same
almost same
5.
MULTIPLE CHOICE QUESTION
3 mins • 1 pt
What will be the output of the following program
main()
{
int i;
i = abc();
printf("%d",i);
}
abc()
{
return(1000);
}
Compiler error
Compiler error
Prints garbage
Prints garbage
6.
MULTIPLE CHOICE QUESTION
3 mins • 1 pt
What will be the output of the following program
main()
{
int a=4;
change(a);
printf(“%d”,a);
}
change(int a)
{
printf(“%d”,++a);
} outputs
5 5
4 5
5 4
4 4
7.
MULTIPLE CHOICE QUESTION
1 min • 1 pt
Actual and formal parameters must agree in
data types
number of argument and datatypes
names and data type
names and number of arguments
Create a free account and access millions of resources
Similar Resources on Quizizz
12 questions
UNIT 3

Quiz
•
University
10 questions
Expression in C Programming

Quiz
•
University
13 questions
C programming-1

Quiz
•
University
12 questions
Operators in C

Quiz
•
University
15 questions
BASIC C PROGRAMMING QUIZ

Quiz
•
University
15 questions
Common errors in C programming

Quiz
•
University
11 questions
Basics of JAVA

Quiz
•
University
10 questions
Array in C

Quiz
•
University
Popular Resources on Quizizz
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