61 Pages

RDBMS_Day3

Course: COMPUTER Day3, Spring 2011
School: Abraham Baldwin...
Rating:
 
 
 
 
 

Word Count: 2887

Document Preview

Basic RDBMS-Day3 SQL DDL statements DML statements Aggregate functions 1 SQL SQL is used to make a request to retrieve data from a Database. The DBMS processes the SQL request, retrieves the requested data from the Database, and returns it. This process of requesting data from a Database and receiving back the results is called a Database Query and hence the name Structured Query Language. 2 2 SQL...

Register Now

Unformatted Document Excerpt

Coursehero >> Georgia >> Abraham Baldwin Agricultural College >> COMPUTER Day3

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
Basic RDBMS-Day3 SQL DDL statements DML statements Aggregate functions 1 SQL SQL is used to make a request to retrieve data from a Database. The DBMS processes the SQL request, retrieves the requested data from the Database, and returns it. This process of requesting data from a Database and receiving back the results is called a Database Query and hence the name Structured Query Language. 2 2 SQL SQL is a language that all commercial RDBMS implementations understand. SQL is a non-procedural language We would be discussing SQL with respect to oracle syntax 3 You cant write programs like the ones you would have done using C language You can only write questions in English like language called queries which will fetch some data rows from the database. 3 Structured Query Language (SQL) 4 4 Structured Query Language (SQL) 1979 Oracle Corporation introduces the first commercial RDBMS 1982 ANSI (American National Standards Institute) forms SQL Standards Committee 1983 IBM (International Business Machine) announces DB2 (a Database) 1986 ANSI (American National Standards Institute) SQL1 standard is approved 1987 ISO (International Organization for Standardization) SQL1 standard is approved 1992 ANSI (American National Standards Institute) SQL2 standard is approved 2000 Microsoft Corporation introduces SQL Server 2000, aimed at enterprise applications 2004 SQL: 2003 standard is published 5 5 Statements DDL (Data Definition Language) DML (Data Manipulation Language) Create Alter Drop Truncate Insert Update Delete Select DCL (Data Control Language) Grant Revoke Commit Rollback 6 SQL has three flavours of statements. The DDL, DML and DCL. DDL is Data Definition Language statements. Some examples: CREATE - to create objects in the database ALTER - alters the structure of the database DROP - delete objects from the database TRUNCATE - remove all records from a table, including all spaces allocated for the records are removed COMMENT - add comments to the data dictionary GRANT - gives user's access privileges to database REVOKE - withdraw access privileges given with the GRANT command DML is Data Manipulation Language statements. Some examples: SELECT - retrieve data from the a database INSERT - insert data into a table UPDATE - updates existing data within a table DELETE - deletes all records from a table, the space for the records remain CALL - call a PL/SQL or Java subprogram EXPLAIN PLAN - explain access path to data LOCK TABLE - control concurrency DCL is Data Control Language statements. Some examples: COMMIT - save work done SAVEPOINT - identify a point in a transaction to which you can later roll back ROLLBACK - restore database to original since the last COMMIT SET TRANSACTION - Change transaction options like what rollback segment to use 6 Data types Number Char Varchar2 Long date 7 SQL supports various data types Integers Decimal numbers--- NUMBER, INTEGER . Number is an oracle data type. Integer is an ANSI data type. Integer is equivalent of NUMBER(38) The syntax for NUMBER is NUMBER(P,S) p is the precision and s is the scale. P can range from 1 to 38 and s from -84 to 127 Floating point numbers---- FLOAT Fixed length character strings---- CHAR (len) Fixed length character data of length len bytes. This should be used for fixed length data. Variable length character strings --- Varchar2(len) Variable length character string having maximum length len bytes. We must specify the size Dates-----DATE 7 NULL Missing/unknown/inapplicable data represented as a null value NULL is not a data value. It is just an indicator that the value is unknown 8 8 Operators Arithmetic operators like +, -, *, / Logical operators: AND, OR, NOT Relational operators: =, <=, >=, < >, < , > 9 The Arithmetic operators are used to calculate something like given in the example below: Select * from employee where sal * 1.1 > 1000 ; The logical operators are used to combine conditions like: Select * from employee where (sal > 1000 AND age > 25); The above two examples also illustrate use of relational operators 9 SQL-Data Definition Language 10 Types Of Constraints Column Level Table 11 11 Types Of Constraints Primary Key Constraint Foreign Key Constraint Unique Constraint Check Constraint 12 12 SQL - CREATE TABLE Syntax: CREATE TABLE tablename ( column_name data_ type constraints, ) 13 Used to create a table by defining its structure, the data type and name of the various columns, the relationships with columns of other tables etc. 13 Create Table (Contd) Implementing NOT NULL and Primary Key EXAMPLE : CREATE TABLE Customer_Details( Cust_ID Number(5) Cust_Last_Name VarChar2(20) Cust_Mid_Name VarChar2(4), Cust_First_Name VarChar2(20), Account_No Number(5) Account_Type VarChar2(10) Bank_Branch VarChar2(25) Cust_Email VarChar2(30) ); CONSTRAINT Nnull1 NOT NULL, CONSTRAINT Nnull2 NOT NULL, CONSTRAINT Pkey1 PRIMARY KEY, CONSTRAINT Nnull3 NOT NULL, CONSTRAINT Nnull4 NOT NULL, 14 14 Create Table (Contd) Implementing Composite Primary Key EXAMPLE : CREATE TABLE Customer_Details( CONSTRAINT Nnull7 NOT NULL, Cust_ID Number(5) Cust_Last_Name VarChar2(20) CONSTRAINT Nnull8 NOT NULL, Cust_Mid_Name VarChar2(4), Cust_First_Name VarChar2(20), Account_No Number(5) CONSTRAINT Nnull9 NOT NULL, CONSTRAINT Nnull10 NOT NULL, Account_Type VarChar2(10) Bank_Branch VarChar2(25) CONSTRAINT Nnull11 NOT NULL, Cust_Email VarChar2(30), CONSTRAINT PKey3 PRIMARY KEY(Cust_ID,Account_No) ); 15 15 Create Table (Contd) Implementation of Unique Constraint Create Table UnqTable( ECode Number(6) Constraint PK11 Primary Key, EName Varchar2(25) Constraint NNull18 NOT NULL, EEmail Varchar2(25) Constraint Unq1 Unique ); 16 16 Create Table (Contd) Implementation of Primary Key and Foreign Key Constraints CREATE TABLE EMPLOYEE_MANAGER( Employee_ID Number(6) CONSTRAINT Pkey2 PRIMARY KEY, Employee_Last_Name VarChar2(25), Employee_Mid_Name VarChar2(5), Employee_First_Name VarChar2(25), Employee_Email VarChar2(35), Department VarChar2(10), Grade Number(2), MANAGER_ID Number(6) CONSTRAINT Fkey2 REFERENCES EMPLOYEE_MANAGER(Employee_ID) ); 17 17 Create Table (Contd) Implementation of Check Constraint EXAMPLE : CREATE TABLE EMPLOYEE( EmpNo NUMBER(5) CONSTRAINT PKey4 Primary Key, EmpName Varchar(25) NOT NULL, EmpSalary Number(7) Constraint chk Check (EmpSalary > 0 and EmpSalary < 1000000) ) 18 18 Create Table (Contd) Implementation of Default CREATE TABLE TABDEF( Ecode Number(4) Not Null, Ename Varchar2(25) Not Null, ECity char(10) DEFAULT Mysore ) 19 19 SQL - ALTER TABLE Add/Drop Column Syntax: ALTER TABLE tablename (ADD/MODIFY/DROP column_name) ALTER TABLE Customer_Details ADD Contact_Phone Char(10); ALTER TABLE Customer_Details MODIFY Contact_Phone Char(12); ALTER TABLE Customer_Details DROP (Contact_Phone); 20 Used to modify the structure of a table by adding and removing columns 20 SQL - ALTER TABLE Add/Drop Primary key ALTER TABLE Customer_Details ADD CONSTRAINT Pkey1 PRIMARY KEY (Account_No); ALTER TABLE Customer_Details ADD CONSTRAINT Pkey2 PRIMARY KEY (Account_No, Cust_ID); ALTER TABLE Customer_Details DROP PRIMARY KEY; Or ALTER TABLE Customer_Details DROP CONSTRAINT Pkey1; 21 21 SQL - ALTER TABLE Add/Drop Foreign key ALTER TABLE Customer_Transaction ADD CONSTRAINT Fkey1 FOREIGN KEY (Account_No) REFERENCES Customer_Details (Account_No); ALTER TABLE Customer_Transaction DROP CONSTRAINT Fkey1 22 22 SQL - DROP TABLE DROP TABLE Deletes table structure Cannot be recovered Use with caution DROP TABLE UnqTable; 23 23 Truncate Table Deleting All Rows of a table TRUNCATE TABLE Customer_Details 24 24 Index Indexing involves forming a two dimensional matrix completely independent of the table on which index is created. Here one column will hold the sorted data of the column which is been indexed Another column called the address field identifies the location of the record i.e. Row ID. Row Id indicates exactly where the record is stored in the table. 25 25 Index Syntax Index on a single column CREATE UNIQUE INDEX Cust_Idx ON Customer_Details (Cust_ID); Index on Multiple Column CREATE UNIQUE INDEX ID_AccountNo_Idx ON Customer_Details (Cust_ID, Account_No); Drop a Index DROP INDEX ID_AccountNo_Idx; 26 26 Index Advantages of having an INDEX: Greatly speeds the execution of SQL statements with search conditions that refer to the indexed column(s) It is most appropriate when retrieval of data from tables are more frequent than inserts and updates Disadvantages of having an INDEX: It consumes additional disk space Additional Overhead on DML Statements 27 27 SQL-DML Here we will discuss about commands using which data from the tables would be extracted and updated in different ways 28 SQL - INSERT INTO Syntax: INSERT INTO tablename (Columnlist) VALUES (value list) Single-row insert with values for all Columns INSERT INTO Customer_Details VALUES (106, 'Costner', 'A.', 'Kevin', 3350, 'Savings', 'Indus Bank', 'Costner_Kevin@times.com') Inserting one row, few columns at a time INSERT INTO Customer_Details (Cust_ID, Cust_Last_Name, Cust_Mid_Name, Cust_First_Name, Account_No, Account_Type, Bank_Branch) VALUES (107, 'Robert', 'B.', 'Dan', 3351, 'Savings', 'Indus Bank') 29 In the first format, we would pass values for all the columns in exactly the same order in which they appear in the table When we wish to insert values only for few selected columns. For e.g in a Customer table, we may know only the Cust_Id, Cust_Last_Name, Cust_Mid_Name, Cust_First_Name, Account_No, Account_Type Bank_Branch and but not the emailid. So, we may insert only values for Cust_Id, Cust_Last_Name, Cust_Mid_Name, Cust_First_Name, Account_No, Account_Type and Bank_Branch columns in this case. The value of the remaining column will be represented as NULL by default. 29 SQL - INSERT INTO Inserting NULL Value into a Column INSERT INTO Customer_Details (Cust_ID, Cust_Last_Name, Cust_Mid_Name, Cust_First_Name, Account_No, Account_Type, Bank_Branch) VALUES (108, 'Robert', 'B.', 'Dan', 3352, 'Savings', 'Indus Bank') Or INSERT INTO Customer_Details (Cust_ID, Cust_Last_Name, Cust_Mid_Name, Cust_First_Name, Account_No, Account_Type, Bank_Branch,Cust_Email) VALUES (108, 'Robert', 'B.', 'Dan', 3352, 'Savings', 'Indus Bank,NULL) 30 30 SQL - INSERT INTO Inserting Many rows from a Different Table INSERT INTO OldCust_details (Account_No, Transaction_Date,Total_Available_Balance_in_Dollars) SELECT Account_No,Transaction_Date,Total_Available_Balance_in_Dollars From Customer_Transaction WHERE Total_Available_Balance_in_Dollars > 10000.00 31 31 SQL - DELETE FROM With or without WHERE clause Syntax: DELETE FROM tablename WHERE condition Deleting All Rows DELETE FROM Customer_Details Deleting Specific Rows DELETE FROM Customer_Details WHERE Cust_ID = 102 32 32 Difference Between Delete and Truncate DELETE TRUNCATE Data can be recovered Data cannot be recovered. DML statement DDL statement DELETE does not do so TRUNCATE releases the memory occupied by the records of the table 33 33 SQL - UPDATE Syntax: UPDATE tablename SET column_name =value [ WHERE condition] Updating All Rows UPDATE Customer_Fixed_Deposit SET Rate_of_Interest_in_Percent = NULL; Updating Particular rows UPDATE Customer_Fixed_Deposit SET Rate_of_Interest_in_Percent = 7.3 WHERE Amount_in_Dollars > 3000; 34 34 SQL - UPDATE Updating Multiple Columns UPDATE Customer_Fixed_Deposit SET Cust_Email = Quails_Jack@rediffmail.com , Rate_of_Interest_in_Percent = 7.3 WHERE Cust_ID = 104 35 35 Retrieving All columns from a table To select set of column names, SELECT column1, column2, FROM TableName Example SELECT * FROM Customer_Details; Or SELECT Cust_ID, Cust_Last_Name, Cust_Mid_Name, Cust_First_Name, Account_No, Account_Type, Bank_Branch, Cust_Email FROM Customer_Details; 36 Examples: Get the first name of all the customers SELECT Cust_First_Name FROM Customer_Details; Get the first name and bank branch of all the customers SELECT Cust_First_Name, Bank_Branch FROM S Get full details for all customers in Customer_Details table SELECT * FROM Customer_Details; 36 Retrieving Few Columns SELECT Cust_ID, Account_No FROM Customer_Details; Implementing Customized Columns Names SELECT Account_No AS Customer Account No., Total_Available_Balance_in_Dollars AS Total Balance FROM Customer_Transaction; 37 37 SQL - ALL, DISTINCT Get all Customers Name: SELECT ALL Cust_Last_Name FROM Customer_Details; Or SELECT Cust_Last_Name FROM Customer_Details; Get all distinct Customer Name SELECT DISTINCT Cust_Last_Name FROM Customer_Details; 38 Distinct will filter repetitive occurrence of a particular value 38 Retrieving a subset of rows For retrieval of rows based on some condition, the syntax is SELECT COL1,COL2,......... FROM TABLE NAME WHERE < SEARCH CONDITION> 39 39 Retrieving a subset of rows (Working of WHERE Clause) Problem Statement: To select rows which have 102 in the Manager column. Row selection with the WHERE clause 40 40 Relational operators List all customers with an account balance > $10000 SELECT Account_No, Total_Available_Balance_in_Dollars FROM Customer_Transaction WHERE Total_Available_Balance_in_Dollars > 10000.00; List the Cust_ID, Account_No of Graham SELECT Cust_ID, Account_No FROM Customer_Details WHERE Cust_First_Name = Graham; Relational operators = , < , > , <= , >= , != or < > 41 41 Relational operators List all Account_No where Total_Available_Balance_in_Dollars is atleast $10000.00 SELECT Account_No FROM Customer_Transaction WHERE Total_Available_Balance_in_Dollars >= 10000.00; 42 42 Logical operators List all Cust_ID, Cust_Last_Name where Account_type is Savings and Bank_Branch is Capital Bank. SELECT Cust_ID, Cust_Last_Name FROM Customer_Details WHERE Account_Type = Savings AND Bank_Branch = Capital Bank; List all Cust_ID, Cust_Last_Name where neither Account_type is Savings and nor Bank_Branch is Capital Bank SELECT Cust_ID, Cust_Last_Name FROM Customer_Details WHERE NOT Account_Type = Savings AND NOT Bank_Branch = Capital Bank; 43 43 Logical operators List all Cust_ID, Cust_Last_Name where either Account_type is Savings or Bank_Branch is Capital Bank. SELECT Cust_ID, Cust_Last_Name FROM Customer_Details WHERE Account_Type = Savings OR Bank_Branch = Capital Bank; Logical operator: AND, OR, and NOT 44 44 Retrieval using BETWEEN List all Account_Nos with balance in the range $10000.00 to $20000.00. SELECT Account_No FROM Customer_Transaction WHERE Total_Available_Balance_in_Dollars >= 10000.00 AND Total_Available_Balance_in_Dollars <= 20000.00; Or SELECT Account_No FROM Customer_Transaction WHERE Total_Available_Balance_in_Dollars BETWEEN 10000.00 AND 20000.00; 45 45 Retrieval using IN List all customers who have account in Capital Bank or Indus Bank. SELECT Cust_ID FROM Customer_Details WHERE Bank_Branch = Capital Bank OR Bank_Branch = Indus Bank; Or SELECT Cust_ID FROM Customer_Details WHERE Bank_Branch IN (Capital Bank, Indus Bank); 46 46 Retrieval using LIKE List all Accounts where the Bank_Branch begins with a C and has a as the second character SELECT Cust_ID, Cust_Last_Name, Account_No FROM Customer_Details WHERE Bank_Branch LIKE Ca%; List all Accounts where the Bank_Branch column has a as the second character. SELECT Cust_ID, Cust_Last_Name, Account_No FROM Customer_Details WHERE Bank_Branch LIKE _a%; 47 47 SQL - Retrieval using IS NULL List employees who have not been assigned a Manager yet. SELECT Employee_ID FROM Employee_Manager WHERE Manager_ID IS NULL; List employees who have been assigned to some Manager. SELECT Employee_ID FROM Employee_Manager WHERE Manager_ID IS NOT NULL; 48 48 SQL - Sorting your results (ORDER BY) List the customers account numbers and their account balances, in the increasing order of the balance SELECT Account_No, Total_Available_Balance_in_Dollars FROM Customer_Transaction ORDER BY Total_Available_Balance_in_Dollars; by default the order is ASCENDING 49 49 Retrieval using ORDER BY List the customers and their account numbers in the decreasing order of the account numbers. SELECT Cust_Last_Name, Cust_First_Name, Account_No FROM Customer_Details ORDER BY 3 DESC; 50 50 Retrieval using ORDER BY List the customers and their account numbers in the decreasing order of the Customer Last Name and increasing order of account numbers. SELECT Cust_Last_Name, Cust_First_Name, Account_No FROM Customer_Details ORDER BY Cust_Last_Name DESC, Account_No; Or SELECT Cust_Last_Name, Cust_First_Name, Account_No FROM Customer_Details ORDER BY 1 DESC, 3; 51 51 Aggregate Functions 52 SQL - Aggregate functions Used when information you want to extract from a table has to do with the data in the entire table taken as a set. Aggregate functions are used in place of column names in the SELECT statement The aggregate functions in sql are : SUM( ) , AVG( ) , MAX( ) , MIN( ), COUNT( ) 53 53 Aggregate function - MIN Returns the smallest value that occurs in the specified column Column need not be numeric type List the minimum account balance. SELECT MIN (Total_Available_Balance_in_Dollars) FROM Customer_Transaction; 54 54 Aggregate function - MAX Returns the largest value that occurs in the specified column Column need not be numeric type Example: List the maximum account balance. SELECT MAX (Total_Available_Balance_in_Dollars) FROM Customer_Transaction; 55 55 Aggregate function - AVG Returns the average of all the values in the specified column Column must be numeric data type Example: List the average account balance of customers. SELECT AVG (Total_Available_Balance_in_Dollars) FROM Customer_Transaction; 56 56 Aggregate function - SUM Adds up the values in the specified column Column must be numeric data type Value of the sum must be within the range of that data type Example: List the minimum and Sum of all account balance. SELECT MIN (Total_Available_Balance_in_Dollars), SUM (Total_Available_Balance_in_Dollars) FROM Customer_Transaction; 57 57 Aggregate function - COUNT Returns the number of rows in the table List total number of Employees. SELECT COUNT (*) FROM Employee_Manager; List total number of Employees who have been assigned a Manager. SELECT COUNT (Manager_ID) Manager_ID) FROM Employee_Manager; Employee_Manager; Count(*) Count(ColumnName) = = No of rows No. of rows that do not have NULL Value 58 58 Aggregate function - COUNT List total number of account holders in the Capital Bank Branch. SELECT COUNT (*) FROM Customer_Details WHERE Bank_Branch = Capital Bank; List total number of unique Customer Last Names. SELECT COUNT (DISTINCT Cust_Last_Name) Cust_Last_Name) FROM Customer_Details; Customer_Details; Count(*) Count(ColumnName) = = No of rows No. of rows that do not have NULL Value 59 59 Summary of basic DDL and DML Create , Alter and Drop are the DDL commands Update, Insert into, Delete from are the basic DML commands that add or remove data from tables Select statement in its various flavours is used to retrieve information from the table Aggregate functions work on all the rows of the table taken as a group (based on some condition optionally) 60 60 Thank You! 61 61
Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Abraham Baldwin Agricultural College - COMPUTER - Day4
RDBMS- Day 4 Grouped results Relational algebra Joins Sub queriesIn todays session we will discuss about the concept of sub queries.1Grouped results2SQL - Using GROUP BYRelated rows can be grouped together by GROUP BY clause byspecifying a colu
Abraham Baldwin Agricultural College - COMPUTER - Day5
RDBMS- Day5Correlated Sub QueriesExists and Not ExistsViewsData Control LanguageEmbedded SQLIn todays session we would be discussing about the concept of views, the concept of an index andhow it is useful in database implementations and the concept
Abraham Baldwin Agricultural College - COMPUTER - Day6
RDBMS - Day61AgendaMotivationTransactionTypes of Transaction SystemsTransaction PropertiesRequirements for an OLTP system Integrity ConcurrencyLockingGranularity of LockingIntent LockingDeadlockCopyright 2004,Infosys Technologies Ltd2ER/C
Abraham Baldwin Agricultural College - COMPUTER - Day7
RDBMS Day7Time Stamping and Database RecoveryA computer system may fail due to disk crash, power failure etc. A recovery scheme is an integralpart of every DBMS . This minimizes the time duration required for the database to become usableafter a crash
Abraham Baldwin Agricultural College - COMPUTER - Day7
RDBMS Day7Time Stamping and Database RecoveryA computer system may fail due to disk crash, power failure etc. A recovery scheme is an integralpart of every DBMS . This minimizes the time duration required for the database to become usableafter a crash
Abraham Baldwin Agricultural College - GRAMMAR - 1
English Grammar in Use With Answers: Reference and Practice for Intermediate Students(Paperback)~ Raymond MurphyAdvanced grammar in use, by Cambridge Martin Hewingsswan's grammarCorrect English-Second Course With Preliminary TestsComprehensive Engli
Abraham Baldwin Agricultural College - BUSINESS - 1
Kaizen is a Japanese word that means continuous process improvement' in English (&quot;The Art,&quot;n,.d.). The Kaizen strategy is based on the assumption that employees are the right people todetermine improvement opportunities because they are constantly invol
Abraham Baldwin Agricultural College - ENGLISH - 102450
Confirmation bias is a tendency to search for information that confirms ones preconceptions.We are eager to verify our beliefs but less inclined to seek evidence that might disprove them.With that being said people believe that their emotions, thoughts,
Abraham Baldwin Agricultural College - ENGLISH - 345
Policing FunctionsPolicing in the United States is very unique and very confusing to other countries. As of1999, there is approximately twenty thousand police agencys locally and state wide here inthe United States. As for other nations such as Canada
Abraham Baldwin Agricultural College - ENGLISH - 244
Week 5 Text Problem Sets ExercisesChapter 17 B1:(Choosing Financial Targets) Bixton Companys new chief financial officer is evaluatingBixtons capital structure. She is concerned that the firm might be underleveraged, eventhough the firm has larger-tha
Abraham Baldwin Agricultural College - ENGLISH - 344
Write a 1,400- to 1,750-word paper on a current health care situation. For example, commonissues might include one of the following: physician or employee with a conflict of interest, healthcare fraud and abuse, medical error, quality of care issues, ag
Abraham Baldwin Agricultural College - BIO - 23
Types of epithelial tissueConnective tissue -Connective tissues are fibrous tissues. They are comprised of cellsseparated by non-living material, which is called extracellular matrix. Connective tissue holdsother tissues together such as in the formati
Abraham Baldwin Agricultural College - BUSINESS - 132
Trade deficit is dollars that all foreign countries made from selling stuff to the US, and havenot spent on buying things from the US. So they are &quot;keeping&quot; those dollars. Since it is stupidto just let these dollars sit in a checking account, they want
Abraham Baldwin Agricultural College - BIO - 552
1.DNA is deoxyrionucleic acid and contains the 5 carbon sugar deoxyribose. RNA isribonucleic acid and contains the 5 carbon sugar ribose.2. DNA is a double stranded molecule . RNA is single stranded.3. DNA contains 4 bases Adenine (A) , Cytosine (C), G
Abraham Baldwin Agricultural College - ECONOMY - 233
LOCAL GOVERNMENTLocal Governments are municipalities agents of the State and have only those powers that theStates grant to them. Local governments lack the inherent lawmaking ability. The stateConstitution grants the local governments its powers. Limi
Abraham Baldwin Agricultural College - ECON - 323
1. Which of the following statements is CORRECT?A) One advantage of an open market dividend reinvestment plan is that it provides new equitycapital and increases the shares outstanding.B) Stock repurchases can be used by a firm that wants to increase i
Abraham Baldwin Agricultural College - ENGLISH - 324
CRITICAL THINKINGScientific thinking is a thought process that involves cognitive processes, experiment design,hypothesis testing, data interpretation, and scientific discovery. It is a way of thinking usuallyused in science, but can be used in day to
Abraham Baldwin Agricultural College - ENGLISH - 434
Ashley R. CarterAmherst College118 Merrill Science CenterAmherst, MA 01002Phone: (413) 542-2593fax: (413) 542-5821email: acarter@amherst.eduINTERESTSMy research focuses on biophysics and optics, particularly using microscopy techniquesto study bi
Abraham Baldwin Agricultural College - ECE - 543
FINANCING CORPORATE GROWTHBy Bradford Cornell, University of California, Los Angeles, and Alan C. Shapiro, University ofSouthern CaliforniaRapid growth poses special problems for financial managers. They must raise large amounts ofcash to fund this gr
Abraham Baldwin Agricultural College - ECONOMY - 401 #3 (1)
1.Whatoccurswhenseveralagenciesandindividualscommittoworkandcontributeresourcestoobtaina commongoal?A)CollaborationoccursB)ReducedcommitmentofeachpartnerC)PoliticsbecomeinvolvedD)Stakeholdersareemboldened2.Whichofthefollowingstepsneedtobetakenbyap
Abraham Baldwin Agricultural College - ECONOMY - 434
Explain the factual background, decision and reasoning of the Supreme Court in the Grokstercase on pages 169-170 of the text. Do you think the court made the right decision? Whatconsequences do you foresee if the court makes it easier for the creators o
Abraham Baldwin Agricultural College - ECONOMY - 444
Chapter 2Company and Marketing Strategy: Partnering to Build Customer RelationshipsMultiple Choice1.Disney has been successful in selecting an overall company strategy for long-runsurvival and growth called _.a. tactical planningb. strategic planni
Abraham Baldwin Agricultural College - ENGLISH - 434
W6 AssignmentThis week youll continue to work on your Invention applying seven modes of thinking thatwere covered in this module. This assignment is a part of your final project.Submit your paper as a Microsoft Word document in the discussion area for
Abraham Baldwin Agricultural College - ENGLISH - 434
The role of HR manager is shifting from that of a protector and screener to that of a planner andchange agent.HR Challenges in the IT Industry include Compensation and Reward, Being thebest place to work with, Coping with the Demand-Supply Gap, Integrat
Abraham Baldwin Agricultural College - HRM - 10045
Final ProjectInterpersonal Communication PresentationResources: Associate Program Material: Final Project Overview and Timeline, AssociateProgram Material: Final Project Case StudiesChoose a case study from below: Final Project Case Studies.Develop a
Abraham Baldwin Agricultural College - ECONOMY - FIN2030
FIN2030 Quantitative Assignment, Week 21. Future Value. What is the future value ofa. $773 invested for 14 years at 11 percent compounded annually?b. $210 invested for 7 years at 6 percent compounded annually?c. $650 invested for 10 years at 9 percent
Abraham Baldwin Agricultural College - HRM - 545
Learning TeamEthical DecisionMaking PaperWrite a 1,050- to 1,400-word paper describing each team members ethical learningstyle from the EAI, which was due in Week One.Include the following in your paper: How each style relates to the criminal justic
Abraham Baldwin Agricultural College - MATH - 208-4
Math 208 Math Problems 14-20
Abraham Baldwin Agricultural College - HRM - 435
When answering the written response questions please follow these requirements: Your answer to each question should contain a minimum 200-word response. General encyclopedias are not acceptable sources. Examples include, but are notlimited to, Wikipedi
Abraham Baldwin Agricultural College - PAPER - 4536
DEFAULTER STUDENT LIST FOR MINOR PROJECT (MENTOR LIST)Roll No Midsem(16)EndSem(50)Mentor Name805058ABSABSAnanda Swarup31533ABSABSAnanda Swarup705087ABSABSAnanda Swarup805019ABSABSAnanda Swarup805052ABSABSAnanda Swarup805054ABSABS
Abraham Baldwin Agricultural College - PAP - 5435
The paper must reflect APA formatting and be 5 to 10 pages long, reference a minimum of 5additional sources. An outline for this paper is also required.My research paper will be about the Kobe Bryant sexual assault case. Kobe was accused ofsexual assau
Abraham Baldwin Agricultural College - FINANCE - CS304_3
Object Oriented Programming (CS304)Assignment No.03Total Marks10DeadlineYour assignment must be uploaded before or on 29th December, 2011.Rules for MakingIt should be clear that your assignment will not get any credit if:ooThe assignment is subm
Abraham Baldwin Agricultural College - ENGLISH - 455
This is what I need for this assignment. Please include everything that is needed for this paper.Plus include the citations from where you found the information if there is any, and the referencesstarting with http:/www. Where it is from, the authors na
Abraham Baldwin Agricultural College - ELECTRONIC - Electronic
Case 3TheCaseinthiscourseisanongoingexercise,whichmeansthatwewillbetakinganintensivelookat onecompanyoverthecourseofour5modules.Thissession,wewillbeconductingastrategicanalysis ofThe Coca-Cola Company.InordertobebestpreparedandperformwellfortheCaseassi
Abraham Baldwin Agricultural College - FED - 084
Research global climate change, global warming, and the Kyoto Protocol.Write a 700- to 1,400-word evaluation of international efforts to combat global climate change.Include the following information in your evaluation:Introduce the concept of global c
Abraham Baldwin Agricultural College - DFA - 3E13
5th EditionPsy 315 Practice Problems Student Reference Guide: Week 5Chapter 7, Problem #14a) Steps of hypothesis testing:1)Restate the question.Population 1: The individuals in the test.Population 2: People who exhibit a 24-hour cycle of sleeping a
Abraham Baldwin Agricultural College - THERMO - n/a
Based in the BACKGROUND located bellow the assignments :ASSIGNMENT 1In a Word document, type the heading Step 1. Below ittype a list of your methods and summarize what you wantto accomplish with each. For example, if your method is tointerview each d
Abraham Baldwin Agricultural College - THERMO - n/a
Goal:Design a program that computes square matrix multiplication on GPU using CUDA. Inparticular, your implementation should obey the following requirements:1. The program must be general enough to handle matrix sizes beyond the GPUcapacity.2. The GP
Abraham Baldwin Agricultural College - HRM - 46
SYMBOLICSYSTEMS202:TheRationalityDebate(3units)WinterQuarter20032004,StanfordUniversityInstructor:ToddDaviesGameTheoryThroughExamples(2/11/04)GamesagainstnaturedecisiontheoryforasingleagentExpectedutilitytheoryforasingleagentissometimescalledthetheory
Abraham Baldwin Agricultural College - MATH - 435
WrittenAssignment:M6ApplicationsoftheDerivativeMA302ExerciseSet4.1(14,24,34,44,46,74)ExerciseSet4.2(8,24,44)ExerciseSet4.3(12,24,30)ExerciseSet4.4(8,14,26)ExerciseSet4.5(6,12)
Abraham Baldwin Agricultural College - ENGLISH - 645
Madeline Hunter Lesson Plan TemplateEDU 490Name/Teacher:Subject Area:Grade Level:Lesson Title:1. Objectives (State the expected learner outcomes):Materials/Resources needed:2. Standards Addressed &amp; Expectations of the Student:3. Anticipatory Set
Abraham Baldwin Agricultural College - GGG - 444
Title of Paper 1Running Head: TITLE OF PAPER IN CAPSTitle of PaperYour NameSchoolClassInstructorDateTitle of Paper 2[Transmittal Letter Example taken fromhttp:/www.class.uidaho.edu/adv_tech_wrt/week14/letter_transmittal_example.htm . Usethe let
Abraham Baldwin Agricultural College - CHEMIS - N1234
The question is :Compare the properties of elements and compounds. Give two examples of each,including one example that exists in the human body. Explain the atomic natureof one element and one compound found in human body.Your responses should be a m
Abraham Baldwin Agricultural College - HRM - 345
Robert StrokaHuman Resource Management and DevelopmentProfessor BerensonNovember 27, 2011Diversity in the WorkplacePurpose: The purpose of this paper is to identify ways to create a non-discriminative andproductive workplace and positive ideas on ho
Abraham Baldwin Agricultural College - ERT - 1235
The purpose of this paper is to address how research is used in Commercial RealEstate specifically the relocation of businesses. Many companies rely on the informationresearch companies provide to make their final decisions. Realogy is one of thecompan
Abraham Baldwin Agricultural College - CSF - 433
I need homework helplisted are two questions. answer each question 300 words and onereference for each use the chapters for your reference.1. Chapter two includes insightful and challenging case studies for our consideration. Ourfirst discussion thread
Abraham Baldwin Agricultural College - GFDG - gfdg
ForModule2,consideryourorganization'smissionandstrategyfromtheperspectiveofitspotential, prospective,andpresentcustomers.Inthissectionoftheassignmentyoullbegintoidentifyobjectives andmeasuresrelevanttothatperspective.Referbacktothis presentationonobje
Abraham Baldwin Agricultural College - HRM - 45
The Scanlon plan is a variation of which type of incentive?A. IndividualB. Merit payC. GainsharingD. Profit sharingA system in which an employer pays a worker specifically for each unit produced isknown asA. gross pay.B. hourly wage.C. piecework
Abraham Baldwin Agricultural College - DAA - 456
FIN2030 Quantitative Assignment, Week 21. Future Value. What is the future value ofa. $773 invested for 14 years at 11 percent compounded annually?b. $210 invested for 7 years at 6 percent compounded annually?c. $650 invested for 10 years at 9 percent
Abraham Baldwin Agricultural College - DAA - 456
Multimeter Operations1. A technician needs to isolate an intermittent ground in a computer system. What color wire does thetechnician need to look for?A. Black C. OrangeB. Green D. Red2. Microelectronic parts in a computer operate onA. +120 volts AC
Abraham Baldwin Agricultural College - DFGASFD - 23445234
Write a 3-4 page paper that explains the concept of inclusion and evaluates three types of services that may benefitdisabled students. Reference three specific research-based sources (not including the text). Identify advantages anddisadvantages for the
Abraham Baldwin Agricultural College - FINANCE - 35
Present Value FunctionWhat is the present value of $1,000 received 8 years from today if thediscount rate is 5%?i5%n8FV$1,000PV$676.84 using the formulaPV (rate, nper, pmt, FV)=PV(D6,E6,0,D8)$676.84Future Value FunctionYou deposit $1,000 to
Abraham Baldwin Agricultural College - YGF - 567
In the social sciences, researchers often want to conduct studies in situations where they cannotcontrol certain aspects of the study. For example, they might want to compare critical thinkingskills for students taking an online class with those taking
Abraham Baldwin Agricultural College - FSF - PSY435WEEK
PSY 435 Week 4 Test1. To control rater bias in a performance rating system organizations are recommended to conduct propertraining of raters and _.A. Allow ratees to sign for their appraisalsB. Have supervisors of the raters also sign to validate the
Abraham Baldwin Agricultural College - FESF - 4325
Abraham Baldwin Agricultural College - ENGG - 54
Week5Assignment2:ArticleAnalysisInthisassignment,youwillcriticallyevaluatearticlesinthefieldofadultdevelopment.Eachweek,youwillreadtwoarticles fromAnnualEditions:HumanDevelopment9/10(seetheweeklyreadingsforthechosenarticles).Foreacharticle,dothefollowi
Abraham Baldwin Agricultural College - GG - 435
Thank you for your interest in iGATE Patni. This form is intended to enableyou to record important points about yourself as a person, your experience,strengths, achievements and future plans for our reference while processingyour application.APPLICATI
Iowa State - ENG - 160
Classroom ExpectationsIn some respects college is much less formal than high school. One place this tends to bemost visible is in classroom expectations. Class attendance may not be as rigidly enforced as in high school Subjects which were avoided in
Iowa State - ENG - 160
ENGR 160: HW, Project, and Exam Preparation Guidance and Grading ProcedureGeneral Aspects of Presentation and LayoutAll HWs, projects, and exams need your name on the upper right corner,and your work should be organized, correctly laid out, with correc
Iowa State - ENG - 160
Engr 160/160H Reference SheetUnit Conversions: 2AREA - 1 acre = 43 560 ftAREA - 1 hectare = 10 000 m 2AREA - 1 square mile = 640 acreslbArea and Volume Equations:Triangle : A =kg1bh2()1b +b h221DENSITY - 1 m = 16.02 33ftmENERGY - 1 B
Iowa State - ENG - 160
ENGR_160_Fall_2011_Section_E1_Prof_AllemanClass Project @ 23 August 2011 (Tuesday)Step123445EffortMeet your new team members (NOTE: you will be told who is on your team for this effort)Teams will have 4 members each (although this may change)D