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 – Solutions -2017
11. Write a PHP code to perform server-side validation. (Check for empty, alphabets, numbers, email and password length validation) <!doctype html> <html> <head> <title>Year : 2017 | Q : 11</title> </head> <body> <?php function validate($n,$a,$e,$p) { //Checking for empty spaces if($n==”||$a==”||$e==”||$p==”){ echo ‘Empty spaces not permitted’; return false; } //Checking for numbers $regN = “/^[A-Z]+[A-z\s]+[a-z]$/m”; […]
