Thursday, August 13, 2020

Chapter 14 Managing Projects. - ppt download

   No comments     
Chapter 14 Managing Projects. - ppt download: Management Information Systems Chapter 14: Managing Projects LEARNING OBJECTIVES Identify and describe the objectives of project management and why it is so essential in developing information systems. Compare methods for selecting and evaluating information systems projects and methods for aligning them with the firm’s business goals. Describe...

Saturday, June 13, 2020

Information Technology and Infrastructure

   No comments     
...

Monday, November 26, 2018

Feasibility Study PDF

   No comments     
Conducting a feasibility study is one of the key activities within the project initiation phase.It aims to analyze and justify the project in terms of technical feasibility, business viability, and cost-effectiveness.   ● A feasibility study decides whether or not the proposed system...

Software Testing

   No comments     
Test and integration – Delivers a system that meets user and organizational needs on time and within budget  Always test your application!● Test it yourself● Test it on other computers and environments● Make sure others test your application Test Environment?● A testing environment is...

Agile Software Development

   No comments     
...

Traditional SDLC : Prototype, V model

   No comments     
Click the image to download the Sli...

   No comments     
Traditional SDLC Click the image to download the Slid...

Sunday, November 25, 2018

Software Development Life Cycle

   No comments     
categories: 
...

Tuesday, February 7, 2017

Assembly Language Programming

   No comments     
categories: 
...

Thursday, September 8, 2016

Codeigniter tutorial 7

   No comments     
categories: ,
Codeigniter and MySQL Codeigniter by default assumes that we don't need databases. So we need to configure the database connection. In config/autoload.php we add database library  $autoload['libraries'] = array('database'); Then in config/database.php we do the configurations with the details of database and hosts $db['default'] = array(    'dsn'    => '',   ...

Thursday, July 14, 2016

Remove index.php using .htaccess : Codeigniter tutorial 6

   No comments     
categories: 
To remove 'index.php' from CodeIgniter URL, we need to make some changes in the configuration file. Step 1  open application/config/config.php search for the line  $config['index_page'] = "index.php"; and remove 'index.php' from that line. ($config['index_page'] = "";) Step 2 Create a new file inside Codeigniter folder and save it as '.htaccess' paste the following code...

Thursday, July 7, 2016

Codeigniter tutorial 5

   No comments     
categories: 
I have posted tutorials on, working with Controller and View files in the MVC Pattern Using Codeigniter. Now I go through with Model. In the application folder, we have a sub-folder model Create a new file new_model.php in model folder. <?php Class New_model extends CI_Model{ public...

Friday, June 24, 2016

Codeigniter tutorial 4

   No comments     
categories: 
Data passing from controller to view I posted CodeIgniter URL Routing in the controller, Special methods, and Controller and View files earlier. Now we see, how to pass some data to view files from controller My view file first_view.php <html> <head> <title>View</title> </head> <body> ...