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...
Tuesday, January 23, 2018

PL/SQL Programs ADS Lab

thumbnail
Programs: 1.      1.to display the word “HELLO” Code:  declare word varchar2(10) :='Hello'; begin dbms_output.put_l...
Tuesday, January 9, 2018

Giveaway GndecProgramming

thumbnail
Sunday, December 10, 2017

PHP and AJAX

thumbnail
Test4.php: <?php $q=$_GET['q']; $c=new mysqli("localhost","root","naina","nearur"); if...

Using Json in AJAX Application

thumbnail
Test.php file: <?php  $c=new mysqli("localhost","root","naina","nearur"); $obj = json_decode(...
Saturday, November 11, 2017

Kruskal's Algoritm DAA

thumbnail
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.

thumbnail
Question: Write a program to find shortest path from your home to college using Dijkstra’s algorithm. Code: import java.util.ArrayList; ...