31.8.05
30.8.05
Posted by Picasa
Op/Prod Class
Differentiation - being unique
Minit-Lube -
We hope to provide a quick and inexpensive service to your vehicles lubrication needs while meeting your needs of a clean appealing enviroment
C++ Programming
}
inside the curly braces is the main body of the source code
using Dev C++
printf - name of function to display anything
printf("Hello World"); = this is how printf is used
need to reference the Header File which is included in the program and alerts complier that the proggie uses runtime librarys
you can find the header file by ctrl-click on the function
type it at the begining before main as below...
"/n" is written at the end of the string so that it will write it as a new line...
system("") = is directions for the computer and in the case below it makes it pause in the console window and wait for a key stroke
In order to display Hello World
#include
#include
int main(){
printf("Hello World\n");
system("pause");
}
The above is a Console Application it basically runs within an MSDOS window and has no GUI. The above is from page 61 in the text book.
"cout" is another way of displaying text to a screen but in order to use it one must put
#include
using namespace std;
Before the int main... Like so
#include
#include
#include
using namespace std;
int main(){
printf("Hello World\n");
cout<<"Any message\n";
system("pause");
}
**********************************************************************
int age;
int is a type of variable and age is the name of variable
the three data types are:
- int - Integer
- float - Float
- char - Character
Naming a variable:
Cannot used a reserved word
Spaces cannot be used in a variable name
Identifiers must begin with an uppercase or lower case ASCII letter or underscore
Numbers can be used in an identifier but cannot be the first character
Special characters such as $, &, *, or % cannot be used
to set up a variable with a value
int myVariable = value
Like so below to recall it and print to screen
#include
using namespace std;
int main(){
int Age=21;
cout<< "My ages is ";
cout<<>
system("pause");
}
** cout using endl makes it a new line
25.8.05
Operation Management
Goods - tangible item, can be stored for future use
Service - intangible, used immediately
Operation
Marketing
Finance
Accounting
Figure 1.1 Examples of Industry
Leadership - motivates, lead by example
Table 1.2 Design of service & product
Quality Management
Layout Design
Id service area
Supply Chain management
Scheduling and maintenance
Etc. etc.
Jobs of Operation Managers
Plant manager, quality assurance, director of purchasing, process improvement consultant, supply chain management
Over 80% is services and the 20% is manufacturing but most all of that is done over sea
Just-in-time performance: Deliver what is needed when its needed how many is ordered no more no less its so there is less waste
Supply chain manager:
Rapid Product Development: the time to develop a product from begining to end is very short cause of information technology
Mass Customization: huge volume built to specs of personal configuration of individuals cause computers allow it to be
Empower Employees: participatory decision making with bottom-up approach with ideas of underlings being valued by the management and executives
Enviromentally Sensitive Production: materials are recyclable and the air water stay clean
Productivity challenge:
productivity = output/input
page 14-15
Ok that was the notes from today's class... go get the book btw...
19.8.05
18.8.05
Pictures from Youth Camp
Posted by Picasa