Rabu, 21 Oktober 2015

Quiz Oracle Section 6-17 Design

Section 6 Design

ARTIFICIAL, COMPOSITE AND SECONDARY UID
People are not born with "numbers," but a lot of systems assign student numbers, customer IDs, etc. A shoe has a color, a size, a style, but may not have a descriptive "number". So, to be able to uniquely and efficiently identify one instance of the entity SHOE, a/an ______________ UID can be created.
Artificial
           
A unique identifier can only be made up of one attribute. True or False?
False
           
A UID can be made up from the following:
Attributes
Relationships
           
An entity can only have one UID. True or False?
False
           

NORMALIZATION AND FIRST NORMAL FORM
An entity can have repeated values and still be in 1st Normal Form. True or False?
False
           
When all attributes are single-valued, the database model is said to conform to:
1st Normal Form
           
The following entity is on 1st normal form: True or False?
ENTITY: VEHICLE
ATTRIBUTES:
    REGISTRATION
    MAKE
    MODEL
    COLOR
    DRIVER
    PASSENGER 1
    PASSENGER 2
    PASSENGER 3
False
           
When data is stored in more than one place in a database, the database violates the rules of ___________.        
Normalization
           


SECOND NORMAL FORM
An entity can be on 2nd Normal Form even if it has repeated values. True or False?
False
           
What is the rule of Second Normal Form?
All non-UID attributes must be dependent upon the entire UID
           
Examine the following entity and decide which attribute breaks the 2nd Normal Form rule:
ENTITY: CLASS
ATTRIBUTES:
   CLASS ID
   DURATION
   SUBJECT
   TEACHER NAME AND ADDRESS
TEACHER NAME AND ADDRESS
           


THIRD NORMAL FORM
No databases in the world is ever truly on 3rd Normal Form. Everyone always stops after 2nd Normal Form. True or False?
False
           
Examine the following Entity and decide which sets of attributes breaks the 3rd Normal Form rule:
ENTITY: TRAIN (SYNONYM: ROLLING STOCK)
ATTRIBUTES:
    TRAIN ID
    MAKE
    MODEL
    DRIVER NAME
    DEPARTURE STATION
    NUMBER OF CARRIAGES
    NUMBER OF SEATS
    DATE OF MANUFACTURE
DEPARTURE STATION, DRIVER NAME
NUMBER OF CARRIAGES, NUMBER OF SEATS
           
As a database designer it is your job to store data in only one place and the best place. True or False?   
True      




Section 7 Design

ARCS
Which of the following is the definition for Third Normal Form?
No non-UID attribute can be dependent on another non-UID attribute
           
If the entity CD has the attributes: #number, *title, *producer, *year, o store name, o store address, this entity is in 3rd Normal Form ("no non-UID attribute can be dependent on another non-UID attribute). True or False?
False
           
Which of the following can be added to a relationship?
An arc can be assigned
           
To visually represent exclusivity between two or more relationships in an ERD you would most likely use an ________. 
Arc
           
Which of the following would best be represented by an arc?
STUDENT ( University, Trade School)
           
Secondary UID's are
Useful as an alternative means identifying instances of an entity
           
All parts of a UID are mandatory. True or False?
True
           
This diagram could also be expressed as a supertype/subtype construction. True or False?
False
           

HIERARCHIES AND RECURSIVE RELATIONSHIPS
A recursive rationship should not be part of a UID. True or False?
True
           
Which of the following would be a good Unique Identifier for its Entity?
Identification Number for Person
Birthdate for Baby Which Includes Hour, Minute, and Seconds

A relationship can be both recursive and hierachal at the same time. True or False?
False
           
In this simple diagram, what comprises the unique identifier for the student class entity?
student id and course id
           

MODELING HISTORICAL DATA

Historical data should always be kept. True or False?
False
           
Which of the following scenarios should be modeled so that historical data is kept?
LIBRARY and BOOK
STUDENT and GRADE
           
Modeling historical data can produce a unique identifier that includes a date. True or False?
True
           
Audit trail attributes cannot be placed in the entities they are auditing, they must be placed in separate, new entities, created just for that purpose. True or False?
False




Section 9 Design

MODELING CHANGE: TIME
How do you know when to use the different types of time in your design?
It depends on the functional needs of the system
           
It is desirable to have an entity called DAY with a holiday attribute when you want to track special holidays in a payroll system. True or False?
True
            
Which of the following would be a logical constraint when modeling time for a country entity?
Countries may need an end date in your system, because they can change fundamentally over time, e.g. Yugoslavia.
           
Modeling historical data produces efficient ways for a business to operate such as:
Providing valuable information via reports to management.
           
When you add the concept of time to your data model, you are:
Adding complexity to your model.
           
What is the benefit to the users of a system that includes "time," e.g. Start Date and End Date for Employees?             
Increased usability and flexibility of a system; we can the trace e.g. the different managers an employee had over time.
           
If you are tracking employment dates for an employee, do you need to have an "End Date" attribute?
Yes, if the company wants to track employee information, like multiple start and end dates
           

MODELING CHANGE: PRICE
You are doing a data model for a computer sales company, where the price goes down on a regular basis. If you want to allow them to modify the price and keep track of the changes, what is the best way to model this?
E. Both A and C
           
Why would you want to model a time component when designing a system that lets people buy bars of gold?  
The price of gold fluctuates and for determining price, you need to know the time of purchase
           
What is the function of logging or journaling in conceptual data models?
Allows you to track the history of attribute values, relationships and/or entire entities
           
Which of the following is a logical constraint that could result from considering how time impacts an example of data storage?
An ASSIGNMENT may only refer to a COUNTRY that is valid at the Start Date of the ASSIGNMENT.
 
 
 

Section 10 Design

DRAWING CONVENTIONS FOR READABILITY
It is a good idea to group your entities in a diagram according to the expected volumes. By grouping high volume entities together, the diagrams could become easier to read. True or False?
True
           
You must make sure all entities of a proposed system can fit onto one diagram. It is not allowed to break up a data model into more than one diagram. True or False?
False
           
There are no formal rules for how to draw ERD's. The most important thing is to make sure all entities, attributes and relationships are documented on diagram. The Layout is not significant. True or False?
False
           
Which of the following statements are true for ERD's to enhance their readability.
There should be no crossing lines.
All crows feet (Many-ends) of relationships should point the same way.
           

GENERIC MODELING
Generic models are generally less complex than a specific model. True or False?
False 
           
All data models MUST have some portions of the model modeled as a generic component. True or False?
False
          
When you transform a specific model to be generic, which of the following statements are true?
You tend to end up with fewer entities in the generic model than you had in the specific model
Either all or none of the original attributes make it into the generic model
 

Section 11 Design

INTRODUCTION TO RELATIONAL DATABASE CONCEPTS
Column integrity refers to
Columns always containing values consistent with the defined data format
           
One or more columns in a primary key can be null. True or False?
False
           
The explanation below is an example of what constraint type:
If the value in the balance column of the ACCOUNTS table is below 100, we must send a letter to the account owner which will require extra programming to enforce.
User-defined integrity
           
Identify all of the correct statements that complete this sentence: A primary key is ...
A single column that uniquely identifies each row in a table
A set of columns that uniquely identifies each row in a table
A set of columns and keys in a single table that uniquely identifies each row in a single table
           
The explanation below defines which constraint type:
A primary key must be unique, and no part of the primary key can be null.
Entity integrity
           
A foreign key always refers to a primary key in the same table. True or False?
False
           
The explanation below defines which constraint type:
A column must contain only values consistent with the defined data format of the column
Column integrity
           
Foreign keys cannot be null when
It is part of a primary key
           
The explanation below is an example of what constraint type:
The value in the dept_no column of the EMPLOYEES table must match a value in the dept_no column in the 
DEPARTMENTS table.
Referential integrity
           
A table does not have to have a primary key. True or False?
True


BASIC MAPPING: THE TRANSFORMATION PROCESS
In an Oracle database, why would the following table name not be allowed 'EMPLOYEE JOBS'?
You cannot have spaces between words in a table name
           
In a physical data model, an entity becomes a _____________.
Table
           
The transformation from an ER diagram to a physical design involves changing terminology. Entities in the ER diagram become __________ , and attributes become ____________.
Tables, Columns
           
In a physical data model, a relationship is represented as a:
Foreign Key
           
Attributes become columns in a database table. True or False?
True
           
The transformation from an ER diagram to a physical design involves changing terminology. Relationships in the ER diagram become __________ , and primary unique identifiers become ____________.
Foreign keys, primary keys
           
Why would this table name NOT work in an Oracle database?
2007_EMPLOYEES
Table names must start with an alphabetic character
           

RELATIONSHIP MAPPING
Relationships on an ERD can only be transformed into UIDs in the physical model?
False        

One-to-One relationships are transformed into Foreign Keys in the tables created at either end of that relationship?
False
           
One-to-Many Optional to Mandatory becomes a _______________ on the Master table.
Nothing (There are no new columns created on the Master table)
           
What do you create when you transform a many to many relationship from your ER diagram into a physical design?
Intersection table
           
A barrred Relationship will result in a Foreign Key column that also is part of:
The Primary Key
           
Two entities A and B have an optional (A) to Mandatory (B) One-to-One relationship. When they are transformed, the Foreign Key(s) is placed on:
The table B
           

SUBTYPE MAPPING
When mapping supertypes, relationships at the supertype level transform as usual. Relationships at subtype level are implemented as foreign keys, but the foreign key columns all become optional. True or False?   
True
           
When translating an arc relationship to a physical design, you must turn the arc relationships into foreign keys. What additional step must you take with the created foreign keys to ensure the exclusivity principle of arc relationships? (Assume that you are implementing an Exclusive Design)
Make all relationships optional
Create an additional check constraint to verify that one foreign key is populated and the others are not
           
Which of the following are reasons you should consider when using a Subtype Implementation?
When the common access paths for the subtypes are different.
Most of the relationships are at the subtype level
           
The "Arc Implementation" is a synonym for what type of implementation?
Supertype and Subtype Implementation
 
 
 

Section 12 Design

SQL INTRODUCTION: QUERYING THE DATABASE
Examine the follolowing SELECT statement.
SELECT *
FROM employees;
This statement will retrieve all the rows in the employees table. True or False?
True
           
What command retrieves data from the database?
SELECT
           
What command can be used to show information about the structure of a table?
DESCRIBE
          
What command do you use to add rows to a table  
INSERT
           
What command can be added to a select statement to return a subset of the data?
WHERE
           

BASIC TABLR MODIFICATIONS
The f_customers table contains the following data:
ID       Name  Address          City     State    Zip
1          Cole Bee         123 Main Street          Orlando          FL       32838
2          Zoe Twee        1009 Oliver Avenue   Boston            MA     02116
3          Sandra Lee     22 Main Street            Tampa FL       32444
If you run the following statement,
   DELETE FROM F_CUSTOMERS
   WHERE STATE='FL';
How many rows will be left in the table?
1
           
The SQL statement ALTER TABLE EMPLOYEES DROP COLUMN SALARY will delete all of the rows in the employees table. True or False?
False
           
What will the following statement do to the employee table?
ALTER TABLE employees ADD (gender VARCHAR2(1))
Add a new column called GENDER to the EMPLOYEES table
 
 

Section 13 Design

SYSTEM DEVELOPMENT LIFE CYCLE
During which phases of the System Development Life Cycle would you roll out the system to the users?
Transition and Production
           
In which phases of the System Development Life Cycle will we need to use SQL as a language?
Transition
Build and Document
           
The data model can be used to...
All of the Above
   
 

Section 15 Design

ANATOMY OF A SQL STATEMENT
If you want to see just a subset of the columns in a table, you use what symbol?
None of the above, instead of using a symbol you name the columns you want to see the data for.
           
The SQL SELECT statement is capable of:
Selection and projection
           
What is a NULL value?
An unknown value
             
SELECT * FROM departments; is a:
Statement
           
The order of operator precedence is
* / + -
           

RELATIONAL DATABASE TECHNOLOGY
The following statements are true regarding tables in a RDBMS:
A table holds all the data necessary about something in the real world, such as employees, invoices or customers.
Tables contain fields, which can be found at the intersection of a row and a column.
           
Once data has been created in a RDBMS, the ony way of getting it out again is by writing a Java or C program. No other languages can be used to access that data. True or False?
False
          
The following table creation statement is valid. True or False?
CREATE TABLE country (ID NUMBER(6) NOT NULL, NAME VARCHAR2(30) NOT NULL, LOC VARCHAR2(40), REG_ID NUMBER, NAME VARCHAR2(25))
False
           
RDBMS stands for 
Relational Database management system
 

Section 16 Design

WORKING WITH COLUMNS, CHARACTERS, AND ROWS
The concatenation operator ...
All of the above
           
In order to eliminate duplicate rows use the ________ keyword
DISTINCT
           
Which of the following is NOT BEING DONE in this SQL statement?
SELECT first_name || ' ' || last_name "Name"
FROM employees; 
Concatenating first name, middle name and last name
           
The following is a valid SQL SELECT statement. True or False?
SELECT first_name || ' ' || last_name alias AS Employee_Name
FROM employees:
False
           
The structure of the table can be displayed with the _________ command: 
Desc and Describe
           

LIMIT ROWS SELECTED
Which of the following are true? 
Date values are enclosed in single quotation marks
Date values are format-sensitive
           
Which of the following is true?
Date values are enclosed in single quotation marks
           
How can you write not equal to in the WHERE-clause
All of the above
           
To restrict the rows returned from an SQL Query, you should use the _____ clause:
WHERE
           
Which of the following would be returned by this SELECT statement:
SELECT last_name, salary
FROM employees
WHERE salary < 3500;
LAST_NAME           SALARY
Davies 3100       

Which example would limit the number of rows returned?
SELECT title FROM d_songs WHERE type_code = 88;
           
Which of the following statements will work?
SELECT first_name ||' '||last_name NAME, department_id DEPARTMENT, salary*12 "ANNUAL SALARY"
FROM employees
WHERE last_name = 'King';
           
Which query would give the following result?
LAST_NAME           FIRST_NAME          DEPARTMENT_ID
King    Steven 90
SELECT last_name, first_name, department_id
FROM employees
WHERE last_name = 'King';
           

COMPARISON OPERATORS
Which of the following WHERE clauses would not select the number 10?
WHERE hours <>10
           
Which two statements would select salaries that are greater than or equal to 2500 and less than or equal to 3500?
WHERE salary >= 2500 AND salary <= 3500
WHERE salary BETWEEN 2500 AND 3500
           
When using the "LIKE" operator, the % and _ symbols can be used to do a pattern-matching, wild card search. True or False?
True
           
Which of the following are examples of comparison operators used in the WHERE clause?
all of the above
 
 

Section 17 Design

LOGICAL COMPARISONS AND PRECEDENCE RULES 
Find the clause that will give the same results as:
SELECT *
FROM d_cds
WHERE cd_id NOT IN(90, 91, 92);
WHERE cd_id != 90 and cd_id != 91 and cd_id != 92;
         
Which of the following are examples of logical operators that might be used in a WHERE clause.
AND, OR
NOT
           
What will be the results of the following selection?
SELECT *
FROM employees
WHERE last_name NOT LIKE 'A%' AND last_name NOT LIKE 'B%'
All last names that do not begin with A or B
            
Which of the following statements best describes the rules of precedence when using SQL?
The order in which the expressions are evaluated and calculated
           
Which of the following is earliest in the rules of precedence?
Arithmetic operator
           
Which of the following would be returned by this SQL statement:
SELECT First_name, last_name, department_id
FROM employees
WHERE department_id IN(50,80)
AND first_name LIKE 'C%'
OR last_name LIKE '%s%'
All of the above
           
Which symbol in the WHERE clause means "Not Equal To"?
NOT IN (...)
<>
           

SORTING ROWS
What clause must you place in a SQL statement to have your results sorted from highest to lowest salary?         
ORDER BY salary DESC
           
A column alias can be specified in an ORDER BY Clause. True or False?
True
           
Which of the following is true of the ORDER BY clause:
Must be the last clause of the SQL statement
Defaults to an ascending order (ASC)
           
What columns can be added to the following SELECT statement in its ORDER BY clause? (Choose Three)
SELECT first_name, last_name, salary, hire_date
FROM employees
WHERE department_id = 50
ORDER BY ?????;
last_name, first_name
All columns in the EMPLOYEES table
Any column in the EMPLOYEES table, any expression in the SELECT list or any ALIAS in the SELECT list
           

INTRODUCTION TO FUNCTIONS - SINGLE ROW FUNCTIONS
The following statement represents a multi-row function. True or False?
SELECT MAX(salary)
FROM employees
True
           
The conversion function TO_CHAR is a single row function. True or False?
True
           
The following statement represents a multi-row function. True or False?
SELECT UPPER(last_name)
FROM employees;
False
           
The function COUNT is a single row function. True or False?
False
           
Will the following statement return one row?
SELECT MAX(salary), MIN(Salary), AVG(SALARY)
FROM employees;
Yes, it will return the highest salary, the lowest salary and the average salary from all employees
 
 
 
 
sumur : http://quizoracle.blogspot.co.id/

Quiz Oracle Section 5 Design

Section 5 Design

RELATIONSHIP TRANSFERABILITY
If a relationship can be moved between instances of the entities it connects, it is said to be:
Transferrable
           
A non-transferable relationship is represented by which of the following symbols?
Diamond
           
Non-transferable relationships can only be mandatory, not optional. True or False?
True


RELATIONSHIP TYPES
Which of the following pairs of entities is most likely to be modeled as a M:M relationship?
STUDENT and CLASS
CAR and DRIVER
           
When resolving an M:M relationship, the new relationships will always be __________ on the many side.         
Mandatory
           
If the same relationship is represented twice in an Entity Relationship Model, it is said to be:
Redundant
           
Many to many relationships between entities usually hide what?
Another entity
           
What uncommon relationship is described by the statements: "Each LINE must consist of many POINTS and each POINT must be a part of many LINES"
Many to Many Mandatory
           
When are relationships unnecessary?
When you can derive the relationship from other relationships in the model
           
Which of the following are relationship types?
Many to Many
One to Many
           

RESOLVING MANY-TO-MANY RELATIONSHIPS
Many-to-Many relationships are perfectly acceptable in a finished ERD. There is no need to do any more work on them. True or False?
False
           
If an intersection entity is formed that contains no attributes of its own, its uniqueness may be modeled by     
Barring the relationships to the original entities.
           
When you resolve a M-M by creating an intersection entity, this new entity will always inherit:
A relationship to each entity from the original M-M.
 
sumur : http://quizoracle.blogspot.co.id/2010/11/section-5-design.html

Quiz Oracle Section 4 Design

Section 4 Design

SUPERTYPES AND SUBTYPES
Which of the following is the best scenario for using supertype/subtype entities:
A vehicle dealership that sells cars, trucks and boats on trailers.
           
The "Other" subtype is best used:
As an extra subtype to ensure that all instances of subtypes are mutually exclusive and complete. By having an "Other" subtype, all instances of the Supertype will be of one subtype type.
           
Which of the following is a TRUE statement about the diagram below?
Every A is a B
           
A supertype should have at least two subtypes. True or False?
True
           
All instances of the subtypes must be an instance of the supertype. True or False?
True
           
A subtype can have a relationship not shared by the supertype. True or False?
True
          
Which of the following is true about supertypes and subtypes?
Subtypes inherit the relationships and attributes of the supertype.
           
All instances of the supertype are also instances of one of the subtypes. True or False?
True


DOCUMENTING BUSINESS RULES
How would you model a business rule that states that on a student's birthday, they do not have to attend their classes?
You cannot model this. You need to document it
           
Why is it important to identify and document business rules?
It allows you to create your data model and then check it for accuracy.
           
How should you handle constraints that cannot be modeled on an ER diagram?
List them on a separate document to be handled programmatically
           
'Only managers can approve travel requests' is an example of which of the following?
A procedural business rule.
           
Business rules are important to data modelers because: 
A. They capture all of the needs, processes and required functionality of the business.
           
A business rule such as "All accounts must be paid in full within 10 days of billing" is best enforced by:
Hiring a programmer to create additional programming code to identify and report accounts past due.
           
Which of the following is an example of a structural business rule?
All employees must belong to at least one department.
 
 
sumur :http://quizoracle.blogspot.co.id/2010/11/section-4-design.html

Quiz Oracle Section 3 Design

Section 3 Design

IDENTIFYIND RELATIONSHIPS
What are the three properties that every relationship should have?
Name, optionality, degree
           
In a business that sells computers, choose the best relationship name from CUSTOMER to ITEM (computer, in this case).
Each CUSTOMER must be the buyer of one or more ITEMS.
           
Relationships can be either mandatory or optional. True or False?
True
           
Relationships always exist between
2 entities (or one entity twice)
           

ER DIAGRAMMING CONVERNTIONS
Attributes are written inside the entity to which they belong. True or False?
True
           
Entity names are always plural. True or False?
False
           
Consider the recommended drawing conventions for ERD's.
Indicate which of the following accurately describes diagramming conventions for entities and attributes:
The * means that an attribute is mandatory or required and the entity name should be singular
           
On an ER diagram which symbol identifies an attribute as part of a unique identifier.
           
Entity boxes are drawn as
Soft Boxes
           
Which symbol is used to show that a particular attribute is optional?
o
           

SPEAKING ERDISH AND DRAWING RELATIONSHIPS
Two entities can have one or more relationships between them. True or False?
True
           
After looking at the diagram, choose the sentence below that could be "read" from the existing relationship (even though you're missing relationship labels!)
Each Student may participate in one or more Activities.
           
When reading a relationship between 2 entities, the relationship is only read from left to right. True or False?  
False
           

MATRIX DIAGRAMS
Matrix Diagrams helps verify you have identified all possible relationships between your existing entities. True or False?
True  

A Matrix Diagram will help you with all of the following except: 
Defining Instances of Entities
           
Creating a Matrix Diagram is mandatory when doing Data Modeling. True or False?
False
 
 sumur : http://quizoracle.blogspot.co.id/2010/11/section-3-design.html

Quiz Oracle Section 2 Design

Section 2 Design

CONCEPTUAL & PHYSICAL MODELS
A customized hat is an example of the conceptual model or the physical model?
Physical Model
           
Many reasons exist for creting a conceptual model. Choose three appropriate reasons from the options below.
They model functional and informational needs.
They capture current and future data needs.
They accurately describe what a physical model will contain.
           
An Entity Relationship Diagram is an example of a Physical Model. True or False?
False
           
Which of the following are reasons we create conceptual models?
All of the above
           

ENTITIES, INSTANCES, ATTRIBUTES AND IDENTIFIERS
Which of the following entities most likely contains invalid attributes?
Entity: Car. Attributes: Owner Occupation, Owner Salary, Speed
           
All of the following would be instances of the entity PERSON except which?
Male
           
What is the purpose of a Unique Identifier?
To identify one unique instance of an entity, by using one or more attributes and/or relationships.
           
A/an _________ is a piece of information that in some way describes an entity. It is a property of the entity and it quantifies, qualifies, classifies or specifies the entity. 
Attribute
           
In a physical data model, an attribute is represented as a/an
Column
           
Unique Identifiers....
Distinguish one instance of an entity from all other instances of that entity
           
Which of the following statements about attributes are true?
They describe, qualify, quantify, classify, or specify an entity.         
They have a data type such as a number or character string.
           
Entities are usually verbs. True or False?
False
           
Some of the following could be attributes of an ENTITY called PERSON. Select the incorrect attributes for PERSON.
Freddy Wilson
Priya Hansenna
           
An entity may have which of the following?
Instances
           
The word "Volatile" means....
Changing constantly; unstable
           
In the following statements, find two examples of ENTITY: Instance.
DAIRY PRODUCT: milk
BOOK: Biography of Mahatma Gandhi
           

ENTITY RELATIONSHIP MODELING AND ERDS
A well structured ERD will show only some parts of the finished data model. You should never try to model the entire system in one diagram, no matter how small the diagram might be. True or False?
False
           
An Entity Relationship model is independent of the hardware or software used for implementation. True or False?
True
           
Which of the following statements are true about ERD's?
A piece of information should only be found one place on an ERD.
You should not model derivable data.
           
The purpose of an ERD is to document the proposed system and facilitate discussion and understanding of the requirements captured by the developer. True or False?
True
 
sumur : http://quizoracle.blogspot.co.id/2010/11/section-2-design.html

Quiz Oracle Section 1 Design

INTRODUCTION TO THE ORACLE ACADEMY
What are the major content areas covered in the Oracle Academy?
Data Modeling, SQL, and PL/SQL
           
There is a big increase in demand for Information Technology professionals in today's market. True or False?    
True
          

DATA VS. INFORMATION
Consider an example where an Oracle database works "behind the scenes" for common internet activity. Which of the following best describes a database transaction?
A person searching an airline website to find all available fares for a flight.
           
What are the results of having all your data in one central location?
Improved performance
Easier access to data 
           
Which of the following are examples of data vs. information. 
E. Both A and B
           
How do you turn "data" into "information"?
By querying it or accessing it
           

HISTORY OF THE DATABASE

Which of the following is the correct order for the Database Development Process?
Strategy, Analysis, Design, Build
           
Data Modeling is the last stage in the development of a database. True or False?
False
           
Oracle was one of the first relational database systems available commercially? True or False?
True
           

MAJOR TRANSFORMATIONS IN COMPUTING

Which of the following are examples of e-businesses that use database software?
Online clothing store
Online book store
Online personal shopping service
           
Are all of the following examples of how changes in computing have affected day-to-day activities? Yes or No?
In the past you used to use the phone system to call directory assistance to get a phone number. Today you can use your PC to look up a phone number online.
In the past you used to have to go to the shoe store to buy shoes. Today you can use your PC to order shoes online.
In the past you had to use your PC to send a person an email message. Today you can use your phone to send a text message.
Yes
           
The overall mission of the Oracle Corporation is to use the internet and fast servers to meet the needs of organizations by only storing data. 
False
           
Users would use which of the following software to access essential business applications?
GUI Interface
Internet Browser
Operating System
           
Personal computers (PCs) have been in existence since 1950. True or False?
False
           
In the grid computing model, resources are pooled together for efficiency. True or False?
True
Sumur dari sini gan : http://quizoracle.blogspot.co.id/2010/11/section-1-design.html 

Senin, 19 Oktober 2015

Catatn 19 Oktober 2015

Kosong
atau malah terlalu banyak yang mesti dituangkan
sehingga kesulitan untuk memilah dan memilih tiap kata yang padat makna

Minggu, 18 Oktober 2015

Kelebihan dan Kekurangan Laptop dari Berbagai Merk

Kita awali dengan salah satu dari 2 Laptop Seribu Umat di Indonesia
Quote:

ACER

Kelebihan
1. Harga paling murah diantara laptop branded, bahkan lebih murah dari HP/compaq (harga bersaing kok dengan brand lokal)

2. Desain lumayan manis

3. Service supportnya bagus (dari pengalaman ane nih, laptop acer ane yg pertama ane punya sampe rusak 4 kali dalam masa garansi, semuanya diperbaikin dengan tuntas dalam waktu yg singkat (Untuk GARANSI RESMI))

Kelemahan Kekurangan
1. konstruksi casing paling ringkih, panel lcd gampang retak, keyboard payah

2. desainnya kurang beragam antar seri/varian, jadinya kurang pede kalo dibawa2 soalnya banyak samanya

Berikutnya Laptop Seribu Umat ke 2 adalah
Quote:

TOSHIBA


Kelebihan
- merek nomor 1 di Indo, jadi harga jual lumayan, barangnya gampang dicari, servis dan spare parts lebih gampang

- LCD nya great (maybe not the best but great)

- bawanya agak pede lah, dibanding laptop merek laen (kecuali banding sony dan mac)

- desain dan konstruksinya lumayan kuat/kokoh, dibeberapa seri bahkan ada pelindung hdd, jadi jatuh gak merusak hdd.

- addition software (kalo beli yang pake OS yah), banyak dan rata2 berguna en efektif.

Kelemahan kekurangan
- harganya lumayan mahal

- desain nya rata2 kuno dan kaku, gak up to date.

- terlalu banyak model dan spek, penamaan model juga tidak jelas jadi banyak yang tertukar, dan salah (sampe salah beli), contoh Sattelite L745, sebenernya Sattelite L745 ada beberapa spek, yang bisa dibedakan dengan angka dibelakang a8 tersebut, spt Sattelite L745-1204 beda dengan Sattelite L745-1109. kadang kita tanya ke toko cari Sattelite L745 disana harganya Rp.5 Jutaan. ditempat lain Rp.7 Jutaan (padahal memang speknya beda). ini penamaan yang bisa dibilang lumayan bodoh, sehingga memusingkan yang beli, ingat kalo mau beli harus ingat kodenya dengan jelas dan speknya juga.

- karena nomor 1, PI/BM nya paling banyak, banyak pilihan harga, banyak pilihan model, banyak macem asalnya (dari baru, recondition/refurbish, used), jadi kita harus lebih berhati2 membelinya (status harus jelas, dan kedepannya juga, disini ane gak menentang beli yang PI asal resiko ditanggung penumpang)

- oh ya 1 lagi, di toshibanya rata2 gak ada CD drivernya untuk yang gak + paketan Windows jadi harus download sana sini, untuk yang dah ada Windowsnya harus back-up dulu Recoverynya kedalam keping DVD, jadi kalo ada apa2 biar gak bingung waktu instal ulangnya.

Selanjutnya Merk dari USA
Quote:

HP/Compaq

Kelebihan
- konstruksinya paling kokoh diantara semua laptop, berasa kalo mau bongkar setengah mati .

- biasanya sistem paling stabil, dan kinerja wah. ini mungkin karena latar belakang HP emang dari komputer jadi bisa dibilang berpengalaman.

- paling komplit perlengkapannya, biasanya kabel charger ada dua, didalam hdd sudah ada recovery, dapet cd/dvd nya, buku petunjuk yang jelas (bukan user guide di laptop doang, tapi dapet buku). yah seperti laptop yang paling mengerti anda

- harga paling bersahabat dengan kantong (jika dibanding barang bermerek lainnya)

Kelemahan Kekurangan
- LCDnya sangat kurang, ketajaman gambarnya terasa berbeda dengan Sony atau Toshiba kadang muncul dot pixel.

- modelnya bener2 luruss..... kayak kehabisan akal buat laptop aja.

- karena murah meriah, lumayan pasaran, jadi kurang gaya banget.

- penamaan seri yang gak jelas (hampir sama dengan Toshiba walau dia mendingan) biasa dibedakan dari awalnya kyk dv4217, ini berarti HP series dv 4000, dan di laptopnya cuma tercantum dv4000. jadi kita bisa bingung kalo tidak melihat speknya. perbedaan dv 4217 dengan yang lain biasanya cuma dalam hal spek saja, tapi fisik biasa sama.

- pemakaian komponen yang kadang agak kurang berkualitas, jadi bisa ada masalah di kemudian hari.

- software tambahannya banyak yang gak berguna, kebanyakan untuk komersil aja.

Selanjutnya kita lirik merk PlayStation eh Laptop

Quote:

SONY

Kelebihan Kekurangan Laptop SONY
Tuesday, March 20, 2012
Kelebihan Kekurangan Laptop SONY

Kelebihan
- modelnya bener2 lain dari yang lain, jadi pakenya gaya, gak kalah sama mac (biasanya cocok untuk cewek).

- LCD nya exellent (sony gitu loh)

- additional software lumayan banyak tapi gak terlalu berguna dibanding toshiba

- penamaan yang tepat dan akurat, trus di setiap laptop juga tertulis (dicetak dari pabrik) seri nya, jadi meminimalkan penipuan model atau serinya, dan memudahkan membedakan dengan yang lain.

Kelemahan Kekurangan
- mahalnya .... banget

- jarang ane nemuin yang GARANSI RESMI berkeliaran di Indonesia, biasanya semuanya lewat Distributor

- konstruksi kurang kuat, yah bisa dibilang lebih gampang rusak lah

- biasanya di bundle nya ngak ada cd/dvd recovery, jadi yah kebanyakan kita harus burn sendiri, kalo hdd rusak, kita belom burn, cilaka lah....

- harga servis & spare parts nya rata2 mahal


FUJITSU

kelebihan
1) quality nggak perlu diragukan lagi
2) Sering membuat mata2 lain memandang
3) kualitas layar beningnya mantab.......
4) bobotnya ringan2

kekurangan
1) paling mahal & susah dicari dibanding merek2 lain
2) speknya rendah2
3) minim service center kayak SONY

Selanjutnya kita melirik Merk Laptop pendatang baru yang ingin bersaing dengan Apple
Quote:

SAMSUNG

kelebihan
1) 80% komponen produk sendiri & quality yang sangat bagus membuat laptop merk ini jarang dikomplain oleh para user
2) ketahanan daya batre yang mengagumkan berkat program "Battery Life Extender"nya
3) kualitas layar beningnya serta lebih terang dibandingkan merk lain membuat laptop merk SAMSUNG tetap nyaman digunakan saat dibawah terik cahaya matahari
4) disain body dan casing yang keren2 dan menawan membuat PD saat digunakan dimana saja
5) Garansi Replace komponen selama 1 tahun penuh menjadikan proses penggaransian sangat cepat dan banyak Service Centernya di Indonesia(Di Malang ane pernah service barang baru "Stok Toko" kagak bisa di Instal karena troble di MainBoard selese man 2 hari aja, padahal janjinya Customer Service kalo lebih dari 4 hari disuruh ngehubungi)
6) performa kecepatan tidak diragukan lagi, dengan fitur "Fast Start"nya laptop hanya butuh ditutup Lidnya untuk Shutdown & kalo mau dinyalain lagi tinggal dibuka aja Lidnya dalam 3 detik laptop nyala pada kondisi terakhir aplikasi yang kita buka.
7) software2 aplikasi tambahan sangat bermanfaat saat kita melakukan berbagai macam aktifitas
8) kelengkapannya lengkap ada CD Drivernya dan software manual tentang PC untuk seri terbaru

kekurangan
1) tidak meratanya penyebaran beberapa seri laptop di Indonesia (contohnya kalo di Kediri udah launchi Series 3, di Malang belum keluar)
2) pada CD driver tidak ada driver/aplikasi untuk webcam jadi harus download dari pihak ke 3 bisa didownload disini

Selanjutnya Laptop dari negeri Taiwan sama kayak ACER
Quote:
[img]http://www.catchoftheday.com.au/images//asus_paypai_new/asus-banner(3).jpg[/img]
ASUS

kelebihan

1) Merk IT yang terkenal sejak jaman PC, jadi untuk masalah pengalaman technologi komputer tidak usah ditanyakan lagi, Asus sejak dulu terkenal dengan ketahanan MotherBoardnya
2) Sebagian besar laptop Asus menggunakan VGA seperti ATI Radeon & Nvidia GForce, sehingga tak jarang Asus sering dibilang Laptop Gamer
3) Harga yang murah merupakan cara Asus untuk menarik perhatian konsumen, jadi dengan harga 4Jtaan agan2 sekalian sudah bisa membeli laptop yang bisa digunakan untuk gaming
4) Masalah Garansi Asus memberikan Garansi paling lama yaitu 2 tahun

kekurangan
1) Asus tidak punya service center yang banyak sehingga jika terjadi kerusakaan proses perbaikannya lebih lama dari pada merk laptop lain, jadi kalo mau garansi ya ngantri dulu selesainya bisa sampai berbulan - bulan.(pengalaman ane di Kota Malang, mungkin di kota lain tidak begitu)
2) Terlalu cepat mengeluarkan seri2 terbaru dengan spesifikasi lebih tinggi dan harga yg lebih murah, jadi user yg terlanjur beli laptop merasa menyesal kenapa tidak beli yang terbaru aja, biasanya Asus mengeluarkan produk terbarunya Sebulan sekali
3) Untuk seri 12" sering terjadi error touchpad dan seri K43u AMD E350 error Harddisk (sebagian user tidak tahu karena kebanyakan hanya toko yang tau saat cek list barang sebelum dijual)
4) untuk seri Netbook tidak dilengkapi dengan Softcase



SUMUR : http://www.kaskus.co.id/thread/000000000000000013991822/kelebihan-dan-kekurangan-laptop-dari-berbagai-merk/
"Satrio Pinandito Sinisihan Wahyu"