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”); […]

Artificial Intelligence (AI) Notes | BIM | BSc.CSIT | BIT | BCA | BCIS

Following are the chapter-wise notes Chapter 1: Introduction to Artificial Intelligence For PDF: CLICK HERE Chapter 2: Agents and Environments An agent is anything that perceives its environment through sensors and acts upon that environment through sensors. For PDF: CLICK HERE Chapter 3: Informed and Uninformed Search For PDF: CLICK HERE Chapter 4: Knowledge representation Knowledge is a […]

C Programming | Structure Programming | C++ | Notes | BIM, BSc.CSIT, BCA, BIT, BCIS

Following are the chapter-wise notes on C programming. Chapter 1: Introduction of a C programming For PDF: CLICK HERE Chapter 2: Elements of C A set of characters that are used to form words, numbers, and expressions in C is called a C character set. For PDF: CLICK HERE Chapter 3: Operators and Expression An operator is […]

Computer Organization

IT 217 : Computer Organization and Architecture | Notes | BIM, BSc.CSIT, BCA, BIT

This Notes is provided by respected Deep Raj Bhujel Sir, Team Study Notes Nepal is very thankful for is support toward us. Also Read : Computer Organization [Assembly Language Program]        

Assembly Language