Class 10 Exam  >  Class 10 Tests  >  C++ Programming for Beginners  >  Test: C++ Function Declarations - Class 10 MCQ

Test: C++ Function Declarations - Class 10 MCQ


Test Description

10 Questions MCQ Test C++ Programming for Beginners - Test: C++ Function Declarations

Test: C++ Function Declarations for Class 10 2024 is part of C++ Programming for Beginners preparation. The Test: C++ Function Declarations questions and answers have been prepared according to the Class 10 exam syllabus.The Test: C++ Function Declarations MCQs are made for Class 10 2024 Exam. Find important definitions, questions, notes, meanings, examples, exercises, MCQs and online tests for Test: C++ Function Declarations below.
Solutions of Test: C++ Function Declarations questions in English are available as part of our C++ Programming for Beginners for Class 10 & Test: C++ Function Declarations solutions in Hindi for C++ Programming for Beginners course. Download more important topics, notes, lectures and mock test series for Class 10 Exam by signing up for free. Attempt Test: C++ Function Declarations | 10 questions in 10 minutes | Mock test for Class 10 preparation | Free important questions MCQ to study C++ Programming for Beginners for Class 10 Exam | Download free PDF with solutions
Test: C++ Function Declarations - Question 1

What are mandatory parts in the function declaration?

Detailed Solution for Test: C++ Function Declarations - Question 1

In a function, return type and function name are mandatory all else are just used as a choice.

Test: C++ Function Declarations - Question 2

How many can max number of arguments present in function in the c99 compiler?

Detailed Solution for Test: C++ Function Declarations - Question 2

C99 allows to pass a maximum of 127 arguments in a function.

1 Crore+ students have signed up on EduRev. Have you? Download the App
Test: C++ Function Declarations - Question 3

What will be the output of the following C++ code?

    #include <iostream>
    using namespace std;
    void mani()
    void mani()
    {
        cout<<"hai";
    }
    int main()
    {
        mani();
        return 0;
    }

Detailed Solution for Test: C++ Function Declarations - Question 3

We have to use the semicolon to declare the function in line 3. This is called a function declaration and a function declaration ends with a semicolon.

Test: C++ Function Declarations - Question 4

What is the scope of the variable declared in the user defined function?

Detailed Solution for Test: C++ Function Declarations - Question 4

The variable is valid only in the function block as in other.

Test: C++ Function Declarations - Question 5

Where does the execution of the program starts?

Detailed Solution for Test: C++ Function Declarations - Question 5

Normally the execution of the program in c++ starts from main only.

Test: C++ Function Declarations - Question 6

 which of the following is used to terminate the function declaration?

Detailed Solution for Test: C++ Function Declarations - Question 6

semicolon is used to terminate a function declaration statement in C++.

Test: C++ Function Declarations - Question 7

Which is more effective while calling the functions?

Detailed Solution for Test: C++ Function Declarations - Question 7

In the call by reference, it will just passes the reference of the memory addresses of passed values rather than copying the value to new memories which reduces the overall time and memory use.

Test: C++ Function Declarations - Question 8

What will be the output of the following C++ code?

    #include <iostream>
    using namespace std;
    void fun(int x, int y)
    {
        x = 20;
        y = 10;
    }
    int main()
    {
        int x = 10;
        fun(x, x);
        cout << x;
        return 0;
    }

Detailed Solution for Test: C++ Function Declarations - Question 8

In this program, we called by value so the value will not be changed, So the output is 10
Output:
$ g++ fun.cpp
$ a.out
10

Test: C++ Function Declarations - Question 9

How many minimum number of functions should be present in a C++ program for its execution?

Detailed Solution for Test: C++ Function Declarations - Question 9

The execution of a C++ program starts from main function hence we require atleast 1 function to be present in a C++ program to execute and i.e. the main function.

Test: C++ Function Declarations - Question 10

What will we not do with function pointers?

Detailed Solution for Test: C++ Function Declarations - Question 10

As it is used to execute a block of code, So we will not allocate or deallocate memory.

15 videos|20 docs|13 tests
Information about Test: C++ Function Declarations Page
In this test you can find the Exam questions for Test: C++ Function Declarations solved & explained in the simplest way possible. Besides giving Questions and answers for Test: C++ Function Declarations, EduRev gives you an ample number of Online tests for practice

Top Courses for Class 10

15 videos|20 docs|13 tests
Download as PDF

Top Courses for Class 10