Saturday, February 24, 2018

Artificial Intelligence Python

thumbnail
2. Write a program to find the sum of all numbers stored in a list. Code:   list= map ( int , input ( "Enter List : " ).strip...
Wednesday, February 21, 2018

Program Classes and Objects

thumbnail
Write a program by creating objects to display student information Code: class Student: def __init__ ( self ,name,c,rollno,phone,a...
Tuesday, February 20, 2018

Best First Search AI

thumbnail
Code : alist={ 'A' :[ 'B' , 'C' , 'D' ], 'B' :[ 'H' ], 'C' :[ 'G...
Thursday, February 15, 2018

Programs ADS Lab

thumbnail
20. CREATE PACKAGE emp_sal1 AS PROCEDURE find_sal(empid emp7567.id%type); END emp_sal1;   Output:       CREATE OR ...
Saturday, January 27, 2018

Pl/SQl Programs ADS

thumbnail
16. declare cursor cursor is select * from emp7567 order by salary desc; id emp7567.id%type; name emp7567.name%type; salary emp7567.sa...