Free Essay

Asdf

In:

Submitted By dcaceres
Words 3669
Pages 15
Computer Science

Chapter 1: Introduction to Computer Hardware

Different Categories of Computer and Computing Devices

Tablets
The lightest and most portable
Touch interface, good for “light” work

Laptops/Notebooks
Larger display area; adds CD or DVD as well as physical keyboard
They are portable; price for performance is not as good as desktop, choice of hardware is limited

Specialized Variant Laptops
Ultrabooks
Thinner, and lighter than laptops
Cost is higher than laptop (all hardware being equal)
Netbooks
Cheaper more portable laptop that is smaller and has a lower quality display and overall less powerful hardware
Much less common than tablets today

Desktop Computers
Everything is separate (monitor, computer, keyboard, etc); this allows you to mix and match and customize your desktop computer, at the cost of increased complexity (some compatibility issues may arise – not everything works together) and decreased portability.
Larger ‘footprint’ (More space is required, but this allows for increase expandability)
-------------------------------------------------
Reduced costs/more options (compared to laptops)

-------------------------------------------------
The purpose of an operating system is to run the computer. The operating system determines the interface of a computer, its configurability, and its security. In general, due to popularity and tweak-ability, the MS-WINDOWS (PC) OS has more viruses than the MAC OS. In general, the MAC OS is -----viewed to be more user friendly.

Large Units of Measurement and Storage
On the computer, all information is stored in binary (2 states, ON OR OFF). A single on/off combination is referred to as a ‘bit’ (binary digit).
The amount of information that can be stored and transferred is typically measured in bytes rather than bits. IMPORTANT: 8 BITS = 1 BYTE

KILObyte (KB) – 210 bytes a THOUSAND bytes (1,024 bytes)
MEGAbyte (MB) – 220 bytes a MILLION bytes (1,048,576 bytes)
GIGAbyte (GB) – 230 bytes a BILLION bytes (1,073,741,824 bytes)
-------------------------------------------------
TERAbyte (TB) – 240 bytes a TRILLION bytes (1,099,511,627,776 bytes)

CPU: Central Processing Unit
The ‘brains’ of the computer; the CPU determines the program execution speed and the calculation speed
Benefits of a faster CPU include programs are loaded faster, viewing videos may be faster and more glitch free, and calculations are completed more quickly.

The CPU CLOCK SPEED is the most common technical specification of CPUs. The CPU clock speed is the speed at which the processor operates (oscillates). Typical home-type computers operate in the single low digit GIGA-clock speeds from 1-4GHz.

The number of CORES determines how many tasks that a computer can execute at the same time. Having a processor with multiple cores can speed up execution even if only a single hardware intensive program is running (the program may be written specifically to take advantage of multi-core technology). By checking ‘system requirements’ or ‘technical requirements’ on the packaging/website of a program, one may determine what is necessary to execute the program.

-------------------------------------------------
Will multiple cores always be faster? It depends. To see for yourself, look at actual computer usage (Task Manager in Windows, Activity Monitor in Mac OS-X).

Memory (RANDOM ACCESS MEMORY – RAM)
When a computer program is executed, the instructions as well as any data currently needed is loaded into RAM from the storage device.
RAM is temporary storage which is gone when you turn off your computer. RAM is significantly more expensive than any other storage device.
-------------------------------------------------
RAM is in GB and ranges from >4GB for basic tasks, 4-8GB for multi-tasks and some complex programs, and 10GB> for extensive multi-tasking with complex programs.

STORAGE
All data that’s needed in the long term must be kept in some form of storage. Long term storage is kept in hard drives.
There are two types of hard drives
1 – Magnetic
2 – Solid State.
Magnetic Hard Drives ardHare the slower of the two but less expensive. They are prone to magnetic field disruptions and are generally viewed as less durable due to the fact that they have moving parts.
-------------------------------------------------
Solid State Hard Drives are faster (roughly twice as fast) than Magnetic Hard Drives. They are more expensive and have lower maximum storage capacity. They are more durable, and have no moving parts.

Common Computer Ports
Ports are computer connections to external devices.
Some common computer ports include: USB (standard) USB 3.0 HDMI (allows display on a TV monitor or connections to peripherals) SD Other Important Ports (for video, audio, network)

Chapter 2: Logic

There are two types of Expressions:
Mathematics (produce a numerical result)
-------------------------------------------------
Logic (produce a Boolean result; can only be true or false).

Logical Operators
Similar to mathematical operators, logical operators take one or two inputs and produce an output.

TRUTH TABLE

Column 1 | Column 2 | Result of (Column 1) OPERATION (COLUMN 2) | FALSE | FALSE | TRUE OR FALSE | FALSE | TRUE | TRUE OR FALSE | TRUE | FALSE | TRUE OR FALSE | TRUE | TRUE | TRUE OR FALSE |
-------------------------------------------------

Logical AND
The popular usage of the logical AND applies when ALL conditions have been met. Truth table (AND) | C1 | C2 | C1 AND C2 | False | False | False | False | True | False | True | False | False | True | True | True |
Logical OR
The correct everyday usage of the logical OR applies when ATLEAST one condition is met. Truth table | C1 | C2 | C1 OR C2 | False | False | False | False | True | True | True | False | True | True | True | True |
-------------------------------------------------

Logical NOT
The everyday usage of logical NOT negates (reverses) a statement. Truth table | S | Not S | False | True | True | False |

Chapter 3: Spreadsheets

Background
Electronic spreadsheets evolved out of paper worksheets. Calculations were manually calculated and entered in columns and rows on paper often draw with grids.

-------------------------------------------------
Templates are pre-created spreadsheets for many types of problems.

Worksheets are sub-pages under spreadsheets. Each spreadsheet can consist of multiple worksheets. Rule of thumb to use worksheets: When there are multiple sheets of related information, each group of information can be stored in its’ own worksheet (can be self-containted). If the information consists of groups of unrelated information, then the information about each group should be stored in a separate spreadsheet/workbook rather than implementing it in a spreadsheet with multiple worksheets.

One worksheet can refer to information stored in another worksheet. Formula for cell when referencing another worksheet =(Sheetx!Cell)

One spreadsheet can refer to information stored in another spreadsheet.

Why use cross reference?
-------------------------------------------------
A typical reason why one worksheet may reference to other worksheets or spreadsheets is that the reference contains data that needs to be “looked up”.

The Excel Ribbon
Tabs are used to group related functions.
Examples of tabs: 1). File Functions associated with documents (creating, opening, saving, printing) 2). Home (default tab) Many of the most commonly used functions (formatting fonts, cells, numerical data) 3). Insert Tables, illustrations, apps, charts, graphs, text, and symbols 4). Page Layout Page setup 5). Formulas Location and groupings of the pre-created built-in mathematical formulas. 6). Data Arranging, organizing, existing data 7). Review Spell checking, thesaurus, translation, adding comments, and change tracking 8). View
-------------------------------------------------
Workbook Views, Show, Zoom, Window, and Macros

Freezing Panes Often used to lock the view so that crucial labels always stay onscreen regardless of which part of the sheet you are viewing. It is found under the File table on the Excel Ribbon.

Tags
When saving work ‘saving as’, you may enter tags. These are separate from the file name but may be used as a search criteria.
-------------------------------------------------

Contents of a Cell
Raw data: also known as constants 1, 2, 150
Labels: describe the contents of another cell Term percentage, Letter
Formula: Values derived from the raw data
-------------------------------------------------
=formula(stuff)

Basic Mathematical Operators
(Mathematical Operation, Excel Operator)
Assignment =
Addition +
Subtraction –
Multiplication *
Division /
-------------------------------------------------
Exponent ^

Designing Spreadsheets: Rules of Thumb
1). Do not directly enter values as data that can be derived from other values.
2). Label information so it can be clearly understood.
-------------------------------------------------
3). Never enter the same information more than once.

Lookup Tables
-------------------------------------------------
Look up tables contain the information that needs to be referred to (looked up) in a part of the spreadsheet. It can be used to address clarity and the issue of entering the same data multiple times.

Formatting Cells
Excel provides the ability to format the spreadsheet in various locations of the ribbon.
Another way to format cells is to highlight cells and right click, and select “Format Cells”.

Order of Operation Level | Operation | Symbol | 1 | Brackets (inner before outer) | () | 2 | Exponent | ^ | 3 | Multiplication, Division | * / | 4 | Addition, Subtraction | + - |
-------------------------------------------------

Basic Statistics
=sum()
=average()
=min()
=max()
-------------------------------------------------

Counting Functions
All counting functions tally up the number of cells that do or do not contain a certain type of data. General usage =function(<start cell range>: <end cell range>)
=Count()
Counts the number of cells within the specified range that contain numbers
=Counta()
Counts the number of cells within the specified range that aren’t empty (data)
=Countblank()
Counts the number of empty cells within the specified range

Conditional Counts
=Countif()
Counts the number of cells that meet a particular requirement
=Countifs()
Counts the number of cells that meets all in a series of multiple requirements Format: =countifs(<range 1>, <criteria 1>, … <optional additional range>, <optional additional criteria>)

Strings
Strings are a series of characters which include alphabetical characters, numerical digits, and special characters such as space, punctuation, or other symbols. String is another name for text.

EXCEL STRING FUNCTIONS (Functions that act on strings)

Converting or changing alphabetical text
=lower() converts text into lower case letters
=upper() converts text into upper case letters
=proper() converts text into proper case (first letter uppercase, rest lower)

Processing Text
=trim() removes spaces from text

Connecting Text
=concatenate() connects string or part of string with another string Example: title with surname

Extracted Portions
=left/right() extracts the specified number of characters from the left/right side of the specified string =left/right(<string>, <length>)
=mid() starting at the specified position, the function extracts the specified number of characters from the string =mid(<string>, <start>, <length>)
=find() finds the starting position of one string with another string =find(<find text>, <within text>, <start position>)

Why bother?
-------------------------------------------------
It saves labor (saves time and effort). Different views of the same data may be needed. It may be useful to be familiar with these functions for the future.

Date and Time Functions
=today() displays the current date (month/day/year)
-------------------------------------------------
=now() displays the current date (month/day/year) and the time (hour/minute) with a 24 hour clock

If-Else Branching
=if( <condition to check>, <return value if true>, <return value if false>) If functions use Boolean inputs (logic). They can only deal with true or false outcomes.

Logical Comparators Math | Excel | Meaning | < | < | Less than | > | > | Greater than | = | = | Equal to | ≤ | <= | Less than, equal to | ≥ | >= | Greater than, equal to | ≠ | <> | Not equal to |

If: Specifying only the True Case
-------------------------------------------------
If only a return value for the true case has been specified, then when the condition has not been met, FALSE will be displayed.

Nested Conditions
Nested conditions are conditions that are dependent upon or are affect by previous conditions. Nesting refers to conditions that are inside other conditions.

-------------------------------------------------
=IF( <condition to check>, <return:true>, <another IF for the false return>)

LOOKUP
Typical use for LOOKUP includes looking up a value from one column (a vector), and returning a value from another column (a vector).

=LOOKUP ( (Cell contains value to find in a table), (Lookup column), (Result Column) )

Example:

=LOOKUP(D2, D11:D15, E11:E15

In this case, we are looking at the term grade points found in the ‘D2’ column, which then according to our lookup table has data stored in the ‘D’ and ‘E’ columns which we are looking to return.
-------------------------------------------------
Lookup tables can be used instead of many nested ‘if’ conditions. Here, we are assigning IF functions to each condition that the lookup table has defined.

VLOOKUP
VLOOKUP is a more complicated and more powerful version of a lookup function. It is basically a LOOKUP function with an extra argument that allows for T/F. Option Value = True True works like LOOKUP; Looks for an appropriate match, if an exact match is not found, the next largest value that is less than the lookup value is returned. If the T/F value is omitted then the function assumes a ‘true’ value.

=VLOOKUP( <lookup value>, <lookup table start:end>, <lookup table column specifying return value>, <exact match?>)

Use TRUE when looking for a value in a range of values; tax brackets, grades… etc
-------------------------------------------------
Use FALSE when there is an exact value to lookup; SIN numbers, product ID number … etc

Logic Operations in Excel
The basic logical operations can be invoked as functions in excel.

AND(<true or false>,<true or false>,…)
OR(<true or false>, <true or false>,…)
-------------------------------------------------
NOT(<true or false>)

Methods of Referring to Cells
Absolute
The formula won’t change if you copy/cut and paste the formula or if the spreadsheet changes in size. Absolute cell references are specified with a $ sign.

Relative The formula changes depending how far that the formula is moved or how much the spreadsheet is changed in size.

Testing Spreadsheets
You should test formulas to ensure that they are correct.
Enter a few test values and see if the results match expectations.
Baseline test cases you could use: 1. Nothing to invest (principle = 0) 2. Interest rates are 0. 3. No time passed. 4. -------------------------------------------------
Normal case: Non zero values for: principle, interest, or time.
Testing Ranges
The following are minimum test cases.
They provide test values in each range.
-------------------------------------------------
Example: Min. GPA; 0,1,2,3,4 – Fail, Pass, etc

Graphic Design and Spreadsheets
Using Color
When used sparingly, color can draw attention to important information. This is an especially valuable tool when there is a large amount of information.
The overuse of color: -reduces its ability to make information stand out -makes it harder to understand what information is mapped to a particular color.
Rule of thumb for color: Make it SUBTLE Balance the use of color between noticeability and subtlety.

Issues with Color: Color blindness affects a portion of the population; the majority of the color blind cannot distinguish red-green very well therefore avoid using them. Field Size: the larger the area to be color coded, the more easily that colors can be distinguished
Using Fonts
-------------------------------------------------
Rule of thumb: No more than 3 different font types in a particular document.

C.R.A.P. CONTRAST REPITION ALIGNMENT PROXIMITY Simple design principles that can be applied in a variety of situations.
Contrast & Repetition: Contrast: make different things look significantly different Repetition: Repeat conventions throughout the interface to tie elements together.
Alignment:
It can be used to structure a document (may demonstrate hierarchical relationships). Center Alignment: Don’t use it for hierarchical documents because it hides or removes the organization. At most: sparing use can be used to provide contrast.
Proximity:
Related items are in close proximity.
-------------------------------------------------
Unrelated items are separated.

Text vs. Graphics Text is the best representation to use when accuracy is paramount.
-------------------------------------------------
Graphics are best useful for illustrating relationships or visualizing patterns.

Pie Charts
Good for showing proportions, how much of the whole does each item contribute. It is poor for showing numerical values.

Bar and Line Graphs
Good for showing trends and comparing functions.

Rule of thumb for graphs: The X axis is used to plot known data, while the Y axis is used to plot the unknown data. Bar graphs are used to plot NON CONTINOUS DATA. Line graph are used to plot CONTINOUS DATA.

Chapter 4: Databases

Databases
The purpose of a database is to store and retrieve information. We use databases when storing data becomes complex or the lists become long.
Columns:
------------------------------------------------- Columns are the attributes that we track for each record. They are “Fields” in Access. Primary Key Each table should typically have one attribute designated as the primary key. The primary key must be guaranteed to be unique. It must uniquely identify one record from another. Choosing a Primary Key: A primary key must be unique to each record because it is the one thing that distinguishes them. If there’s at least one instance where the attributes of two records can take the same value then that attribute cannot be the primary key. If a primary key cannot be formed from a single attribute then several attributes can be combined into a composite key.
-------------------------------------------------
Example of primary key: SIN Number (Every user must have a different SIN) Viewing MS-ACCESS Design View This view is used to specify what attributes of a table will consist of. This view is also used to specify the type and the formal and valid ranges of values.

Datasheet View ------------------------------------------------- Once the attributes have been specified in the Design view, using the Datasheet view allows data entry for each record. Tables A table stores related information. Naming tables: 1. Create a unique and descriptive name. 2. Do not use words that convey database or technical terminology (file, record, table) 3. While names should be short avoid using acronyms and abbreviations (unless well known). 4. Consider using the plural form of a name. 5. Avoid the use of spaces in a name. Guidelines for Naming Attributes 1. Select a unique and descriptive name. 2. Create a name that accurately, clearly, and unambiguously identifies the characteristic that the attribute represents. 3. While names should be short, avoid using acronyms and abbreviations unless they are well known. 4. Use the singular form of a name. 5. ------------------------------------------------- Avoid the use of spaces in names. Null Values Refers to the attributes of a record that are empty. Primary keys CANNOT BE NULL but other attributes may be null. Entry of any attribute can be made mandatory. Foreign Key: an attribute in one table that refers to an attribute in another table.
-------------------------------------------------
Foreign keys can prevent errors. Relationships between Tables Relationships occur when an attribute of one table is a foreign key in another table. Multiplicity: Indicates HOW MANY instances of a particular item participates in the relationship.

ONE-TO-ONE RELATIONSHIPS One entity participates in the relationship from the ‘left’ and one entity participates in the relationship from the ‘right’. This relationship is relatively rare in databases. ONE-TO-MANY RELATIONSHIPS On one side of the relationship, one entity participates in the relationship while on the other side, zero or more entities may participate in the relationship. Gamers: Sessions: Games One Gamer may have many sessions, One session many have many games. MANY-TO-MANY RELATIONSHIPS
-------------------------------------------------
On each side of the relationship, zero or more entities may participate in the relationship. When there is a one to many relationship, the primary key of the ‘one’ side becomes a foreign key to the ‘many’ side. Entity-Relation diagrams (ER Diagrams or E.R.D.’s) show the attributes of a table:

TABLE NAME
--------------------

Primary key Attribute Attribute
-------------------------------------------------

ERDs graphically represent relationships between tables as well as any enforced rules on multiplicity. Types of Tables Data Tables Dynamic, will likely be manipulated over the life of the database. Validation Tables Used to ensure data integrity (lookup values) Typically maps one value to another. Rarely changes.

Types of Data Integrity in Databases 1. Table-level Integrity (entity integrity) This ensures that no duplicate records exist. Implementation: no primary keys are null; no duplicates 2. Relationship-level Integrity (referential integrity) Ensures that relationship between a pair of tables is sound and the records in the tables are synchronized when data is entered into, updated in, or deleted from either table. 3. Field/Attribute-level Integrity (Domain Integrity)
-------------------------------------------------
Ensures that the attributes are valid and accurate. Input Masks Input masks insure the proper format for the data entered in the database. Example: SIN numbers must be entered as <three digits> space <three digits> space <three digits> To define an input mask, switch to design view. Specify the required format under the “Input Mask” property of the appropriate table attribute. Benefits: Constrains inputs Ignores invalid inputs in real-time
-------------------------------------------------
Specifies the format of data to be entered (data entry cues) Validation Rules Validation rules check the data is in the valid range. Can be used to specify a data format. The Wildcard The Wildcard is a value that can be used in place of the other values. The wildcard can be used in conjugation with validation rules. Wildcards are special characters that can stand in for unknown characters in a text value and are handy for locating multiple items with similar, but not identical data. Wild cards can also help with getting data based on a specified pattern match.
-------------------------------------------------
To locate a specific item when you can’t remember exactly how it is spelled, use a wildcard character in the query. Documenting a Database Documentation provides information about the database to the other people who will be working on the database. In MS-ACCESS documentation can be entered in the “Description” column under the Design View.
-------------------------------------------------
It can provide information about the type and format of the information stored. Database Queries Queries are questions asked of/to the database in order to retrieve information. Data retrieval occurs through the use of queries: Create -> Query Design Select the desire table or tables Select the attributes of the table Run the query to view the results.

SQL (STRUCTURED QUERY LANGUAGE) SQL is the universal language for querying a database. Unlike graphical queries, the staements are portable between different database programs. SELECT – Specifies the relevant attributes of which tables are involved in the query. FROM – Lists the tables from which the data is to be selected. WHERE – Provides the conditions to determine if a particular row shows or doesn’t show a result. ORDER BY – Specifies the order in which rows are to be returned

Similar Documents

Free Essay

Asdf

...asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf...

Words: 5234 - Pages: 21

Free Essay

Asdf

...Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf Asdf asdf asdf asdf...

Words: 261 - Pages: 2

Free Essay

Aasdf Fasdf Asdf Asdf

...As asdfasd asdf asdf asdf asdf asdf asdfasdf asdfas fasdf asdf asd As asdfasd asdf asdf asdf asdf asdf asdfasdf asdfas fasdf asdf asd As asdfasd asdf asdf asdf asdf asdf asdfasdf asdfas fasdf asdf asd As asdfasd asdf asdf asdf asdf asdf asdfasdf asdfas fasdf asdf asd As asdfasd asdf asdf asdf asdf asdf asdfasdf asdfas fasdf asdf asd As asdfasd asdf asdf asdf asdf asdf asdfasdf asdfas fasdf asdf asd As asdfasd asdf asdf asdf asdf asdf asdfasdf asdfas fasdf asdf asd As asdfasd asdf asdf asdf asdf asdf asdfasdf asdfas fasdf asdf asd As asdfasd asdf asdf asdf asdf asdf asdfasdf asdfas fasdf asdf asd As asdfasd asdf asdf asdf asdf asdf asdfasdf asdfas fasdf asdf asd As asdfasd asdf asdf asdf asdf asdf asdfasdf asdfas fasdf asdf asd As asdfasd asdf asdf asdf asdf asdf asdfasdf asdfas fasdf asdf asd As asdfasd asdf asdf asdf asdf asdf asdfasdf asdfas fasdf asdf asd As asdfasd asdf asdf asdf asdf asdf asdfasdf asdfas fasdf asdf asd As asdfasd asdf asdf asdf asdf asdf asdfasdf asdfas fasdf asdf asd As asdfasd asdf asdf asdf asdf asdf asdfasdf asdfas fasdf asdf asd As asdfasd asdf asdf asdf asdf asdf asdfasdf asdfas fasdf asdf asd As asdfasd asdf asdf asdf asdf asdf asdfasdf asdfas fasdf asdf asd As asdfasd asdf asdf asdf asdf asdf asdfasdf asdfas fasdf asdf asd As asdfasd asdf asdf asdf asdf asdf asdfasdf asdfas fasdf asdf asd As asdfasd asdf asdf asdf asdf asdf asdfasdf asdfas fasdf asdf asd As asdfasd asdf asdf asdf asdf asdf asdfasdf asdfas fasdf asdf asd As asdfasd...

Words: 612 - Pages: 3

Premium Essay

Asdf

...Skip NavigationJump to Side Bar These resources are brought to you by the Cooperative Extension System and your Local Institution Welcome eXtension is an interactive learning environment delivering the best, most researched knowledge from the smartest land-grant university minds across America. Find a U.S. Institution eXtension: more mind reach Home About Resource Areas News Articles Answers Calendar Learning Lessons Small Meat Processors Home Have a question? Try asking one of our Experts Print Business Plan for Regional Meat Marketing Company Last Updated: October 31, 2011 Business Plan for a Producer-Owned Meat Marketing Company April 2011. Prepared by Keith DeHaan, Food and Livestock Planning, and funded by USDA Rural Development, for the South Coast Meat Project. Includes financials. Table of Contents Plan Summary Download full plan (pdf, 41 pages, 310KB) Table of Contents Executive Summary Introduction Market Plan Market Development Target Markets Products Manufactured Features and Benefits of Products Market Concept Names and Branding Marketing Budget and Requirements Competitive Programs Livestock Supply Numbers Production Types Compensation Strategies for Producers Numbers and Species Used For Planning Other Species Harvest and Processing Plan Facilities Expected Processing Cost Dry Aging Beef Composite Carcass Value Distribution Plans Corporate and Management Plan Best Fit Legal Structure ...

Words: 1176 - Pages: 5

Free Essay

Asdf

...Artist: Randy Newman                                  Song: You Got A Friend In Me     Intro E|----------|---------|--------|----------|----------|------------| B|----------|------7--|--------|----------|----------|------------| G|-------7--|---9-----|-7------|-10-9---7-|-2/3-2--0-|------------| d|------7---|--8------|-7-9----|-8------7-|-4/5-4--2-|-4--3--2---3| A|-----9----|-9-------|--------|--------0-|-0~~-0--0-|-5--4--3--4-| D|-0--0-----|---------|-9------|-8--------|----------|-0--0--0----|   Verse E|--------------------|--------------|----------------|-----------| B|--------------------|--------------|-0-3-0----------|---7---6/7-| G|-------2----2h4-2---|--------------|-0-0-0-7—-4-----|-----------| d|---2/4--4--3------4-|---4-4--------|-0-0---6--6--7--|---7—--6/7-| A|--------------------|---3-3--------|-------------0--|-----------| D|-0--------0---------|-0------0h2h4-|-5-5---6--6-----|------0----|   E|------------------|----------------------|------------------| B|--0--------2--3---|--0-------------------|--0--------2--3---| G|--0--2-----0--4-4-|--0--2----------------|--0--2-----0--4-4-| d|--0--0-0---2--4---|--0--0-0--4-4-4--2--0-|--0--0-0---2--4---| A|----------1---2---|----------1-1-2----5--|----------1---2---| D|-5---4------------|-5---4----------------|-5---4------------|   E|-----------------|---------------------------|    |--2----| B|-3--0--------3---|------0--3--0----3-0---(3)-| 2x |--1----| G|-1----2------2-2-|---2-----1----2--2-0—-7(2)-|Int...

Words: 448 - Pages: 2

Free Essay

Asdf

...Desiree Alaquinez Theme #8 HiST 1301 Mr. Myers Cholera Cholera is a deadly infection that occurs in the small intestine; which is caused by the bacterium vibrio cholera. The disease is most commonly found in places that are very crowded, war affiliated, extremely low scarcity of food, and especially if a place is poorly sanitized. Africa, South Asia, and Latin America are just some parts of the world that come across this deadly disease. Cholera first originated and made its appearance in India in 1817 at the Ganges River; which then later spread too many other regions due to neglected transported bilge of water. It was not until 1883, that this disease was discovered by German bacteriologist Robert Koch. Koch noticed the epidemic of this unusual rare disease and decided to take a closer look into the situation. He then realized that some sort of bacterium was in the intestines of the dead; but he was shocked to know that he was unable to neither isolate the organisms nor infect other animals with it. Later Koch went to India and made a surprising discovery-the cholera disease was started from damp dirty linen that the bacteria grew in, earth’s misty air, and bunch of bacteria that was in patient’s stools. The most common sources that cause cholera is standing water, type o blood, poor sanitation, eating raw seafood especially shellfish-because it originates from the same locations that have been exposed to cholera, consuming raw vegetables or fruit, and grain such as millet...

Words: 630 - Pages: 3

Premium Essay

Asdf

...I. STATEMENT OF THE PROBLEM  How should STI Dipolog be more competitive with the existing schools in Dipolog City? II. THE ORGANIZATION AND ITS PROFILE Organization Name: Systems Technology Institute (STI) - Dipolog Motto: “Education For Real Life.” Location: Gillamac Building, Malvar St., Dipolog City Systems Technology Institute (STI) is the largest network of for-profit information technology based colleges in the Philippines. This private college system offers a curriculum including business studies, computer science, education, engineering and health care. STI has branches all over the Philippines and claims to be the second largest IT-based educational institution in Asia. STI Educational Network System STI network is composed of the following structures, each with its own specific functions and objectives:  The Colleges The STI Colleges provides associate, baccalaureate, and Masteral Programs in the fields of Information and Communications Technology (ICT), Engineering, Business and Management, Tourism and Hospitality Management, Arts and Sciences, and Healthcare. These programs are duly accredited by the Commission on Higher Education (CHED) and the Technical Education and Skills Development Authority (TESDA). TESDA Programs under the Colleges can also be ladderized with exit points that equip graduates with TESDA Certifications and the option to continue further studies in programs accredited by CHED.  The Education Centers The STI Education...

Words: 13946 - Pages: 56

Free Essay

Asdf

...TermPaperWarehouse.com is completely free! Simply donate one essay to the site to create your account. It only takes five minutes to create an account and you'll have instant access to the site TermPaperWarehouse.com is completely free! Simply donate one essay to the site to create your account. It only takes five minutes to create an account and you'll have instant access to the site TermPaperWarehouse.com is completely free! Simply donate one essay to the site to create your account. It only takes five minutes to create an account and you'll have instant access to the site TermPaperWarehouse.com is completely free! Simply donate one essay to the site to create your account. It only takes five minutes to create an account and you'll have instant access to the site TermPaperWarehouse.com is completely free! Simply donate one essay to the site to create your account. It only takes five minutes to create an account and you'll have instant access to the site TermPaperWarehouse.com is completely free! Simply donate one essay to the site to create your account. It only takes five minutes to create an account and you'll have instant access to the site TermPaperWarehouse.com is completely free! Simply donate one essay to the site to create your account. It only takes five minutes to create an account and you'll have instant access to the site Concept Map What is a Concept Map? Concept maps, developed by Joseph D. Novak [Novak & Gowin, 1984], are two-dimensional representations...

Words: 530 - Pages: 3

Free Essay

Asdf

...Unit 1 Assignment1 Chapter 1 1. Free software is any software that is not only free to obtain but also allows you to obtain the source code for that software. 4. GNU was meant to be a free operating system, however it only finished the system programs part of the operating system. Linux is what finished the kernel part of the operating system and is what is available today. Chapter 2 1. Installing an operating system such as fedora involves setting the BIOS to boot from the CD/DVD, making a selection from the welcome screen, then you must configure, after this it writes the operating system to the hard disk. Chapter 3 1. A live session is when you run Linux on a computer without installing Linux on the computer. 4. The /boot partition must be the first or one of the first partition on the hard disk. 8. When the system enters run level 5. Chapter 11 1. When in single user mode you can only log on the one terminal, when in multi user mode you can log on to any terminal that is set up for log in. 3. The letters stand for substitute user. You can give yourself privileges of any User whose password you know. You can also execute a command (other than a shell) as the specified user. To log in as Alex, you would first log in as root, and then give the command su Alex, or su – Alex to establish the same environment that Alex has when he logs in. 7. Do not use any dictionary words, use a mix of letters, numbers, and special...

Words: 276 - Pages: 2

Premium Essay

Asdf

...Associate Program Material Diversity Worksheet Answer each question in 50 to 150 words. Provide citations for all the sources you use. What is diversity? Why is diversity valued? The term "diversity" is used broadly to refer to many demographic variables, including, but not limited to, race, religion, color, gender, national origin, disability, sexual orientation, age, education, geographic origin, and skill characteristics. Diversity should be respected and valued because nobody is completely the same as anyone else, even within the categories above. People tend to reject what is different. Our differences/diversities can lead to growth as a society or it can lead to violence and hatred. We must value our diversity in order to work together for the common good of our society/world. What is ethnocentrism? In what ways can ethnocentrism be detrimental to a society? Ethnocentrism is judging another culture solely by the values and standards of one's own culture. The ethnocentric individual will judge other groups relative to his or her own particular ethnic group or culture, especially with concern to language, behavior, customs, and religion. These ethnic distinctions and subdivisions serve to define each ethnicity's unique cultural identity. Even though it may cause external conflicts, it creates internal unity. It also makes individuals feel more certain about their beliefs. Through providing individuals with a sense of belonging to a particular...

Words: 587 - Pages: 3

Premium Essay

Asdf

...The domestic dog (Canis lupus familiaris), is a subspecies of the gray wolf (Canis lupus), a member of the Canidae family of the mammilian order "Carnivora". The term "domestic dog" is generally used for both domesticated and feral varieties. The dog may have been the first animal to be domesticated, and has been the most widely kept working, hunting, and companion animal in human history. The word "dog" may also mean the male of a canine species, as opposed to the word "bitch" for the female of the species. The present lineage of dogs was domesticated from gray wolves about 15,000 years ago.Remains of domesticated dogs have been found in Siberia and Belgium from about 33,000 years ago. The earlier specimens not only show shortening of the snout but widening of the muzzle and some crowding of teeth making them clearly domesticated dogs and not wolves. There are more sites of varying ages in and around Europe and Asia younger than 33,000 years ago but significantly older than 15,000 years ago. None of these early domestication lineages seem to have survived the Last Glacial Maximum. Although mDNA suggest a split between dogs and wolves around 100,000 years ago no specimens predate 33,000 years ago that are clearly morphologically domesticated dog. Dogs' value to early human hunter-gatherers led to them quickly becoming ubiquitous across world cultures. Dogs perform many roles for people, such as hunting, herding, pulling loads, protection, assisting police and military, companionship...

Words: 329 - Pages: 2

Premium Essay

Asdf

...MGT 3332.01 Organizational Behavior Fall 2013 T/TH 9:25a – 10:40a AMB 105 INSTRUCTOR: Dr. Tommy Nichols OFFICE: AMB 317 PHONE: 817-531-4849 E-MAIL: tnichols@txwes.edu OFFICE HOURS: Tue: 8:15a-9:25a 1:15p-6:15p Wed: 6:15p-7:00p Thur: 8:15a-9:25a 1:15p-2:15p Note: The best way to contact me is typically through e-mail. I promise to respond within 24 hours, with the exception of weekends and holidays. Website: http://faculty.txwes.edu/tnichols Homework website: http://connect.mcgraw-hill.com/class/t_nichols_fall_2013 University Mission: The University endeavors to create a learning environment where each student is provided an opportunity to pursue individual excellence, to think clearly and creatively, to communicate effectively, and to develop spiritual sensitivity, with a commitment to moral discrimination and action, and with a sense of civic responsibility. School of Business Mission: The School of Business Administration and Professional Programs (SOBAPP) is a community of learners dedicated to pursuing and sharing the values, knowledge and skills that enable our students to compete in a dynamic and increasingly global environment.  Text: (Required) Colquitt, J. A., LePine, J. A., & Wesson, M. J. (2013). Organizational behavior: Improving performance and commitment in the...

Words: 2160 - Pages: 9

Premium Essay

Asdf

...Writing  a  Biology  Laboratory  Report     Structuring  your  report   A  laboratory  report  usually  contains  the  following  sections:           •   Modified  from:  Swales,  J  and  C.  Feak  (2000)  English  in  Today’s   Research  World:  a  Writing  Guide,  Michigan:  Ann  Arbor.   • •   Introduction  –  provides  background  information  that  your  reader  will  require,  to  understand   your  experiment,  and  indicates  why  you  did  this  experiment    with  a  clear  statement  of  your   hypothesis/es.  For  your  Biology  report  you  can  use  your  textbook  as  the  source  of  your   background  information.     Methods  –  explains  how  you  performed  the  experiment.  For  your  Biology  report  you  can   simply  say  “refer  to  page  …  of  the  Biology  Workbook”).     Results  –  present  the  data  you  collected  during  the  experiment  in  a  clear  and  logical  manner,   e.g.  table,  graph,  (results  of  statistical  tests  if  appropriate  –  not  necessary  for  this  Biology   report)...

Words: 936 - Pages: 4

Free Essay

Asdf

...1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympicsv1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympicsv1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympicsv1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympicsv1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympicsv1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympicsv1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympicsv1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976 Montreal Olympics1976...

Words: 560 - Pages: 3

Premium Essay

Asdf

...Fiscal Policy of Bangladesh Jamshed uz Zaman When budget is declared Opposition Parties claim: Budget against the poor; Government Parties claim: Welfare oriented budget. Some declares hartal. How to understand a budget favors whom? A budget may favor • poor or rich class; • Importers or exporters; • Primary producers or manufacturers; etc. Government claims that the budget is surplus, but most often it is true. Govt.’s claim it because • Political popularity, • People are afraid of inflation. Is deficit budget always unacceptable? No. Deficit budget are prepared • In deflationary situation, • When resources fall short of needs, • To help implementation of monetary policy. Deficit does not necessarily mean imposition of new taxes. Components of Budget Revenue Budget • • Revenue Receipts Revenue Expenditure Surplus/Deficit Food Budget • Food Aid • Counterpart Fund • Food Import • VGD, FFW • Subsidy Surplus/Deficit Capital Budget • Receipts • Payments Surplus/Deficit Development Program + - • • Expenditure Receipts • • • • Revenue Surplus New Tax Measures Net Domestic Capital Extra Budgetary Resource • • Counterpart fund Net food aid • • • • Foreign Assistance Foreign Direct Investment Borrowing from the public Borrowing from Banking System - Central Bank - Commercial banks Total Budget has to be deficit to achieve the long term goals We have to check whether...

Words: 910 - Pages: 4