... Coordinator Coordinator Communicator Communicator Negotiator Negotiator Project Manager LA TROBE UNIVERSITY – HANOI UNIVERSITY GRADUATE SCHOOL OF MANAGEMENT MBA CLASS: Project Management - Session ... Project Management Session 1: Introduction to Project Management PM approaches and tools PM approaches and tools Approaches • Final objectiveoriented • Systematic • Sustainable Tools • Templates: ... OF MANAGEMENT MBA CLASS: Project Management - Session 8: Procurement Management Version 2.0 Version 2.0 Project Management Session 1: Introduction to Project Management LA TROBE UN IVERSITY –...
Ngày tải lên: 24/12/2013, 12:16
Session 2: Introduction to Windows pot
... operating systems Introduction to Windows/ Session Windows 2000 Professional Features: – Easier to use – Easier to manage – More compatible – More powerful Introduction to Windows/ Session Features ... device Printer / Monitor Floppy disk Hard disk Storage Devices Introduction to Windows/ Session Functions of an Operating System It loads itself into memory It loads user program into memory It loads ... permissions only way to secure resources in a FAT file system Introduction to Windows/ Session Shared Folder permission types No Access Read Change Full Control Introduction to Windows/ Session Assigning...
Ngày tải lên: 29/07/2014, 08:20
Session 01 Introduction to Programming
... LBC /Session 17 Flowcharts It is a graphical representation of an algorithm START DISPLAY ‘Hello World !’ STOP LBC /Session 18 The Flowchart Symbol LBC /Session 19 Flowchart to add two numbers LBC /Session ... functions to be added in the standard library • Some compilers require a separate library to be created LBC /Session 13 Compiling & Running A Program LBC /Session 14 The Programming Approach to Solving ... performed to solve a problem The example below describes an algorithm: Classroom Leaving the classroom Head towards the staircase Go to the basement These are the steps followed when a student wants to...
Ngày tải lên: 08/10/2015, 22:23
Session 02 Introduction to Programming
... char -128 to 127 unsigned to 255 signed char -128 to 127 int 16 -32,768 to 32,767 unsigned int 16 to 65,535 signed int 16 Same as int short int -128 to 127 unsigned short int to 255 LBC /Session ... programmer to access memory locations using their address • The operating system takes care of allocating space for the variables • To refer to the value in the memory space, we need to only use ... variableName int varName LBC /Session 10 Basic Data Types The basic data types are int float double LBC /Session char void 11 Type int • Stores numeric data int num; • Cannot then store any other type of...
Ngày tải lên: 08/10/2015, 22:23
Session 03 Introduction to Programming
... -11 LBC /Session Precedence Of Arithmetic Operators Operator Class Operators Associativity Unary - ++ Right to Left Binary ^ Left to Right Binary */% Left to Right Binary +- Left to Right Binary ... Binary = Right to Left LBC /Session 10 Precedence between comparison Operators Always evaluated from left to right LBC /Session 11 Precedence for Logical Operators Precedence Operator NOT AND OR ... :getchar()/putchar(char c) LBC /Session Expressions Combination of Operators and Operands Operators Example 2*y+5 Operands LBC /Session 3 Operators Types Arithmetic Logical Relational Bitwise LBC /Session Arithmetic...
Ngày tải lên: 08/10/2015, 22:23
Session 04 Introduction to Programming
... statement LBC /Session Conditional Statement • Conditional statements enable us to change the flow of the program • A conditional statement evaluates to either a true or a false value Example : To find ... statements; If the if expression evaluates to true, the block following the if statement or statements are executed LBC /Session The if statement-2 Program to display the values based on a condition ... \t%d”, x, y); } } LBC /Session The if – else statement-1 Syntax: if(expression) statements; else statements; LBC /Session The if – else statement-2 • If the if expression evaluates to true, the block...
Ngày tải lên: 08/10/2015, 22:23
Session 05 Introduction to Programming
... call to the function was made •The return statement can have a value with it, which it returns to the program LBC /Session 16 Jump Statements-2 goto label; •The goto statement transfers control to ... ("\nThe total numbers entered were %d", num2); } LBC /Session 15 Jump Statements-1 return expression; •The return statement is used to return from a function •It causes execution to return to the ... LBC /Session Nested for Loops-1 The for loop will be termed as a nested for loop when it is written as follows for(i = 1; i
Ngày tải lên: 08/10/2015, 22:23
Session 06 Introduction to Programming
... It is not possible to assign one array directly to another • Values cannot be assigned to an array on the whole, instead values are assigned to the elements of the array LBC /Session Array Handling ... players[1], …, players[10] LBC /Session Defining an Array-1 • An array has some particular characteristics and has to be defined with them • These characteristics include: – Storage Class – Data Types ... ary[i]; } printf(“\nHighest value entered was %d”, high); } LBC /Session Array Initialization • Each element of an automatic array needs to be initialized separately • In the following example the...
Ngày tải lên: 08/10/2015, 22:23
Session 07 Introduction to Programming
... put to the ‘right’ location, the array is sorted LBC /Session 7 Insertion Sort 23 17 45 18 LBC /Session 12 22 Insertion Sort 23 17 45 18 12 22 LBC /Session Insertion Sort 23 17 45 18 12 22 6 LBC /Session ... the subsequent elements in the array to obtain the least/greatest value • There are approaches in bubble sort implementation: Bottom-up Top-down LBC /Session Bubble Sort • • 12 12 22 14 22 ... 17 45 18 12 22 6 23 LBC /Session 11 Insertion Sort 17 23 45 18 12 22 6 LBC /Session 12 Insertion Sort 17 23 45 18 12 22 6 LBC /Session 13 Insertion Sort 17 18 23 45 LBC /Session 12 22 6 14 Insertion...
Ngày tải lên: 08/10/2015, 22:23
Session 08 Introduction to Programming
... one function to another – To manipulate arrays easily by moving pointers to them instead of moving the arrays itself – To allocate memory and access it (Direct Memory Allocation) LBC /Session Pointer ... *name; • For Example: int *var2; LBC /Session Pointer Operators • There are special operators which are used with pointers :& and * • & operator is a unary operator and it returns the memory address ... Values can be assigned to pointers through the & operator p_var = &var; Here the address of var is stored in the variable p_var • It is also possible to assign values to pointers through another...
Ngày tải lên: 08/10/2015, 22:23
Session 09 Introduction to Programming
... defines the parts of a program that will be able to recognize the variable LBC /Session 12 Storage Classes-2 • automatic • external • static • register LBC /Session 13 Function Scope rules • Scope Rules ... throughout the execution of the program LBC /Session 11 Storage Classes-1 • Every C variable has a characteristic called as a storage class • The storage class defines two characteristics of the ... will return • A valid function name is to be assigned to identify the function • Arguments appearing in parentheses are also termed as formal parameters LBC /Session Arguments of a function • • •...
Ngày tải lên: 08/10/2015, 22:23
Session 10 Introduction to Programming
... LBC /Session 10 14 Passing Arrays to Functions-3 int sum_arr(int num_arr[]) /* Function definition */ { int i, total; for(i=0,total=0;i
Ngày tải lên: 08/10/2015, 22:23
Session 11 Introduction to Programming
... into the structure */ for (i=0; iname); LBC /Session 11 20 Example of Pointers to Structures (cont.) printf("\nEnter Customer ... struct strucintcal *ptr_customers; int i, n; LBC /Session 11 19 Example of Pointers to Structures (cont.) printf("\nEnter the number of customers: "); scanf(“%d”,&n); ptr_customers=(struct structintcal ... LBC /Session 11 15 Example of structure arrays (cont.) /* Accepts data into the structure */ for (i=0; i
Ngày tải lên: 08/10/2015, 22:23
Session 12 Introduction to Programming
... any flags to indicate the end of file or end of record • The end of file is determined by the size of the file LBC /Session 12 Files • A file can refer to anything from a disk file to a terminal ... rewind( ) Resets the file position locator to the beginning of the file remove( ) Erases a file fflush( ) Writes data from internal buffers to a specified file LBC /Session 12 File Pointer • A file ... read/write LBC /Session 12 15 Closing a File Binary • The fclose() function closes a stream that was opened by a call to fopen() • The prototype for fclose() is: int fclose(FILE *fp); LBC /Session 12...
Ngày tải lên: 08/10/2015, 22:23
... element name © Aptech Ltd Introduction to the HTML5 / Session Elements 2-2 Following figure shows an element in HTML tag © Aptech Ltd Introduction to the HTML5 / Session DOCTYPE Informs the ... information that is required to preview or acquire a summary of the © Aptech Ltd Introduction to the HTML5 / Session Basic Tags 4-6 LINK The tag is used to define the association between ... elements © Aptech Ltd Introduction to the HTML5 / Session A data type1-2 specifies the type of value assigned Data Types to the attributes and the type of content that is to be displayed on the...
Ngày tải lên: 20/11/2015, 11:13
HTML5 XP session 5 introduction to CSS3
... Universal selector selector Selectors Selectors Type Type selector selector ID ID selector selector Class Class selector selector © Aptech Ltd Introduction to CSS3 / Session 21 Type Selector Styles ... Aptech Ltd Introduction to CSS3 / Session 20 Selectors 2-5 Selectors refer to the HTML elements with the styles that the users want to apply to them The four different types of CSS selectors are ... types of selectors Explain nested tags Define Classes and IDs for applying styles Explain the process to apply styles to hyperlink © Aptech Ltd Introduction to CSS3 / Session Introduction...
Ngày tải lên: 20/11/2015, 11:13
An introduction to disk drive modeling
... cylinder skewing and sector-based sparing with one spare sector per track This needs to be accounted for in mapping logical blocks to the physical sectors Adding all these factors results in the ... 97560 sector size 256 bytes 512 bytes cylinders 1449 1962 tracks per cylinder 19 data sectors per track 113 72 number of zones 1 track skew 34 sectors sectors cylinder skew 43 sectors 18 sectors ... specifications, since the only alternative is to determine them experimentally The information required to determine how much power to apply to the pivot motor and for how long on a particular seek...
Ngày tải lên: 12/09/2012, 14:16
C++ - I/O Streams as an Introduction to Objects and Classes
... beginning to the end (for now) No backing up to read something again (OK to start over) Just as done from the keyboard Writing to a file Sending output to a file Done from beginning to end ... fails, it is generally best to stop the program The function exit, halts a program exit returns its argument to the operating system exit causes program execution to stop exit is NOT a member ... flag is an instruction to one of two options ios::fixed is a flag Will be written in fixed-point notation, the way we normally expect to see numbers Calls to setf apply only to the stream named...
Ngày tải lên: 12/09/2012, 22:49
Introduction to Digital Signal Processing and Filter Design
... using complementary metal oxide semiconductor (CMOS) transistors They used no resistors and inductors, and the whole circuit was fabricated by the 20 INTRODUCTION very large scale integration ... may have to tune each of them to correct for manufacturing tolerances, but there is no such need to test the accuracy of the wordlength in digital filters Data on digital filters can be stored on ... the ability to understand the solution to the problems is important but understanding the theory behind them is far more important The following paragraphs are addressed to the instructors teaching...
Ngày tải lên: 13/09/2012, 10:21