Here are the guidelines for BIM Summer Project report writing published by the Faculty of Management, Tribhuvan University.
Post Page
Absorption and Variable Cost
Numerical Problems Brief Answer Questions 1. Following information is provided to you: Sales Rs. …………………………4,00,000 Variable manufacturing overhead …….30,000 Direct materials…………………………………. 50,000 Fixed manufacturing overhead …………………50,000 Direct labour ……………………………………… 80,000 Fixed administrative overhead………………….20,000 Variable administrative overhead……….. 10,000 Required: Income statement under variable costing. Solution Income Statement under Variable Costing Particulars Rs. Rs. Sales […]
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 – Solutions -2015
11. Write a program in PHP to add three numbers. <!doctype html> <html> <head> <title>Year : 2015 | Q : 11</title> </head> <body> <?php $sum = 0; if(isset($_POST[‘add’])) $sum = $_POST[‘n1’]+$_POST[‘n2’]+$_POST[‘n3’]; ?> <form method = ‘post’> Number 1: <input type = ‘number’ name = ‘n1’ value = ‘0’><br> Number 2: <input type = ‘number’ name […]
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”; […]
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’]; […]

