Ex.No:7b Fibonacci number Using Recursion
AIM: To write a program to find the ith Fibonacci number using recursion, given F(0)=0, F(1)=1. ALGORITHM: Step 1: Start the program Step 2: read num Step 3: f <- fibo(num)...
AIM: To write a program to find the ith Fibonacci number using recursion, given F(0)=0, F(1)=1. ALGORITHM: Step 1: Start the program Step 2: read num Step 3: f <- fibo(num)...
AIM: To write a C program to swap two numbers using call by reference. ALGORITHM: Step 1: Start the program. Step 2: Set a ← 10 and b ← 20 Step...
AIM: To write a C program to swap two numbers using call by value. ALGORITHM: Step 1: Start the program. Step 2: Set a ← 10 and b ← 20 Step...
AIM: To write a program to illustrate a function with arguments and with return values. ALGORITHM: Step 1: Start the program. Step 2: Enter the two numbers. Step 3: Call the...
AIM: To write a program for ellipse generation. ALGORITHM: Step 1: Start. Step 2: Initialize the graphics header files and functions. Step 3: Declare the required variables and functions. Step 4:...
AIM: To write a program for midpoint circle drawing. ALGORITHM: Step 1: Start. Step 2: Initialize the graphics header files and functions. Step 3: Declare the required variables and functions. Step...
Aim: To create the indexes on the attributes for fast retrieval of records. Description Indexes are special lookup tables that the database search engine can use to speed up data retrieval. An index helps speed...
Aim : To create and use the sequences for auto-numbering. Description: The Oracle SEQUENCE function allows you to create auto-numbering fields by using sequences. An Oracle sequence is an object that is used to generate...
Aim: To create and execute the savepoint and rollback commands. Description Savepoint: savepoint marks and saves the current point in the processing of a transaction. When a savepoint is used with a rollback statement, parts...
Aim: To create an updatable view and read only view on different tables. PROCEDURE * A view created using already existing table. * If there is any updation or insertion is performed in existing table,the...