0% found this document useful (0 votes)
1 views56 pages

Functions in C

The document provides a comprehensive overview of functions in C programming, including definitions, types, and examples. It covers key concepts such as function declaration, function call, user-defined functions, and recursion, along with various exercises and solutions. Additionally, it explains the differences between global and local variables, and the role of library functions.

Uploaded by

ingghost67
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1 views56 pages

Functions in C

The document provides a comprehensive overview of functions in C programming, including definitions, types, and examples. It covers key concepts such as function declaration, function call, user-defined functions, and recursion, along with various exercises and solutions. Additionally, it explains the differences between global and local variables, and the role of library functions.

Uploaded by

ingghost67
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 56

Skip to content

Search

 SOLUTIONS
o
o
o
o
o
o
o
o
o

 FINANCE
 CAREER GUIDE
 BIOGRAPHY
 MCQ
 NOVEL
 MORE
Class 10 Computer Science Chapter 7 Function
In C
By Parimol / Class 10 Computer Science
Video Player is loading.
Pause
Unmute
Loaded: 0%

Remaining Time -0:00


Close Player

Join Telegram channel


Class 10 Computer Science Chapter 7 Function In C Question Answer,
SEBA Class 10 Computer Science Solutions, NCERT Class 10 Computer
Science Chapter 7 Function In C to each chapter is provided in the list so
that you can easily browse throughout different chapters SCERT Class 10
Computer Science Chapter 7 Function In C and select needs one.

Class 10 Computer Science Chapter 7 Function In C


Also, you can read the SCERT book online in these sections Solutions by
Expert Teachers as per SCERT (CBSE) Book guidelines. NCERT Solution of
Class 10 Computer Science Chapter 7 Function In C is part of AHSEC All
Subject Solutions. Here we have given Class 10 Computer Science
Chapter 7 Function In C Notes for All Subjects, You can practice these here
in Class 10 Computer Science.

FUNCTIONS IN C

Chapter – 7

COMPUTER SCIENCE

Key Terms (Basic Concepts)

● Function: A function is a group of tasks used to execute the predefined


operations and returns a value.

● Function parameter: It is a parameter that passed inside the function name


of a program.

● Function name: It defines the actual name of a function that contains some
parameters.

● Return type: It defines the return data type of a value in the function. The
return data type can be integer, float, character, etc.

● Function declaration: A function declaration defines the name and return


type of a function in a program.

● Function call: This statement is responsible for the execution of a function.


● Function definition: This portion of a function contains the actual
statements that are executed when the function is called.

● Library functions: Library functions are built – in functions which are


defined inside C library.

● User: defined function – User – defined functions are declared and defined
by the programmer based on their needs.

● Global variable: The variables that are declared outside the given function
are known as global variables.

● Recursive function: Recursive Function is a function that repeats or uses


its own previous term to calculate subsequent terms and thus forms a
sequence of terms.

TEXTUAL QUESTIONS AND ANSWERS

EXERCISE

1. What is a global variable in C? Why do we need such a variable?

Ans. The variables that are declared outside the given function are known as
global variables. It has a global scope means it holds its value throughout the
lifetime of the program. Hence, it can be accessed throughout the program by
any function defined within the program.

2. Write the syntax of a function declaration. Name of the function is


calculateAge(). The function accepts the current year and birth year of a
person. The function returns the age of the person.

Ans. Function declaration:

int calculateAge(int current_year, int birth_year);

3. Write the code segment for the function definition of the above
function calculateAge ().
Ans. Code segment:

int calculateAge(int current_year, int birth_year)

int age;

age = current_year — birth_year,

return age;

4. What are the different types of functions in C? Differentiate between


them.

Ans. There are two types of functions:

● Library functions.

● User – defined functions.

Library functions are built-in functions which are defined inside C library
whereas, user-defined functions are declared and defined by the programmer
based on their needs.

5. Differentiate between caller and callee functions. Write a small C


program and identify the caller and callee function in it.

Ans. A caller is a function that calls another function; a callee is a function that
was called.

Example:

#include<stdio.h>
int add(int, int);

int add(x,y)

return (x+y);

int main()

int num, a, b, sum;

printf(“Enter the numbers to be added “);

scanf(“%d%d”, &a, &b);

sum = add(a,b);

printf(“Sum = %d”, sum);

return 0;

In the above program, main() is another function and it is calling a function


add().

Thus main() can be called as a caller function and add() can be called as a
callee function.

6. When do we call a function user-defined? Is printf() a user-defined


function? Justify.
Ans. User-defined functions allow programmers to create their own routines
and procedures that the computer can follow; it is the basic building block of
any program and also very important for modularity and code reuse since a
programmer could create a user-defined function which does a specific
process and simply call it.

No, printf() is not a user – defined function. It is a built – in – function which is


also called library function.

7. Can we have two functions with the same name but with different
numbers of parameters in a single C program? Write a simple C program
to justify your answer.

Ans. In C program, we cannot have two functions with the same name.
However, in C++, it’s entirely possible as long as the function signature is
different, i, e. two functions having the same name but different set of
parameters.

8. Write the different components of a function? Show with a complete C


program.

Ans. There are three parts of a function in C.

(a) Function declaration – The function must be declared first before its use.

(b) Function call – This statement is responsible for the execution of a


function.

(c) Function definition – This portion of a function contains the actual


statements that are executed when the function is called.

Example:
9. Define recursive function. Can we use a recursive function to solve all
kinds of problems?

Ans. Recursive Function is a function that repeats or uses its own previous
term to calculate subsequent terms and thus forms a sequence of terms.

Recursive makes solving problems easier by breaking them into smaller sub
problems thereby making it easier to understand the problem. As such, not all
problems can be broken down into smaller sub problems so that they could be
solved recursively.

10. Consider the below code and list all the syntax Consider the below
code and list all the syntax errors.

#include<stdio.h>

int fun (int x)

if (x % 2 == 0)
return 1;

else

return 0;

int main()

int number;

printf(“\n Enter the number : “);

scanf(“%d”, & number);

int x = fun ();

return 0;

Solution:

#include<stdio.h>

int fun (int x)

if (x % 2 == 0)

return 1;

else
return 0;

int main ()

int number;

printf(“\n Enter the number : “);

scanf(“%d”, & number);

int x = fun (); Error – few arguments

No printf() function

return 0;

Rewrite:

#include<stdio.h>

int fun (int x)

if (x % 2 == 0)

return 1;

else

return 0;
}

int main ()

int number;

printf(“\n Enter the number : “);

scanf(“%d”, & number);

int x = fun (number);

printf(“%d”, x);

return 0;

11. Consider the code segment below and find out the output if the user
enters 5 from the keyboard when asked for

#include<stdio.h>

int fun (int x)

if (x % 2 == 0)

return 1;

else

return 0;
}

int main ()

int number;

printf(“\n Enter the number : “);

scanf(“%d”, & number);

int x = fun (number);

printf(“%d”, x);

return 0;

Ans. Output will be 0.

12. Write a C program and define a function square () that accepts a


number as the parameter and returns the square of that number as
output.

Solution:

Code:

#include<stdio.h>

int square (int x)

int sq = x * x;
return sq;

int main ()

int number;

printf(“\n Enter the number: “);

scanf(“%d”, & number);

int x = square (number);

printf(“%d“, x);

return 0;

Output:

13. Write a C program and define function search () that searches an


element in an array and returns the index of the element.

Solution:

Code:
#include<stdio.h>

int arr[7];

int i;

int search (int x)

int index;

for(i=0; i<7; i++)

if(arr[i] == x)

index = i;

return index;

int main ()

int s;

printf(“\n Enter the array elements : “);

for(i=0; i<7; i++)

{
scanf(“%d”, &arr[i];

printf(“\n Enter the number to be searched in the array : “);

scanf(“%d”, &s);

int x = search (s);

printf(“\n The index of the searched number is %d “, x);

return 0;

Output:

14. Write a C program and define a recursive function to find the


summation of first N natural numbers.

Solution:
Code:

#include<stdio.h>

int addNumber(int n)

if (n !=0)

return n + addNumbers(n – 1);

else

return n;

int main() {

int num;

printf(“Enter the number : “);

scanf(“%d”, &num);

printf(“Sum = %d”, addNumbers(num));

return 0;

Output:
15. Write a C program and define a function add () that accept three
integers. These integers indicate indices of an integer array. The
function returns the summation of the elements stored in those indices.

7 8 8 0 0 9
For example, if we call the function add (0, 2, 5), the function will return 24.
The output is formed by 7 + 8 + 9 because elements at indices 0, 2 and 5 are
7, 8 and 9 respectively.

Solution:

Code:

#include<stdio.h>

int arr[7], i;

int add(int x, int y, int z)

int sum;

for(i=0; i<7; i++)

sum = arr[x] + arr[y] + arr[z];

}
return sum;

int main()

int num, a, b, c, d;

printf(“Enter the numbers of arrays : “);

for(i=0; i<7; i++)

scanf(“%d”, &arr[i];

printf(“\n Enter the three indices whose elements to added in array : “);

scanf(“%d%d%d”, &a, &b, &c);

d = add(a, b, c);

printf(“Sum = %d”, d);

return 0;

Output:
ADDITIONAL QUESTIONS AND ANSWERS

1. What are functions in C?

Ans. A function is a group of tasks used to execute the predefined operations


and returns a value. A large program can be divided into small blocks of code
that help to understand the logic, debug, and modified it.

2. Where are global variables declared in C?

Ans. Global variables are generally written before main() function.

3. What are local and global variables?

Ans. Global variables are those which are not defined inside any function and
have a global scope whereas local variables are those which are defined
inside a function and its scope is limited to that function only.

4. What is recursion and recursive function in C?

Ans. In C, when a function calls a copy of itself then the process is known as
recursion. To put it short, when a function calls itself then this technique is
known as recursion and the function is known as a recursive function.
5. What is user – defined functions?

Ans. User – defined functions are declared and defined by the programmer
based on their needs.

6. What is library/built – in functions?

Ans. A library function is predefined functions, and its tasks are also defined in
the C header files. So, it does not require writing the code of the particular
function; instead, it can be called directly in a program whenever it is required.

Example: printf(), scanf() etc., are the predefined function in the C library, and
the meaning of these functions cannot be changed.

7. What is function declaration?

Ans. A function declaration defines the name and return type of a function in a
program. Before using the function, we need to declare it outside of a main()
function in a program.

8. What is function call?

Ans. A function call is an important part of the C programming language. It is


called inside a program whenever it is required to call a function. It is only
called by its name in the main() function of a program. We can pass the
parameters to function calling in the main() function.

9. What is function definition?

Ans. It defines the actual body of a function inside a program for executing
their tasks in C.

10. Define the following terms:

Ans. (a) Return Data_Type: defines the return data type of a value in the
function. The return data type can be integer, float, character, etc.
(b) Function Name: It defines the actual name of a function that contains
some parameters.

(c) Parameters/ Arguments: It is a parameter that passed inside the function


name of a program. Parameters can be any type, order, and the number of
parameters.

(d) Function Body: It is the collection of the statements to be executed for


performing the specific tasks in a function.

11. Is printf() a function call?

Ans. The printf() is a library function to send formatted output to the screen.
The function prints the string inside questions. To use printf() in our program,
we need to include stdio.h.

12. What is void main() in C?

Ans. The void main() indicates that the main() function will not return any
value, but the int main() indicates that the main () can return integer type data.
When our program is simple, and it is not going to terminate before reaching
the last line of the code, or the code is error free, then we can use the void
main().

13. What does int main() mean in C?

Ans. An int is a keyword that references an integer data type. An int data type
used with the main() function that indicates the function should return an
integer value. When we use an int main() function, it is compulsory to write
return (); statement at the end of the main() function.

14. Write is argument in C?

Ans. An argument is referred to the values that are passed within a function
when the function is called. These values are generally the source of the
function that require the arguments during the process of execution.

15. What is the difference between declaration and definition of a


function?
Ans. A declaration occurs once, but a definition may occur many times.

16. Write a C program to find factorial of a number using recursive


function.

Ans. Solution:

Code: #include<stdio.h>

int fact(int n)

if (n>=1)

return n*fact(n-1);

else

return 1;

int main()

int n;

printf(“Enter a number : “);

scanf(“%d”, &n);

printf(“Factorial of %d = %d “, n, fact(n));

return 0;
}

Output:

Post navigation
← Previous Post
Next Post →
Related Posts
Class 10 Computer Science Chapter 1 Introduction To Computer Network
Leave a Comment / Class 10 Computer Science / By Parimol
Join Telegram channel Class 10 Computer Science Chapter 1 Introduction To
Computer Network Question Answer, SEBA Class 10 Computer Science
Solutions, NCERT Class 10 Computer…

Read More »
Class 10 Computer Science Chapter 2 HTML5 And CSS3
Leave a Comment / Class 10 Computer Science / By Parimol
Join Telegram channel Class 10 Computer Science Chapter 2 HTML5 And
CSS3 Question Answer, SEBA Class 10 Computer Science Solutions,
NCERT Class 10 Computer Science…

Read More »
Class 10 Computer Science Chapter 3 Database
Leave a Comment / Class 10 Computer Science / By Parimol
Join Telegram channel Class 10 Computer Science Chapter 3 Database
Question Answer, SEBA Class 10 Computer Science Solutions, NCERT
Class 10 Computer Science Chapter 3…

Read More »

Leave a Comment
Your email address will not be published. Required fields are marked *

Type here..

Name*

Email*

Website

Post Comment

Search
Search for:
Categories
 Bengali Solutions (115)

o Class 10 Solutions In Bengali (66)

 Class 10 Bengali (21)

 Class 10 Mathematics MCQ (14)

 Class 10 Science In Bengali (17)

 Class 10 Social Science In Bengali (14)

o Class 9 Solutions In Bengali (49)

 Class 9 Bengali (19)


 Class 9 Science In Bengali (16)

 Class 9 Social Science In Bengali (14)

 BIO (313)

o Biography (173)

o Biography in Assamese (152)

o Indian (6)

 Career Guide (39)

o Admission (2)

o Colleges (2)

o COURSES (32)

 Accounting (2)

 Animation/Web Design (5)

 BBA (2)

 Content Marketing (5)

 Digital Marketing Course (6)

 GST (1)

 Management (3)

 MBA (5)

 Six Sigma (3)


o MBBS (1)

o SEO (1)

o University (1)

 Computer science eBook (15)

o Computer theory eBook (1)

o OS eBook (2)

o Programming eBook (1)

 D.el.ed (9)

o Assamese Medium (6)

o English Medium (1)

o Hindi Medium (1)

 FINANCE (75)

o Agriculture Loan (1)

o Business Loan (11)

o Car loan (12)

o Credit Card Loan (1)

o Gold Loan (9)

o Home loan (12)

o Insurance (1)
o Interest Rates (4)

o Personal loan (6)

o PMAY (1)

o Savings Account (14)

o Study loan (3)

 Finance & Commerce eBook (13)

o Accounting eBook (13)

 General Post (4)

 Grammar (31)

o Assamese Grammar (14)

o Bengali Grammar (11)

o English Grammar (5)

o English to Assamese Translation (1)

 MCQ (30)

o Assam MCQ (14)

 Assamese GK (14)

o Competitive Exam Books (3)

o DHS Assam Previous Papers (1)

o GK Quick Revision (4)


o Indian Economy (1)

o Indian GK (2)

o Indian Polity (5)

 Notification (4)

o Exam Routine (4)

 NOVEL (82)

o Assamese eBook (18)

o Bengali eBook (2)

o Child & Experiments eBook (6)

o Creativity & Digital Marketing eBook (3)

o English eBook (23)

o Geeta eBook (4)

o Health care eBook (6)

o Home & Kitchen eBook (1)

o Life Style eBook (22)

o Politics & Laws eBook (4)

o Religion eBook (8)

 Question Paper (63)

o Class 10th Previous years Q/A (7)


o Class 12th Previous years Q/A (13)

o HSLC (34)

o IIT JEE (1)

o NEET (1)

o Old Question Paper Solved (8)

 RABINDRANATH TAGORE (12)

 READ MORE (315)

o Application/Letter Writing (116)

o Essay Writing (178)

 Bird In Assamese (11)

 Essay In Assamese (148)

 Essay in Hindi (17)

o Story (21)

 Hadhu Kotha (21)

 Results (3)

 Riddles (2)

o Riddles in English (2)

 SCIENCE (30)

o Civil Engineering eBook (12)


o Engineering eBook (18)

o Mathematics eBook (8)

o Physics eBook (1)

 Social Gallery (64)

o Attitude Quotes (3)

o Best Wishes (34)

o Bihu Wishes (2)

o Facebook (5)

o Friendship Quotes (2)

o Great Leader (3)

o Instargam (5)

o Love Quotes (10)

o Quotes on Life (7)

o Quotes on Nature (2)

o Whatsapp (5)

 SOLUTIONS (5,034)

o ARTS (578)

 Assamese Department (73)

 Axamiya Bhakha Aru Lipi (6)


 Axamiya Godhor Chaneki (6)

 Axamiya Sanskritir Adhayan (6)

 Axomiya Kobitar Saneki (6)

 Bhakha Bigyanor Parichay (6)

 Bharatiya Arjyobhakha aru Asomiya Bhakha (5)

 Bikhekh Lekhakh (6)

 Communicative Assamese (3)

 History of Assamese Literature (12)

 Sahitya Samalochana (5)

 Sahitya Tatya (6)

 Tulonamulak Sahitya Padhoti Aru Proyug (6)

 Dibrugarh University Syllabus & Notes (4)

 Economics (23)

 Development Economics – II (6)

 Economy of North-East India (6)

 Environmental Economics (6)

 Indian Economy – II (5)

 Economics eBook (4)

 Education (82)
 Child And Adolescent Psychology (5)

 Education In Pre-Independent India (5)

 Educational Administration And Management (6)

 Emerging Trends in Indian Education (6)

 Gender And Education (5)

 Great Educators And Educational Thought (6)

 Guidance And Counselling (6)

 Human Rights of Education (5)

 Library in ICT Environment (5)

 Measurement And Evaluation in Education (6)

 Mental Health Issues (6)

 Philosophical Foundations of Education (6)

 Psychological Foundations Of Education (5)

 Sociological Foundations of Education (6)

 Techniques of teaching (4)

 Education eBook (1)

 English Department (54)

 American Literature (5)

 British Poetry And Drama (5)


 English Communication (5)

 European Classical Literature (5)

 Indian Classical Literature (5)

 Literary Theory (5)

 Literature and Cinema (5)

 Popular Literature (5)

 Postcolonial Literatures (14)

 Environment eBook (57)

 Environmental Science (22)

 Fiction & Literature eBook (6)

 Geography (12)

 Economic Geography (6)

 Environmental Geography (6)

 Geography eBook (1)

 History (12)

 History of India VIII (c. 1857-1950) (6)

 Rise of the Modern West – II (6)

 History eBook (61)

 Political Science (108)


 Constitutional Government and Democracy in India (6)

 Feminism Theory And Practice (6)

 Global Politics (6)

 India’s Foreign Policy in a Globalizing World (6)

 Introduction to Comparative Government and Politics (6)

 Modern Political Philosophy (6)

 Perspectives on International Relations and World History (6)

 Perspectives on Public Administration (6)

 Political Process of India (6)

 Political Processes And Institutions In Comparative Perspective (6)

 Political Theory: Concepts And Debates (6)

 Politics of Globalization (6)

 Public Policy in India (6)

 Understanding Ambedkar (6)

 Understanding Global Politics (6)

 Understanding Political Theory (6)

 Understanding South Asia (6)

 United Nations And Global Conflicts (6)

 Sociology (62)
 Economic Sociology (5)

 Gender and Violence (5)

 Indian Society: Images and Realities (3)

 Indian Sociological Traditions (8)

 Introduction to Sociology – 1 (4)

 Political Sociology (5)

 Research Methods – II (4)

 Rethinking Development (5)

 Sociological Thinkers (7)

 Sociology of Gender (5)

 Sociology of India (3)

 Sociology of Kinship (4)

 Sociology of Religion (4)

 Sociology eBook (2)

 Tourism and Travel Management (5)

 Skill Development For Tourism Management (5)

o Assam Board (2,706)

 Assam State Open School (153)

 ASOS Class 12 Assamese (31)


 ASOS Class 12 Economics (40)

 ASOS Class 12 Environmental Science (9)

 ASOS Class 12 Political Science (37)

 ASOS Class 12 Psychology (36)

 Class 11 (590)

 Class 11 Arts Solutions (395)

 Class 11 Advance Assamese (17)

 Class 11 Advanced Bengali (16)

 Class 11 Alternative English (13)

 Class 11 Assamese (17)

 Class 11 Bengali (20)

 Class 11 Education (18)

 Class 11 English (23)

 Class 11 Environmental Studies (23)

 Class 11 Geography (48)

 Class 11 Hindi (MIL) (24)

 Class 11 History (36)

 Class 11 Logic And Philosophy (35)

 Class 11 Political Science (63)


 Class 11 Sociology (22)

 Class 11 Swadesh Adhyayan (18)

 Class 11 Commerce Solutions (100)

 Class 11 Accountancy (16)

 Class 11 Banking (14)

 Class 11 Business Study (25)

 Class 11 Economics (43)

 Class 11 Science Solutions (93)

 Class 11 Anthropology (14)

 Class 11 Biology (46)

 Class 11 Chemistry (15)

 Class 11 Physics (16)

 Class 12 (584)

 Class 12 Arts Solutions (385)

 Class 12 Advance Bengali (15)

 Class 12 Advanced Assamese (18)

 Class 12 Alternative English (12)

 Class 12 Assamese (19)

 Class 12 Bengali (21)


 Class 12 Bihu (6)

 Class 12 Education (16)

 Class 12 English (16)

 Class 12 Geography (52)

 Class 12 Hindi (MIL) (23)

 Class 12 History (54)

 Class 12 Logic And Philosophy (27)

 Class 12 Political Science (57)

 Class 12 Sociology (27)

 Class 12 Swadesh Adhyayan (20)

 Class 12 Commerce Solutions (113)

 Class 12 Accountancy (12)

 Class 12 Banking (16)

 Class 12 Business Study (27)

 Class 12 Economics (56)

 Class 12 Science Solutions (84)

 Class 12 Anthropology (13)

 Class 12 Biology (36)

 Class 12 Chemistry (17)


 Class 12 Physics (16)

 PDF BOOK (95)

 Class 10 Text Book (10)

 Class 11 Text Book (18)

 Class 12 Text Book (20)

 Class 4 Text Book (5)

 Class 5 Text Book (5)

 Class 6 Text Book (7)

 Class 7 Text Book (8)

 Class 8 Text Book (7)

 Class 9 Text Book (16)

 Solution (1,282)

 Class 10 Question Answer (370)

 Class 10 Advanced Maths (20)

 Class 10 Ambar Bhag 2 (18)

 Class 10 Assamese (23)

 Class 10 Assamese MCQ (17)

 Class 10 Bodo (21)

 Class 10 Computer Science (12)


 Class 10 English (38)

 Class 10 English MCQ (14)

 Class 10 General Science (18)

 Class 10 General Science MCQ (51)

 Class 10 Geography Elective Solutions (14)

 Class 10 Hindi (17)

 Class 10 History Elective Solutions (18)

 Class 10 Maths (16)

 Class 10 Social Science (28)

 Class 10 Social Science MCQ (43)

 Class 3 Question Answer (44)

 Class 3 Assamese (15)

 Class 3 English (9)

 Class 3 Environment (19)

 Class 4 Question Answer (49)

 Class 4 Assamese (18)

 Class 4 English (9)

 Class 4 Environment (21)

 Class 5 Question Answer (45)


 Class 5 Assamese (15)

 Class 5 English (9)

 Class 5 Environment (20)

 Class 6 Question Answer (101)

 Class 6 Assamese (16)

 Class 6 English (9)

 Class 6 Hindi (17)

 Class 6 Mathematics (15)

 Class 6 Science (17)

 Class 6 Social Science (26)

 Class 7 Question Answer (202)

 Class 7 Assamese (37)

 Class 7 English (42)

 Class 7 Hindi (17)

 Class 7 Mathematics (16)

 Class 7 Science (35)

 Class 7 Social (49)

 Class 8 Question Answer (109)

 Class 8 Assamese (17)


 Class 8 English (11)

 Class 8 General Science (19)

 Class 8 Hindi (17)

 Class 8 Maths (17)

 Class 8 Sanskrit (1)

 Class 8 Social Science (25)

 Class 9 Question Answer (365)

 Class 9 Advanced Maths (18)

 Class 9 Ambar Bhag 1 (18)

 Class 9 Assamese (22)

 Class 9 Assamese MCQ (17)

 Class 9 Computer Science (12)

 Class 9 English (54)

 Class 9 English MCQ (13)

 Class 9 General Science (33)

 Class 9 Geography [E] (18)

 Class 9 Hindi (21)

 Class 9 History [E] (14)

 Class 9 Maths (5)


 Class 9 Science MCQ (48)

 Class 9 Social Science (28)

 Class 9 Social Science MCQ (42)

 Syllabus (2)

o Assam Jatiya Bidyalay (453)

 AJB Class 4 Question Answer (65)

 AJB Class 4 Assamese (19)

 AJB Class 4 English (20)

 AJB Class 4 Science (14)

 AJB Class 4 Social Science (12)

 AJB Class 5 Question Answer (89)

 AJB Class 5 Assamese (21)

 AJB Class 5 English (17)

 AJB Class 5 History (14)

 AJB Class 5 Science (17)

 AJB Class 5 Social Science (20)

 AJB Class 6 Question Answer (112)

 AJB Class 6 Assamese (20)

 AJB Class 6 English (21)


 AJB Class 6 Hindi (20)

 AJB Class 6 History (13)

 AJB Class 6 Science (19)

 AJB Class 6 Social Science (19)

 AJB Class 7 Question Answer (99)

 AJB Class 7 Assamese (19)

 AJB Class 7 English (17)

 AJB Class 7 General Science (12)

 AJB Class 7 Hindi (17)

 AJB Class 7 History (15)

 AJB Class 7 Social Science (19)

 AJB Class 8 Question Answer (88)

 AJB Class 8 Assamese (21)

 AJB Class 8 English (17)

 AJB Class 8 Hindi (15)

 AJB Class 8 Science (17)

 AJB Class 8 Social Science (18)

o NCERT (485)

 NCERT Class 10 Solutions (93)


 NCERT Class 10 Hindi Solutions (4)

 NCERT Class 10 Maths Solutions (16)

 NCERT Class 10 Science Solutions (34)

 NCERT Class 10 Social Science Solutions (37)

 NCERT Class 11 Solutions (17)

 NCERT Class 12 Solutions (17)

 NCERT Class 3 Solutions (5)

 NCERT Class 4 Solutions (5)

 NCERT Class 5 Solutions (5)

 NCERT Class 6 Solutions (56)

 NCERT Class 6 Science (17)

 NCERT Class 6 Social Science (30)

 NCERT Class 7 Solutions (63)

 NCERT Class 7 Science (19)

 NCERT Class 7 Social Science (31)

 NCERT Class 8 Solutions (63)

 NCERT Class 8 English (21)

 NCERT Class 8 Social Science (29)

 NCERT Class 9 Solutions (104)


 NCERT Class 9 Beehive solution (10)

 NCERT Class 9 English Solutions (36)

 NCERT Class 9 Hindi Solutions (4)

 NCERT Class 9 Maths Solutions (16)

 NCERT Class 9 Science Solutions (16)

 NCERT Class 9 Social Science Solutions (21)

 NCERT Textbook (57)

 NCERT Class 10 Textbook (9)

 NCERT Class 11 Textbook (16)

 NCERT Class 12 Textbook (16)

 NCERT Class 9 Textbook (16)

o NIOS Study Material (437)

 NIOS Solutions Class 10 (126)

 NIOS Class 10 Economics (25)

 NIOS Class 10 English (28)

 NIOS Class 10 Home Science (23)

 NIOS Class 10 Indian Culture and Heritage (22)

 NIOS Class 10 Social Science (28)

 NIOS Solutions Class 12 (311)


 NIOS Class 12 Business Studies (25)

 NIOS Class 12 Data Entry Operations (11)

 NIOS Class 12 Economics (30)

 NIOS Class 12 English (32)

 NIOS Class 12 Geography (36)

 NIOS Class 12 History (36)

 NIOS Class 12 Mass Communication (33)

 NIOS Class 12 Political Science (37)

 NIOS Class 12 Psychology (31)

 NIOS Class 12 Sociology (40)

o Sankardev Sishu Niketan (432)

 Sankardev Class 4 Question Answer (97)

 Sankardev Class 4 Assamese (19)

 Sankardev Class 4 English (14)

 Sankardev Class 4 Hindi (20)

 Sankardev Class 4 Science (23)

 Sankardev Class 4 Social Science (20)

 Sankardev Class 5 Question Answer (101)

 Sankardev Class 5 Assamese (25)


 Sankardev Class 5 English (18)

 Sankardev Class 5 General Science (11)

 Sankardev Class 5 Hindi (23)

 Sankardev Class 5 Social Science (23)

 Sankardev Class 6 Question Answer (92)

 Sankardev Class 6 Assamese (21)

 Sankardev Class 6 English (17)

 Sankardev Class 6 General Science (13)

 Sankardev Class 6 Hindi (17)

 Sankardev Class 6 Social Science (23)

 Sankardev Class 7 Question Answer (25)

 Sankardev Class 7 Assamese (1)

 Sankardev Class 7 English (1)

 Sankardev Class 7 General Science (1)

 Sankardev Class 7 Hindi (1)

 Sankardev Class 7 Sanskrit (19)

 Sankardev Class 7 Social Science (1)

 Sankardev Class 8 Question Answer (117)

 Sankardev Class 8 Assamese (19)


 Sankardev Class 8 English (18)

 Sankardev Class 8 General Science (20)

 Sankardev Class 8 Hindi (15)

 Sankardev Class 8 Sanskrit (19)

 Sankardev Class 8 Social Science (25)

 TET (52)

o Assamese Language (12)

o Child Development and Pedagogy (30)

o Environmental Studies (6)

o Objective Type Questions (14)

August 2023

M T W T F S S

1 2 3 4 5 6

7 8 9 10 11 12 13

14 15 16 17 18 19 20
August 2023

M T W T F S S

21 22 23 24 25 26 27

28 29 30 31

« Jul
Recent Posts
 ডাউক চৰাইৰ বিষয়ে এক অধ্যয়ণ | ডাউক চৰাই ৰচনা – White Breasted
Waterhen Bird
 Class 10 Science Chapter 3 Metals and Non-Metals
 Class 10 Science Chapter 4 Carbon and its compounds
 NCERT English Class 9 Solutions – 2024 | CBSE Class 9th English Solutions
 বালিমাহি চৰাইৰ বিষয়ে এক অধ্যয়ণ | বালিমাহি চৰাই ৰচনা – White
Wagtail Bird
 NCERT Class 9 English Chapter 31 The Beggar
 NCERT Class 9 English Chapter 30 The Accidental Tourist
 NCERT Class 9 English Chapter 29 A House is Not a Home
 NCERT Class 9 English Chapter 28 The Last Leaf
 SOLUTIONS
o NCERT Solution
o Assamese Medium Question Answer
o English Medium Question Answer
o Bengali Medium Question Answer
o Assam Jatiya Bidyalay Question Answer
o Assam State Open School
o NIOS Study Material | NIOS Solutions
o Sankardev Shishu Niketan Question Answer
o College & University
 FINANCE
 CAREER GUIDE
 BIOGRAPHY
 MCQ
 NOVEL
 MORE
© 2017-2023 Developed By Dev Library || All Right and Reserved

 About Us
 Contact Us
 Guest Post
 Privacy Policy
 ToU
 T&C
 Archives
 Amazon Books
 Return and Refund Policy
 Pricing Table
Scroll to Top

You might also like