Java Programming II | Old Paper Solution | BIM 5th Semester

Except JSP, Servlet and HTML! T2015_16 import java.sql.*; public class T2015_16 {     static Connection con;     static Statement s;     static ResultSet rs;     public static void main(String[] args) throws Exception{         deleteRecord();     }     public static void deleteRecord() throws Exception{         Class.forName(“com.mysql.jdbc.Driver”);         String url=”jdbc:mysql://localhost:3306/fomdb”;         con=DriverManager.getConnection(url,”root”,””);         if(con!=null){             s=con.createStatement();             String sql=”DELETE FROM employee WHERE age>60″;             int res=s.executeUpdate(sql);             if(res!=-1){                 rs=s.executeQuery(“SELECT id,name,salary,post,age FROM employee”); […]

Data Mining | BIM 8th Semester | TU Solution -2018

Brief Answer Question: i. What are two types of data used in data mining? Types of data used in data mining are: Records Graph and network. Ordered Multimedia ii. Write formula for confidence used in association rule mining. Confidence is the conditional probability that a transaction will contains Y given that it contains X or […]

Data Mining and Data warehousing | BIM 8th Semester TU Solution | 2017

Brief Answer Questions: What is information? Information is the processed form of data, which has meaningful values for the receiver. What is data mining? Data mining is defined as a process used to extract usable data from a larger set of any raw data.  Is privacy of data an issue in data mining? Give reason. […]

Search Engine

Unit 8: Search Engines

Search Engines Search engines are a program that searches for and identifies items in a database that correspond to keywords or characters specified by the user, used especially for finding particular sites on the World Wide Web. Search engines utilize automated software applications (referred to as robots, bots, or spiders) that travel along the Web, […]

Web Programming II – TU Solution – 2019 (Makeup)

TU Solution- BIM- 2019 (Makeup) 11. Write a PHP program to create a form that contains two textboxes which accepts numbers and a submit button. When submit button is clicked, sum of two numbers will be displayed. <!doctype html> <html> <head> <title>Year : 2019 (Makeup) | Q : 11</title> </head> <body> <?php if(isset($_POST[‘add’])) { $n1 […]