Free Essay

South Western Book

In:

Submitted By xzhao0711
Words 2278
Pages 10
Underlined attributes are the primary keys bolded attributes are foreign keys

CUSTOMER (Cus_id, cus_last, cus_first, staddr, zipcode)
EMPLOYEE (Emp_id, emp_first, emp_last, staddr, zipcode)
VIDEO (Isbn, title, vid_length, rate_id, genre_type, release_date)
GENRE (Genre_type, genre_description)
ACTOR (Act_id, First, Last)
ACT_IN (Isbn, Act_id)
COPY1 (Cid,Isbn, Copy_no, rent_type)
RENT_DURATION (Rent_No, rent_type, no_days, rent_charge)
RENT_QUALITY (Rent_type, type_description)
RATING (Rate_id, rate_description)
RENTS (rent_id,Cid, Cus_id,Emp_id, date_rented, Rent_No)
PURCHASES (pid,Cid, Cus_id, emp_id, date_purchased, amt)
ZIP (Zipcode, city, state)

Relationships
Customer(Cus_id) -> rents(Cus_id)
Video(Isbn) -> Copy1(Isbn) copy1(Cid) -> rents(Cid)
Employee(Emp_id) -> rents(Emp_id)
Employee(Emp_id) -> purchases(Emp_id)
Customer(Cus_id) -> purchases(Cus_id) copy1(Cid) -> purchases(Cid)
Genre(Genre_type) -> Video(Genre_type)
RENT_QUALITY(Rent_Type) -> RENT_DURATION(Rent_Type)
RENT_QUALITY(Rent_Type) -> Copy1(Rent_Type)
RENT_DURATION(Rent_No) -> RENTS(Rent_No)
Actor(Act_id) -> Act_in(act_id)
Video(ISBN) -> Act_in(ISBN)
Zip(Zipcode) -> Employee(Zipcode)
Zip(Zipcode) -> Customer(zipcode)
Rating(rate_id) -> video(rate_id)

How many movies has Jim Izick rented
SELECT COUNT(*)
FROM CUSTOMER, RENTS
WHERE CUSTOMER.cus_id=RENTS.cus_id
AND cus_last='Izick'
AND cus_first='Jim';

Underlined attributes are the primary keys bolded attributes are foreign keys

customer(cus_id, cus_first, cus_last, street_addr, zipcode, ph_number) employee(eid, fname, lname, zipcode, street_address, home_phone) cars(vin,make,model,year1,color,cost,new_used) purchases(pur_id,vin,cus_id,eid,date_purchased, price_paid) try_out(try_id,cus_id,vin,eid,date_tried,opinion) zip(zipcode, city, state)

with the following referential integrity customer(cus_id) -> purchases(cus_id) customer(cus_id) -> try_out(cus_id) employee(eid) -> purchases(eid) employee(eid) -> try_out(eid) cars(vin) -> purchases(vin) cars(vin) -> try_out(vin) zip(zipcode) -> customer(zipcode) zip(zipcode) ->employee(zipcode)

Write a query to find the number of Chevrolet Impalas that have been sold
SELECT COUNT(*)
FROM cars, purchases
WHERE cars.vin=purchases.vin
AND make='Chevrolet'
AND model='Impala'; Underlined attributes are the primary keys bolded attributes are foreign keys

customer(cus_id, cus_first, cus_last, street_addr, zipcode, ph_number) employee(eid, fname, lname, zipcode, street_addr ,home_phone) cars(vin,make,model,year1,color,cost,new_used) purchases(pur_id,vin,cus_id,eid,date_purchased, price_paid) try_out(try_id,cus_id,vin,eid,date_tried,opinion) zip(zipcode, city, state)

with the following referential integrity customer(cus_id) -> purchases(cus_id) customer(cus_id) -> try_out(cus_id) employee(eid) -> purchases(eid) employee(eid) -> try_out(eid) cars(vin) -> purchases(vin) cars(vin) -> try_out(vin) zip(zipcode) -> customer(zipcode) zip(zipcode) ->employee(zipcode)

Write a query to find the number of cars John Jones has purchased SELECT COUNT(*) FROM customer, purchases WHERE customer.cus_id=purchases.cus_id AND cus_first='John' AND cus_first='Jones'; Underlined attributes are the primary keys bolded attributes are foreign keys

customer(cus_id, cus_first, cus_last, street_addr, zipcode, ph_number) employee(eid, fname, lname, zipcode, street_address, home_phone) cars(vin,make,model,year1,color,cost,new_used) purchases(pur_id,vin,cus_id,eid,date_purchased, price_paid) try_out(try_id,cus_id,vin,eid,date_tried,opinion) zip(zipcode, city, state)

with the following referential integrity customer(cus_id) -> purchases(cus_id) customer(cus_id) -> try_out(cus_id) employee(eid) -> purchases(eid) employee(eid) -> try_out(eid) cars(vin) -> purchases(vin) cars(vin) -> try_out(vin) zip(zipcode) -> customer(zipcode) zip(zipcode) ->employee(zipcode)

Write a query to display the name of the employee who sold the car, the name of the customer who bought the car and the vin of the car purchased for each car sold. Select employee.lname, employee.fname, customer.lname, customer.fname, purchases.vin From customer, employee, purchases Where purchases.cus_id=customer.cus_id AND purchases.eid=employee.eid; Underlined attributes are the primary keys bolded attributes are foreign keys

student(zid, fname, lname, zipcode, email_address, adv_id) faculty(fid, fname, lname, zipcode, email_address) zip(zipcode, city, state) courses(c_num, course_name, course_description, credit_hrs) classes(cl_id, c_num, fid) grades(zid,cl_id, grade)

with the following referential integrity courses(c_num) -> classes(c_num) student(zid) -> grades(zid) classes(cl_id) -> grades(cl_id) faculty(fid) -> classes(fid) faculty(fid) -> student(adv_id) zip(zipcode) -> student(zipcode) zip(zipcode) -> faculty(zipcode)

Write a query to list the names of the students who have an email address that ends in gmail.com Select lname, fname From student Where email_address like '%gmail.com'; Underlined attributes are the primary keys bolded attributes are foreign keys

student(zid, fname, lname, zipcode, email_address, adv_id) faculty(fid, fname, lname, zipcode, email_address) zip(zipcode, city, state) courses(c_num, course_name, course_description, credit_hrs) classes(cl_id, c_num, fid) grades(zid,cl_id, grade)

with the following referential integrity courses(c_num) -> classes(c_num) student(zid) -> grades(zid) classes(cl_id) -> grades(cl_id) faculty(fid) -> classes(fid) faculty(fid) -> student(adv_id) zip(zipcode) -> student(zipcode) zip(zipcode) -> faculty(zipcode)

Write a query to list the names of students who have an advisor whose adv_id is m10bxm1 Select fname, lname From student Where adv_id='m10bxm1'; Underlined attributes are the primary keys bolded attributes are foreign keys

student(zid, fname, lname, zipcode, email_address, adv_id) faculty(fid, fname, lname, zipcode, email_address) zip(zipcode, city, state) courses(c_num, course_name, course_description, credit_hrs) classes(cl_id, c_num, fid) grades(zid,cl_id, grade)

with the following referential integrity courses(c_num) -> classes(c_num) student(zid) -> grades(zid) classes(cl_id) -> grades(cl_id) faculty(fid) -> classes(fid) faculty(fid) -> student(adv_id) zip(zipcode) -> student(zipcode) zip(zipcode) -> faculty(zipcode)

Write a query to display the course number and credit hours for the course with a course name of Database Systems Select c_num, credit_hrs From courses Where course_name='Database Systems'; Underlined attributes are the primary keys bolded attributes are foreign keys

customer(cus_id, cus_first, cus_last, street_addr, zipcode, ph_number) employee(eid, fname, lname, zipcode, street_address, zipcode,home_phone) cars(vin,make,model,year1,color,cost,new_used) purchases(pur_id,vin,cus_id,eid,date_purchased, price_paid) try_out(try_id,cus_id,vin,eid,date_tried,opinion) zip(zipcode, city, state)

with the following referential integrity customer(cus_id) -> purchases(cus_id) customer(cus_id) -> try_out(cus_id) employee(eid) -> purchases(eid) employee(eid) -> try_out(eid) cars(vin) -> purchases(vin) cars(vin) -> try_out(vin) zip(zipcode) -> customer(zipcode) zip(zipcode) ->employee(zipcode)

Write a query to display all the information in the customer table. Select * From customer; customer(cus_id, cus_first, cus_last, street_addr, zipcode, ph_number) employee(eid, fname, lname, zipcode, street_address, zipcode,home_phone) cars(vin,make,model,year1,color,cost,new_used) purchases(pur_id,vin,cus_id,eid,date_purchased, price_paid) try_out(try_id,cus_id,vin,eid,date_tried,opinion) zip(zipcode, city, state)

with the following referential integrity customer(cus_id) -> purchases(cus_id) customer(cus_id) -> try_out(cus_id) employee(eid) -> purchases(eid) employee(eid) -> try_out(eid) cars(vin) -> purchases(vin) cars(vin) -> try_out(vin) zip(zipcode) -> customer(zipcode) zip(zipcode) ->employee(zipcode)

Write a query to display the make, model and year of all the black cars | | Select make, model, year From cars Where color='black'; Underlined attributes are the primary keys bolded attributes are foreign keys

customer(cus_id, cus_first, cus_last, street_addr, zipcode, ph_number) employee(eid, fname, lname, zipcode, street_address, zipcode,home_phone) cars(vin,make,model,year1,color,cost,new_used) purchases(pur_id,vin,cus_id,eid,date_purchased, price_paid) try_out(try_id,cus_id,vin,eid,date_tried,opinion) zip(zipcode, city, state)

with the following referential integrity customer(cus_id) -> purchases(cus_id) customer(cus_id) -> try_out(cus_id) employee(eid) -> purchases(eid) employee(eid) -> try_out(eid) cars(vin) -> purchases(vin) cars(vin) -> try_out(vin) zip(zipcode) -> customer(zipcode) zip(zipcode) ->employee(zipcode)

Write a query to find all zipcodes for Chicago, IL Select zip.zipcode From zip Where city='Chicago' AND state='IL'; Underlined attributes are the primary keys bolded attributes are foreign keys

customer(cus_id, cus_first, cus_last, street_addr, zipcode, ph_number) employee(eid, fname, lname, zipcode, street_address, zipcode,home_phone) cars(vin,make,model,year1,color,cost,new_used) purchases(pur_id,vin,cus_id,eid,date_purchased, price_paid) try_out(try_id,cus_id,vin,eid,date_tried,opinion) zip(zipcode, city, state)

with the following referential integrity customer(cus_id) -> purchases(cus_id) customer(cus_id) -> try_out(cus_id) employee(eid) -> purchases(eid) employee(eid) -> try_out(eid) cars(vin) -> purchases(vin) cars(vin) -> try_out(vin) zip(zipcode) -> customer(zipcode) zip(zipcode) ->employee(zipcode)

Write a query to find the number of times the car with vin 1GCGDM9A_KP094137 has been test driven. Select count (cars.vin) From cars, try_out Where cars.vin=try_out.vin AND try_out.vin='1GCGDM9A_KP094137'; student(zid, fname, lname, zipcode, email_address, adv_id) faculty(fid, fname, lname, zipcode, email_address) zip(zipcode, city, state) courses(c_num, course_name, course_description, credit_hrs) classes(cl_id, c_num, fid) grades(zid,cl_id, grade)

with the following referential integrity courses(c_num) -> classes(c_num) student(zid) -> grades(zid) classes(cl_id) -> grades(cl_id) faculty(fid) -> classes(fid) faculty(fid) -> student(adv_id) zip(zipcode) -> student(zipcode) zip(zipcode) -> faculty(zipcode)

Write a query to find the zid and last name of students who have taken either the class with cl_id of a12343 or the class with cl_id of a452 or both SELECT student.zid, lname FROM student, grades WHERE student.zid=grades.zid AND cl_id IN ('a12343','a452); customer(cus_id, cus_first, cus_last, street_addr, zipcode, ph_number) employee(eid, fname, lname, zipcode, street_address, home_phone) cars(vin,make,model,year1,color,cost,new_used) purchases(pur_id,vin,cus_id,eid,date_purchased, price_paid) try_out(try_id,cus_id,vin,eid,date_tried,opinion) zip(zipcode, city, state)

with the following referential integrity customer(cus_id) -> purchases(cus_id) customer(cus_id) -> try_out(cus_id) employee(eid) -> purchases(eid) employee(eid) -> try_out(eid) cars(vin) -> purchases(vin) cars(vin) -> try_out(vin) zip(zipcode) -> customer(zipcode) zip(zipcode) ->employee(zipcode)

Write a query to display the make and model of the cars that Jane Spain has test driven SELECT make, model FROM try_out, customer, cars WHERE try_out.cus_id=customer.cus_id AND try_out.vin=cars.vin AND cus_first='Jane' AND cus_last='Spain'; student(zid, fname, lname, zipcode, email_address, adv_id) faculty(fid, fname, lname, zipcode, email_address) zip(zipcode, city, state) courses(c_num, course_name, course_description, credit_hrs) classes(cl_id, c_num, fid) grades(zid,cl_id, grade)

with the following referential integrity courses(c_num) -> classes(c_num) student(zid) -> grades(zid) classes(cl_id) -> grades(cl_id) faculty(fid) -> classes(fid) faculty(fid) -> student(adv_id) zip(zipcode) -> student(zipcode) zip(zipcode) -> faculty(zipcode)

Write a query to list first and last name of students and the city they live in for those students living in Illinois. Sort by city and then by last name
Select fname, lname, city From student, zip Where student.zipcode=zip.zipcode AND zip.zipcode='Illinois' Order by zip.city, student.lname; student(zid, fname, lname, zipcode, email_address, adv_id) faculty(fid, fname, lname, zipcode, email_address) zip(zipcode, city, state) courses(c_num, course_name, course_description, credit_hrs) classes(cl_id, c_num, fid) grades(zid,cl_id, grade)

with the following referential integrity courses(c_num) -> classes(c_num) student(zid) -> grades(zid) classes(cl_id) -> grades(cl_id) faculty(fid) -> classes(fid) faculty(fid) -> student(adv_id) zip(zipcode) -> student(zipcode) zip(zipcode) -> faculty(zipcode)

Write a query to display the first and last name of student and the first and last name of the advisor who advises the student Sort by student last name and then faculty last name

SAMPLE OUTPUT IS

Joe Smo is advised by John James
John Zeir is advised by Jan Spain | | SELECT student.fname+ ' '+student.lname+ ' '+ 'is advised by '+ faculty.fname+ ' ' faculty.lname FROM student, faculty WHERE student.adv_id=faculty.fid ORDER BY student.lname, faculty.lname; student(zid, fname, lname, zipcode, email_address, adv_id) faculty(fid, fname, lname, zipcode, email_address) zip(zipcode, city, state) courses(c_num, course_name, course_description, credit_hrs) classes(cl_id, c_num, fid) grades(zid,cl_id, grade)

with the following referential integrity courses(c_num) -> classes(c_num) student(zid) -> grades(zid) classes(cl_id) -> grades(cl_id) faculty(fid) -> classes(fid) faculty(fid) -> student(adv_id) zip(zipcode) -> student(zipcode) zip(zipcode) -> faculty(zipcode)

Write a query to display the Student id and the number of grades they have received

example output

z12345 7 z14325 12 z11674 2 Select student.zid, count (grade) From student, grades Where grade.zid=student.zid Group by student.zid; given the following relation

(part_num, part_description, part_category, part_category_description)

is the above relation in BCNF, State why it is or is not in BCNF. If it is not in BCNF list the table or set of tables needed to translate the table into a set of tables in BCNF No it is not in BCNF as there are multiple functional dependencies with in the same table. In order to fix this we must split the single table into two as follows: PART (part_num, part_description, part_category) PART_CATEGORY (part_category, part_category_description) What are the requirements for a table to be in BCNF if and only if it is in 3NF( which should be in 1NF) and every determinant is a candidate key. Why can we say that we can make the data in a database consistant but we cannot be sure the data is accurate Because accuracy is a user error and can only be minimized. Define each of the following terms

Foreign Key

Primary Key

Surrogate Key A foreign key is a column or composite of columns that is the primary key of a table other than the one which it appears in. A primary key is a selected candidate key, that determines all other columns in a relation. A surrogate key is the artificial column that is added to the table to serve as the primary key. What is information It is an organized data Name four different relational database management systems | | My SQL, Access, Microsoft SQL, Sybase, What do the following stand for

DBMS

SQL | | Database Management System; Structured Query Language What is the purpose of a query | | To answer a question

Similar Documents

Premium Essay

Chapter 07

...Chapter 7: Prospective Analysis: Valuation Theory and Concepts Copyright (c) 2008 Thomson South-Western, a part of the Thomson Corporation. Thomson, the Star logo, and South-Western are trademarks used herein under license. Chapter 7: Prospective Analysis: Valuation Theory and Concepts Palepu & Healy Key Concepts in Chapter 7 • Forecasts (Ch. 6) are converted into estimates of value. • Discounted future dividends, cash flows, and abnormal earnings may be used to estimate value. • Price-based multiples may also be used as value estimates. • No method by itself dominates any of the others. Copyright (c) 2008 Thomson South-Western, a part of the Thomson Corporation. Thomson, the Star logo, and South-Western are trademarks used herein under license. Chapter 7: Prospective Analysis: Valuation Theory and Concepts Palepu & Healy Discounted Dividends Valuation • The present value of future cash flows to shareholders is the basis of the discounted dividends method. • This method is the basis for most theoretical approaches to stock valuation, including the other methods discussed in this chapter. Where re is the cost of equity capital Copyright (c) 2008 Thomson South-Western, a part of the Thomson Corporation. Thomson, the Star logo, and South-Western are trademarks used herein under license. Chapter 7: Prospective Analysis: Valuation Theory and Concepts Palepu & Healy Discounted Abnormal Earnings • Abnormal earnings are...

Words: 978 - Pages: 4

Premium Essay

Interdependence and the Gains from Trade

...some clothes made of cotton grown in Georgia and sewn in factories in Thailand. • You watch the morning news broadcast from New York on your TV made in Japan. • You drive to class in a car made of parts manufactured in a half-dozen different countries. Copyright © 2004 South-Western Copyright © 2004 South-Western/Thomson Learning Interdependence and the Gains from Trade • . . . and you haven’t been up for more than two hours yet! • Remember, economics is the study of how societies produce and distribute goods in an attempt to satisfy the wants and needs of its members. Copyright © 2004 South-Western Copyright © 2004 South-Western Interdependence and the Gains from Trade • How do we satisfy our wants and needs in a global economy? • We can be economically self-sufficient. • We can specialize and trade p with others, leading to economic interdependence. Interdependence and the Gains from Trade • Individuals and nations rely on specialized production and exchange as a way to address problems caused by scarcity. • But this gives rise to two questions: • Why is interdependence the norm? • What determines production and trade? Copyright © 2004 South-Western Copyright © 2004 South-Western 1 Interdependence and the Gains from Trade • Why is interdependence the norm? • Interdependence occurs because people are better off when they specialize and trade with others. A PARABLE FOR THE MODERN ECONOMY • Imagine . . . • only two goods: potatoes and...

Words: 1418 - Pages: 6

Premium Essay

Janice Boddy Civilizing Women

...The Western approach to the Global South nations’ religious practice of Female Genital Mutilation. Despite the enormous impact of globalization on multiple aspects of life in countries around the world and the cultural homogenization, the First and the Third worlds’ mentalities remain extremely different. The distinction between both worlds sometimes leads to serious controversies. With the dominance of the European model of gender equality and the lack of understanding due to cultural differences, Western representatives tend to criticize the traditions like female genital mutilation (FGM). Their main concern is that women in the countries of the Global South are oppressed by these practices. Thus, Western feminists are unable to get past...

Words: 1565 - Pages: 7

Premium Essay

Eating Disorder

...thoughts and emotions, which lead individuals to a pessimistic mood. From the mentioned points above, I believe that western culture leads women’s eating disorders through media and personal relationships with westerners. I found specific researchers and their studies to support and explain my possition: a essay, entitled “The Globalization of Eating Disorders” written by Susan Bordo from Gilbert H. Muller’s book The New Worlds Reader, an research article published in the magazine International Journal Of Eating Disorders entitled “Boday Image and Eating Disturbance Among South Asian-American Women: The Role of Racial Teasing”, by Dana Sahi Iyer and Nick Haslam, and the seventh chapter, entitled “Sociocultural Influences: The Impact of Western Culture on Eating and Body Image Disturbances”, of the book Too Fat or Too Thin: A Reference Guide to Eating Diorders by Cynthia R Kalodner. During reading three resources, I come up with question how western culture impacts eating disorders due to the standards of beauty among women through media and personal connections. Susan Bordo argues that the globalization of eating disorders crosses the economic levels of countries, races, genders, classes, and ages in her essay. She believes that eating disturbances become universal events in both developed and developing nations. The foundation causes of global phenomena rely on western media that...

Words: 1277 - Pages: 6

Premium Essay

Mountain Masters Slavery

...Crisis in Western North Carolina, John C. Inscoe’s research of Western North Carolina unravels the false ideas that, “Antebellum South Appalachia had no slaves, resided in poverty, and lacked the economic and social diversity to form distinguishable class hierarchy.” Inscoe argues that Carolina highlanders before the Civil War were, “far from being the deprived, isolated, self-centered mountaineers depicted in later accounts,” but, rather, “...their society was a vigorous, complex, and growing one.” Inscoe takes on more than a century’s worth of historical and popular assumptions about Southern Appalachia in this book. The first few chapters dive into Agriculture, Community, and Commerce. Inscoe...

Words: 697 - Pages: 3

Premium Essay

Pre-Civil War

...first cause of the American Civil War was the Mexican-American War in 1848. The Mexican-American war was fought in order to determine which country gained control over the south-western states. The south-western states include; Texas, New Mexico, California, and Arizona. In the end the Mexican-American war concluded with an American victory. At the same time the Mexican-American War was taking place the California Gold Rush was also beginning. During the Gold Rush people from all over the US were traveling to California in the hopes of getting rich. Due to the quantity of people to go to California all at the same time California qualified for statehood (based on their population at the time). Prior to the Gold Rush in 1849 the US had 30 states; 15 free states (north) and 15 slave states (south). By adding California the number of states becomes an odd number. The southern states (slave) wanted California to enter as a slave state, and the northern states (free) wanted California to enter as a free state. The Compromise of 1850 made California a free state, which made the south mad that they were now no longer even with the north.         In order to make the south happy since the north got California the Fugitive Slave Act was put into place. The Fugitive Slave Act was an act that said the north must help the south to retrieve their slaves who escaped to the north. The main problem with this act was that there was no way to know which slave belonged to each master. When a master...

Words: 1053 - Pages: 5

Free Essay

Kpop

...339 What Is the K in K-pop? South Korean Popular Music, the Culture Industry, and National Identity John Lie* In the early 2010’s, the expansion of South Korean popular culture around the world is led by popular music, usually known as Kpop. In this paper I seek to answer two questions. First, what are the sources of its success beyond the South Korean national border? Secondly, what does it say about contemporary South Korean society and culture? Key Words: K-pop, Korean Wave, Hallyu, South Korean Popular Culture, Popular Music I. Introduction T he phenomenal success of the Korean Wave has generated collective celebration in South Korea.1 In the early 2010s, the national self* John Lie is C.K. Cho Professor of Sociology at the University of California, Berkeley, U.S.A. He received his Ph.D. in Sociology from Harvard University. His forthcoming books include The Global University and The Consolation of Social Theory. E-mail: johnlie@berkeley.edu. 1. The Korean Wave is the literal translation of the term which originated in China ( ; Hánliú). The first character refers to “Korea” and the second usually evokes “flow” or “current,” signifying “style.” The same Chinese characters KOREA OBSERVER, Vol. 43, No. 3, Autumn 2012, pp. 339-363. © 2012 by THE INSTITUTE OF KOREAN STUDIES. 340 John Lie congratulation is especially manifest for the popularity of South Korean popular music (K-pop), which has spread from neighboring Asian countries, such as Japan and...

Words: 8875 - Pages: 36

Premium Essay

Political Philosophy

...Clash Of civilisation The Clash of Civilizations (COC) is a hypothesis that people's cultural and religious identities will be the primary source of conflict in the post-Cold War world. It was proposed by political scientist Samuel P. Huntington in a 1992 lecture at the American Enterprise Institute, which was then developed in a 1993 Foreign Affairs article titled "The Clash of Civilizations? in response to his former student Francis Fukuyama's 1992 book, The End of History and the Last Man. Huntington later expanded his thesis in a 1996 book. Huntington began his thinking by surveying the diverse theories about the nature of global politics in the post-Cold War period. Some theorists and writers argued that human rights, liberal democracy, and capitalist free market economy had become the only remaining ideological alternative for nations in the post-Cold War world. Specifically, Francis Fukuyama argued that the world had reached the 'end of history' in a Hegelian sense. Huntington believed that while the age of ideology had ended, the world had only reverted to a normal state of affairs characterized by cultural conflict. In his thesis, he argued that the primary axis of conflict in the future will be along cultural and religious lines. As an extension, he posits that the concept of different civilizations, as the highest rank of cultural identity, will become increasingly useful in analyzing the potential for conflict. In the 1993 Foreign Affairs article, Huntington writes: ...

Words: 2810 - Pages: 12

Premium Essay

Harry Potter

...Popularization of Harry Potter Series The Harry Potter series, which is written by JK Rowling, is a miracle of literary history that it is well known in countries with various cultural backgrounds all over the world. It has been translated into seventy languages and sold over four hundred million copies in two hundred countries. The success of the Harry Potter series results in a success of its industry, including films, video games, toys, traveling attractions and theme parks. The Chronicles of Narnia is another popular fantasy storybook published in 1950. But why did it fail to achieve the same incredible success as the Harry Potter series? Part of the reason is because the Harry Potter series is not only a book for children but also a book for adults. The details of the books connect to younger readers’ real lives, while being inspirational enough to generate older readers’ considerations. It is far more than just a fantasy series. Harry Potter’s magic world is so real to readers because it is very similar to readers’ lives. There are governments, schools, pubs, banks, bookstores, train stations, the World Cup, prisons and hospitals in Harry Potter’s magic world. These are all things young readers can relate to in their lives. The similarity makes Harry Potter’s magic world real to readers. Besides, by offering detailed examples to connect her characters with readers, JK.Rowling successfully convinces her readers that the magic world is real and they can be part of it if they believe...

Words: 1593 - Pages: 7

Free Essay

Fraternity

...000 – Computer science, information, and general works • 000 Generalities • 001 Knowledge • 002 The book • 003 Systems • 004 Data processing and Computer science • 005 Computer programming, programs, data • 006 Special computer methods • 007 Not assigned or no longer used • 008 Not assigned or no longer used • 009 Not assigned or no longer used • 010 Bibliography • 011 Bibliographies • 012 Bibliographies of individuals • 013 Bibliographies of works by specific classes of authors • 014 Bibliographies of anonymous and pseudonymous works • 015 Bibliographies of works from specific places • 016 Bibliographies of works from specific subjects • 017 General subject catalogs • 018 Catalogs arranged by author & date • 019 Dictionary catalogs • 020 Library & information sciences • 021 Library relationships • 022 Administration of the physical plant • 023 Personnel administration • 024 Not assigned or no longer used • 025 Library operations • 026 Libraries for specific subjects • 027 General libraries • 028 Reading, use of other information media • 029 Not assigned or no longer used • 030 General encyclopedic works • 031 General encyclopedic works -- American • 032 General encyclopedic works in English • 033 General encyclopedic works in other Germanic languages • 034 General encyclopedic works in French, Provencal...

Words: 6903 - Pages: 28

Free Essay

Missouri Mountain Lions

...reestablish itself in the state. Despite rumors, the Department has never stocked mountain lions and will not do so in the future. Although mountain lions, sometimes called cougars, pumas, panthers or catamounts, were common in Missouri and elsewhere in the Midwest prior to European settlement, they were eradicated during the 19th century. As the countryside was settled and developed, the large predators were shot. People also killed almost all of the deer, the mountain lions’ primary food source. The last native wild mountain lion in Missouri was killed in 1927. They were extirpated from Iowa by 1867, Nebraska by 1890, Kansas by 1904 and from Wisconsin by 1908. Though populations of mountain lions survived in remote mountainous terrain in western states, no verifiable evidence exists to suggest that they...

Words: 2126 - Pages: 9

Premium Essay

Cry Freedom

...ry Freedom is based on actual events, about the friendship between two men struggling against apartheid in South Africa in the 1970s. Donald Woods is a white liberal journalist in South Africa who begins to follow the activities of Stephen Biko, a courageous and outspoken black anti-apartheid activist. The story plays in November 1975 in the south-east of South Africa in the city East London. In this city Donald Woods is an editor of the Daily Dispatch. One morning he gets news of a police raid in the black township Crossroads which lies in Cape Town in the south-west of South Africa. To this news he also gets photos of the raid and he desides to print them although the government does not allow to print such photos.The story plays in November 1975 in the south-east of South Africa in the city East London. In this city Donald Woods is an editor of the Daily Dispatch. One morning he gets news of a police raid in the black township Crossroads which lies in Cape Town in the south-west of South Africa. To this news he also gets photos of the raid and he desides to print them although the government doesn't allow to print such photos. Woods does not believe the demand of the black people but he is trained as a lawyer and does not like police brutality against black people. This book promises to be an honest account of the turmoil in South Africa and a story of a black activist, but it turns into a usual cliffhanger about the editor's flight across the border. In my view, whites...

Words: 851 - Pages: 4

Free Essay

Democracy in Africa

...Future of Democracy in Africa With the aid of the book, State, Conflict, and Democracy in Africa, I will try to come up with some type of conclusion to the future democracy in Africa. These Africanists that I will mention in my paper have assessed that contemporary Africa has struggled to deal with false starts, unsatisfactory attempts to reconfigure power and varies political reforms. The first theoretical essay is written by Crawford Young on the Third Wave of Democratization in Africa. Young is a Political Scientist, who received a PhD from Harvard and he specializes in development and politics in developing countries, particularly Africa. His works are “The Politics of Cultural Pluralism” , “Ideology and Development in Africa” , and “The Rise and Decline of the Zairian State”. In his essay, Young offers insight on Africa's experimentation on political liberalization. Young starts off by talking about the “third wave” of democratization which hit Africa in 1989 which was seen as a global dynamic. Factors such as modernization, diffusion and power politics helped shaped this transition. In Africa there were deeper structural factors which started first with the economical field. “In dramatic contrast to the aggressive assertion of economic nationalism in the 1970s, a decade peppered with sweeping indigenization programs and widespread nationalism, the 1980 Organization of African Unity Lagos Plan of Action, and the blistering critique of African development performance...

Words: 2428 - Pages: 10

Premium Essay

Destination Australia

...jewel-sea, Her beauty and her terror - The wide brown land for me!" Dorothea Mackellar [ (Baskerville, 2009) ] You could easily spend three to four weeks discovering all of Australia. However if time were limited, then a short weeklong “walkabout” to the area of your choice would do. Australia is divided into six states each with a different landscape and cultural difference: New South Wales, Queensland, South Australia, Tasmania, Victoria, and Western Australia. AUSTRALIA Prepare for your Australian trip, by learning about the currency; how to place a phone call; and what to do if a medical or safety emergency happens. Approximately, 85 percent of the people of Australia live in the southeastern quarter of the country, especially in large cities along the coast. The vast interior of Australia is too dry to support a large population, and few people live there. The eastern Highlands, sometimes called the Great Dividing Range because their slopes divide the flow of the rivers in the region. Australia lies between the Indian and South Pacific oceans. Australia is often referred to as being “down under” because it lies entirely within the Southern Hemisphere. (Scott Fetzer Company, 1987) FACTS ABOUT AUSTRALIA * Currency is Australian Dollars (AUD) and currency exchange is...

Words: 1415 - Pages: 6

Premium Essay

Mangement

...[pic] UNIVERSITI SAINS MALAYSIA School of Management BACHELOR OF MANAGEMENT Semester II, Academic Session 2012/2013 COURSE OUTLINE ATW108 – MACROECONOMICS ZAINON B HARUN Tel: ext. 2532 Room no. 122 h/p 019-577-2882 e-mail: zainon@usm.my DR TAJUL ARIFFIN MASRON Tel: ext 5158 Room no. 110 e-mail: taj.arif@yahoo.com OVERVIEW The ideas of economist and political philosophers, both when they are right and when they are wrong, are more powerful that is commonly understood. Indeed the world is ruled by little else. Practical men, who believe themselves to be quite exempt from any intellectual influences, are usually the slaves of some defunct economist. John Maynard Keynes (1883-1946) Two fundamentals facts together constitute the economizing problem and provide a foundation for economics: Society’s economic wants and Economic resources. Individuals and institutions have innumerable unfilled wants and creating unstable economic conditions. Macroeconomic is concerned with the behavior of the economy as a whole; instead of focusing on the factors that influence the production of particular products and the behavior of individual industries, it focuses on the determinants of total national output. Macroeconomic is concerned with the decision. Decisions to achieve the economic goals, Sustainable economic growth...

Words: 901 - Pages: 4