Answer:
long fact(int n)
{
if(n<=1)//base case
return 1;
long p=fact(n-1);//recursive call.
return n*p;//returning the factorial.
}
Explanation:
Above written function is written in C++ language.It is a recursive function to find the factorial of the function.
If we enter a number equal to or less than 1 then the function returns 1. Then the recursive call is made and it is stored in the long variable p and the result is returned as n*p.
Answer:
The correct answer for the given question is option(B) i.e "database system"
Explanation:
Database is the collection of interrelated data .Database system is an organization of components that define and regulate the collection, storage and manage the data.Database system maintain the integrity in the database. Database system provides an interface to the database for information storage and retrieval.
Transaction is the contract between a buyer and a seller to interchange goods or services. it does not regulate the collection store the data so this option is wrong .
Structured data and management system does not store the data that define and regulate the collection in organization. So this option is also wrong
So correct answer is database system.
Answer:
<body> ...</body>
indicates the beginning and ending of your code written in HTML
Explanation:
Explanation:
C.
D.
395 - 44th Street Long B.
Ο Α
O
B
С
OD