Bachelors in Information Technology (BIT) program of Tribhuvan University is designed by closely following the courses practiced in accredited international universities, subject to the condition that the intake students are twelve years of schooling in any stream or equivalent from any recognized board. In addition to the foundation and core Information Technology courses, Bachelors in […]
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 […]
Assembly Language Program | Computer Organization and Architecture | BIM 3rd Semester
Also Read: Old Question Bank of Computer Organization of BIM 3rd Semester
DSA with Java- Solution- Very Short Answer
Data structure and algorithm with JAVA What is data structure? → A data structure is a specialized format for organizing and storing data. General data structure types include the array, the file, the record, the table, the tree, and so on. Any data structure is designed to organize data to suit a specific purpose so that it can be accessed and worked with […]
Web Programming II – Solutions – 2016
11. Write a PHP program to create a web form that contains a textbox for names, and checkboxes for hobbies. When a form is submitted, check a name is entered, and at least one of the hobbies is selected. <!doctype html> <html> <head> <title>Year : 2016 | Q : 11</title> </head> <body> <form method = […]
Web Programming II – TU Solution – 2018
11. Write a PHP program to create a form that contains two textboxes that accept numbers and a submit button. When submit button is clicked, the sum of two numbers will be displayed. <!doctype html> <html> <head> <title>Year : 2018 | Q : 11</title> </head> <body> <?php if(isset($_POST[‘add’])) { $n1 = $_POST[‘n1’]; $n2 = $_POST[‘n2’]; […]