Home
All posts
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. ...
Read more
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; ...
Sunday, November 5, 2017
Sutherland PolyGon CLipping
Code: #include<iostream.h> #include<conio.h> #include<graphics.h> #define round(a) ((int)(a+0.5)) int k; float xmi...
Mid Point Eclipse Drawing Algoritm
Code: #include<stdio.h> #include<conio.h> #include<graphics.h> #include<math.h> void disp(); float x,y; int xc,yc...
Travelling Salesman Problem
Question: Code: Write a program to find minimum route for a newspaper distributer of your locality using Greedy algorithm. public cla...
Saturday, November 4, 2017
WT 11,12 JavaScript
Question: Create an HTML file to display the various arithmetic operations on variables using JavaScript. Code: <html> <hea...
WT 13,14,15 PHP Practicals
Question: . Create a PHP file to print any text using variable Code: <html> <head> <?php $variable="Hello Wor...