Home
All posts
Saturday, January 27, 2018
Pl/SQl Programs ADS
16. declare cursor cursor is select * from emp7567 order by salary desc; id emp7567.id%type; name emp7567.name%type; salary emp7567.sa...
Read more
Tuesday, January 23, 2018
PL/SQL Programs ADS Lab
Programs: 1. 1.to display the word “HELLO” Code: declare word varchar2(10) :='Hello'; begin dbms_output.put_l...
Tuesday, January 9, 2018
Sunday, December 10, 2017
Saturday, November 11, 2017
Kruskal's Algoritm DAA
Question: Write a program to find the minimum cost of connecting all the engineering colleges in your state using Kruskal's algorithm. ...
Dijkstra’s algorithm.
Question: Write a program to find shortest path from your home to college using Dijkstra’s algorithm. Code: import java.util.ArrayList; ...