ISO 9000 Family

INTRODUCTION ISO stands for the ‘International Organization for Standardization’. ISO quality management strongly uses the concept of the PDCA cycle, which includes- Plan – Do – Check – Act \boxed{\text{Plan → Do → Check → Act}} Here, Plan: Establish objectives and processes needed to achieve desired results. Do: Implement the planned processes. Check: Monitor and measure processes and results. Act: Take actions to improve performance. For example, to develop software: PLAN Define requirements, quality objectives …

Loading

File Handling in C

Definition of File Handling in C File handling in C is the process of creating, opening, reading, writing, appending, updating, and closing files using a C program. A file represents a sequence of bytes on the disk where a group of related data is stored, ending with an end-of-file marker. C provides file-handling functions through the header file <stdio.h>. Features/Characteristics of File Handling in C File handling provides a way to store data permanently on …

Loading

Dashboard/Home Page Code in JSP

Example : A complete (Left Side Panel Menu) Dashboard/Home Page code in JSP. NB : Dashboard Home page appears after successful Login or Validation. Example : A complete (Top Menu without Sliders) Dashboard/Home Page code in JSP. NB : Dashboard Home page appears after successful Login or Validation. Example : A complete (Top Menu with Sliders and Open a page in a new Window) Dashboard/Home Page code in JSP. Page after opening a new page …

Loading

Image and PDF Code in Php

Example : Php code to Save, Edit, Search, and Delete Image and PDF files in a MySQL Database. ———————————————————————————-create database and table in MySql database as -CREATE DATABASE filedb;USE filedb;CREATE TABLE imagefile ( slno5 INT AUTO_INCREMENT PRIMARY KEY, name5 VARCHAR(100), mobile5 VARCHAR(15), email5 VARCHAR(100), photo5 VARCHAR(255), pdf5 VARCHAR(255));NB: Also, create ‘Uploads’ folder manually in the source folder first where image and pdf files will store, only path is stored in database file.———————————————————————————–<?phperror_reporting(E_ERROR | E_PARSE);/* ————— …

Loading