AP WORLD HISTORY - STUDY SET Flashcards
Drupal Basics Flashcards
Basic installation and configuration steps for Drupal
180072668 | Quick install installer steps | Browse to your new Drupal site. This will take you to the Drupal installer, which starts with: "Select an installation profile." Save and continue. Choose "Standard." Save and continue. Choose English or learn how to install Drupal in other languages. Save and continue. Choose the type of database you created (e.g. MySQL or SQLite). Enter the name of the database you created, the username, and password. Save and continue. Set the site name and email from which the site will send out mail. Set the username, email, and password of the first administrator account. Save and continue. | |
180072669 | Quick install for developers | Download Drupal, put the Drupal files in the correct directory, create the configuration file, create the Drupal database, run the installation script | |
180072670 | Quick install for developers: Run installation script | Point your browser to the base URL of your website (e.g. http://www.example.com, http://www.example.com/drupal or http://localhost/drupal). The installation wizard will guide you through several screens to set up the database, add the first user account, and provide basic website settings. Follow the wizard to finalize the installation and start working with your Drupal website. | |
180072671 | Quick install for developers: Put the Drupal files in the correct directory | Move the files to a directory within your web server's document root or your public HTML directory using the following command, substituting drupal-x.x with the actual version number. (On many *nix computers the path from the server's root will be /var/www/.) mv drupal-x.x /var/www/ | |
180072672 | Quick install for developers: Create the configuration file | In the sites/default directory, copy the default.settings.php file and rename the copied file to settings.php: cp sites/default/default.settings.php sites/default/settings.php . Give the web server write privileges (666 or u=rw,g=rw,o=rw) to the configuration file: chmod a+w sites/default/settings.php . Give the web server write privileges to the sites/default directory: chmod a+w sites/default | |
180072673 | Quick install | download and Upload all of the files inside your Drupal folder into the web root folder on your server, create a database, make the /sites/default directory writable (e.g. set to set permissions to 777), run the installer | |
180072674 | Quick install for developers: Create the Drupal database | Create an empty database and a user with full access the newly created database for Drupal to use. mysqladmin -u | |
180072675 | Quick install for developers: Set permissions for the Drupal database | GRANT SELECT, INSERT, UPDATE, DELETE, CREATE, DROP, INDEX, ALTER, CREATE TEMPORARY TABLES, LOCK TABLES ON databasename.* TO 'username'@'localhost' IDENTIFIED BY 'password'; | |
180072676 | Install with Drush | Get (only the) Drupal base with Drush, execute the Drush site-install command. The installation profile used can be left out, it defaults to standard, or set to something else. | |
180072677 | Get Drupal base with Drush | drush dl drupal --drupal-project-rename=example | |
180072678 | Execute the Drush site-install command | cd example; drush site-install standard --db-url=mysql://[db_user]:[db_pass]@localhost/[db_name] --site-name=Example . Use drush help si to see more flags available for the site-install command. | |
180072679 | Set up Drupal database with Drush | Drush will create the database for you if the db_user above has the privileges to. By default the UID 1 account is given a username and password of 'admin'. | |
180072680 | Change default database login with Drush | You can set the login with flags added to the site-install command: --account-name=admin --account-pass=[useruser_pass] | |
180072681 | Apache requirements | Verify Clean-Urls in Apache. Confirm AllowOverride All is in effect, and mod_rewrite is available. | |
180072682 | Server migration basics | Check php memory, check DB support, check GD image toolkit support, check php upload_max_filesize, post_max_filesize, check that include_path contains '.' (the working directory), check the error_reporting level, set up cron, check the presence of the .htaccess file | |
180072683 | Install contributed modules | Choose the release version that is compatible with your version of Drupal, Access the files (download the .tar.gz or .zip file to your computer) | |
180072684 | Install contributed modules manually | Extract the module archive (e.g. execute the command: tar -zxvf modulename-drupalversionnumber.tar.gz); Upload the folder into the sites/all/modules directory; Read the module directions for module-specific configuration; Enable the module; Set up permissions; Adjust settings | |
180072685 | Enable contributed modules | Navigate to Administer > Modules or http://example.com/admin/modules. Check the 'Enabled' box next to the module and then click the 'Save Configuration' button at the bottom. Note: If you are updating an existing module, you'll need to click 'update script' at the top of the page or load http://www.example.com/update.php, then click 'Continue' (after making a backup of both your database and 'sites' folder). | |
180072686 | Set permissions for contributed modules | Permissions information may be in the instructions that came with the module. Navigate to Administer > Modules and click on the 'Permissions' button for the desired module. You can also do this on the Permissions page (Administer > People > Permissions). Scroll down to see if the module appears in the list and, if it does, give the appropriate permissions to desired roles. | |
180072687 | Adjust settings for contributed modules | Most modules will have some type of settings page. It will vary from module to module but if not described in the README.txt file, it can usually be located by navigating to (Administer > Modules) and clicking on the 'Configure' link for that module. Not all modules have settings pages. | |
180072688 | Install themes | Download the theme, extract the files, upload the folder, read the directions, enable the theme, make it the active or default theme if desired, save the configuration (e.g. click the 'Save Configuration' button at the bottom of the themes page) | |
180072689 | Enable themes | Go to administer > site building > themes. Check the 'Enabled' box next to the theme. | |
180072690 | Upload a theme folder | FTP/Copy/SCP your files to the desired themes folder in your Drupal installation. Since the themes folder at the top level of Drupal is typically reserved for Drupal core themes, you should create a sites/all/themes/ directory and put uploaded themes there. If you are running a multi-site installation of Drupal, you can create a themes folder under sites/my.site.folder and put themes there that are specific to a particular site in your installation. Themes that will be shared between all sites should be placed in sites/all/themes. | |
180072691 | Download themes | Themes can be found on http://drupal.org/project/themes, as well as some external sites. Make sure the version of the theme matches your version of Drupal. Note that themes labeled "DEV" are in a development stage. They may be written for a previous/current/future version of Drupal, and they are considered unstable and should be handled with care. | |
180072692 | Migrate to Drupal | Migration involves mapping data fields from the original application's database into Drupal's database. For some applications this can be a simple task, with tools or scripts available to do the migration. Other applications may have complex database schemas, lack documentation, and are uncommon enough that there are no tools available. | |
180072693 | Steps for migrating to Drupal | In the absence of automatic migration tools: You will need to map all your current users into Drupal's users table; Import databases (MySQL, etc.) containing content and users from your previous CMS into Drupal; | |
180072694 | Process CCK file types | If your tables are available in your Drupal database, you can use the Table Wizard to expose them to Views, and then use the Migrate module to copy the data from the old columns to the CCK content types. Also, the Node Convert module can convert imported node types to other node types; it supports, at least, CCK fields, book and forum nodes, and probably others like blog, etc. | |
180072695 | Import existing databases to Drupal | Export the databases first to CSV (comma-separated values) or similar files. Tools such as phpMyAdmin for MySQL can make this task easier. You can then import these files with import/export modules such as Node Import, User Import, CSV Parser, Migrate, or Transformations (see a module comparison). | |
180072696 | Map all current users into Drupal's users table | If you have different roles (for example, read-only, author, editor/reviewer, admin), you will need to assign your users to properly set up and configured roles in Drupal. This can mostly be done through Drupal's admin interface, although if you have a large number of users, you may want to find a way to automate the assignment. Editing each user by hand could be time consuming. If the content being migrated is text, it would likely map into the node and node_revisions tables, with comments in the comments table. | |
180072697 | Migrate from Wordpress | The wordpress import takes a feed of your existing wordpress site and generates nodes and vocabularies from that data in your Drupal site. (1) Setup a base Drupal site (see our beginning with drupal articles); (2) Configure it to your new site as much as you can ( you could install an existing theme or modify an existing theme to your preference ); (3) Install the Wordpress Import module and enable it in your module configuration; (4) Follow the instructions in the Wordpress Import module (read the project page and any text files that come with the tarball) and execute the import; (5) If necessary, theme the created nodes from your wordpress import that are generated from your wordpress import. | |
180072698 | Migrate from Wordpress: Categories vs. Vocabularies | Wordpress uses the concept of "categories" but in Drupal they are called "Vocabularies", terms form a taxonomy which belong to a vocabulary, but in the end, they are all the same thing, just be aware of the difference in terminogoly however there are many plugins for Drupal that can do very cool things depending on the Vocabulary/Taxonomy (or category) of a post. |
Communicatie theorie Rox - H4 Flashcards
528894802 | issue | is een oplaaiende kwestie waarbij sprake is van een maatschappelijk geschilpunt waarover een discussie wordt gevoerd | |
528894803 | issueanalyse | hierbij beschrijf je de actuele politieke en maatschappelijke onderwepen die voor de organisaite van belang zijn | |
528894804 | issuemanagement | analyseren van issues, belangrijke politieke en maatschappelijke thema's die van invloed kunnen zijn op de organisatie, dit is een continu proces | |
528894805 | antennefunctie | staat voor het alert signaleren van veranderingen in het denken en doen in de politieke, economische en sociale omgeving | |
528894806 | monitoring | het systematisch signaleren en in beeld brengen van veranderingen | |
528894807 | public affairs | richt zich op het beinvloeden van besluitvormingsprocessen, doelgroepen hierbij zijn politieke partijen en overheden | |
528894808 | actoren | de belanghebbende partijen die bij een issue zijn betrokken | |
528894809 | stakeholders | de personen of organisaties die de ' kaarten' in handen hebben, hun meningen zijn beslissend | |
528894810 | lobbyen | dat de organisatie relaties opbouwt met personen die invloed kunnen uitoefenen op ontwikkelingen die voor de organisatie van belang zijn | |
528894811 | MVO | maatschappelijk verantwoord ondernemen | |
528894812 | maatschappelijk verantwoord ondernemen MVO | dat een onderneming naast het streven naar winst, profit, ook rekening houdt met het effect van haar activiteiten op het milieu | |
528894813 | ethiek | een wijze van denken over de waarden en normen die we hanteren; maatschappelijke, professionele, persoonlijke en organisatie waarden | |
528894814 | community relations | omvat de communicatie die gericht is op de directe, lokale omgeving van de organisatie bijv schiphol en de omgeving | |
528894815 | crisiscommunicatie | bij een crisis is er een acuut probleem dat kan leiden tot ernstige schade aan het imago van de organisatie of het vertrouwen in de geleverde producten. | |
528894816 | crisisplan | de organisatie kan een algemeen crisisplan maken dat als leidraad dient in geval van crisis | |
528894817 | verschillende contacten bij crisis | - met de pers ( waarheid vertellen ) - met de bellers ( crisisnummer openen ) - met de emailers ( korte verklaring op de website ) | |
528894818 | 7 middelen bij crisiscommunicatie | - persbericht - persconferentie - open brief naar media - beleggen van een bijeenkomst - interviews - publieksinformatienummer - aparte site | |
528894819 | product recall | het terugroepen van een product uit de schappen | |
528894820 | financiële communicatie | is gericht op de financiële doelgroepen van een organisatie | |
528894821 | 7 doelgroepen bij financiele communicatie | - de effectenbeurs - de beleggingsanalisten en -adviseurs - de handelaren in effecten - de aandeelhouders - de financiele pers - de banken - de overheid | |
528894822 | middelen van financiele communicatie | zijn vooral het jaarverslag en de kwartaal en halfjaar cijfers | |
528894823 | arbeidsmarkt communicatie | hieronder verstaan we de communicatie met potentiele medewerkers en met personen en organisatie die van belang zijn bij het aantrekken van nieuwe medewerkers | |
528894824 | overheids-communicatie | kent regels die afwijken van het bedrijfsleven, met name persvoorlichting | |
528894825 | instrumentele voorlichting | voorlichting wordt steeds meer gebruikt als beleidsinstrument | |
528894826 | interactieve beleidsvorming | als de ( lokale ) overheid het beleid in samenspraak met de burger wil ontwikkelen | |
528894827 | publieksvoorlichting | is overheidsvoorlichting gericht op het algemene publiek | |
528894828 | WOB; wet openbaarheid van bestuur | geeft aan in welke situaties de overheid welke informatie moet verstrekken | |
528894829 | passieve informatieplicht | dit is het verstrekken van informatie op verzoek van de ontvanger | |
528894830 | actieve informatieplicht | dit is het verstrekken van informatie op initiatief van de zender | |
528894831 | RVD rijksvoorlichtingsdienst | voor het grote publiek lijkt dit werk de communicatie van de rijksoverheid |
American Pagent ch. 13 Flashcards
Veritas Academy, part 1
541660311 | corrupt bargain of 1824 | Clay makes a supposed deal with Adams. Adams would be president if Clay would drop out; Clay garners support in the House of Representatives for Adams, when Adams wins he gives Clay the position of Secretary of State. | |
541660312 | Henry Clay | Senator who persuaded Congress to accept the Missouri Compromise, which admitted Maine into the Union as a free state, and Missouri as a slave state | |
541660313 | Andrew Jackson | A distinguished war hero from the Battle of New Orleans and the 7th president of the US | |
541660314 | John C. Calhoun | vice president under both John Quincy Adams and Andrew Jackson; he wrote Exposition and Protest and led the nullification fight in 1832 and 1833. As senator and vice president, he was the leading voice for southern states' rights from 1828 to 1850. | |
541660315 | John Q. Adams | The 6th president of the U.S.. He was not well liked because of the Corrupt Bargain of 1824. During his term, he mainly focused on the economy. | |
541660316 | Election of 1828 | Andrew Jackson defeats John Quincy Adams, 178 electoral college votes to 83 electoral college votes; marks the first success of the new national party system | |
541660317 | Spoils System | A system under Andrew Jackson in which political supporters would be rewarded with public office. | |
541660318 | Tariff of abominations | Name given to the 1828 tariff because of its serious negative impact on the South's economy, while benefiting Northern and Western industrial interests. Led to the nullification crisis. | |
541660319 | Nullification Crisis | Showdown between President Andrew Jackson and the South Carolina legislature, which declared the 1832 tariff null and void in the state and threatened secession if the federal gov. tried to collect duties. It was resolved by a compromise negotiated by Henry Clay in 1833. | |
541660320 | Compromise tariff of 1833 | Passed as a measure to resolve the nullification crisis, it provided that tariffs be lowered gradually, over a period of ten years, to 1816 levels. | |
541660321 | Force Bill | Passed by Congress alongside the Compromise Tariff, it authorized the president to use the military to collect federal tariff duties. | |
541660322 | Indian removal act | Ordered the removal of Indian Tribes still residing east of the Mississippi to newly established Indian territory west of Arkansas and Missouri. Tribes resisting eviction were forcibly removed by American forces, often after prolonged legal or military battles. | |
541660323 | Trail of Tears | The tragic journey of the cherokee people from their home land to indian territory between 1838 and 1839, thousands of cherokees died. | |
541660324 | Black hawk war | Series of clashes in Illinois and Wisconsin between American forces and Indian chief Black Hawk of the Sauk and Fox tribes, who unsuccessfully tried to reclaim territory lost under the 1830 Indian Removal Act. |
AP WORLD HISTORY - STUDY SET Flashcards
Aegean Art Flashcards
basic study guide to Aegean art
92955189 | ... | Bull Leaping Minoan c.1550-1450 BCE | ![]() |
92955190 | ... | Woman/Goddess with Snakes Minoan c. 1700-1550 BCE | ![]() |
92955191 | ... | Octopus Vase Minoan c. 1500-1450 BCE | |
92955192 | ... | Citadel at Mycenae Mycenaean c. 1600-12000 BCE | ![]() |
92955193 | ... | Lion Gate at Mycenae Mycenaean c. 1250 BCE | ![]() |
92955194 | ... | Palace at Knossos (arial view) Minoan c. 2000-1375 BCE | ![]() |
92955195 | ... | Seated Harp Player Cycladic c. 2800-2700 BCE | ![]() |
92955196 | ... | Flotilla Fresco Minoan c. 1650 BCE | |
92955197 | ... | Kamares Ware Jug Minoan c. 2000-1900 BCE | |
92955198 | ... | Harvester Vase Minoan c. 1650-1450 BCE | |
92955199 | ... | Bull's-Head Rhyton Minoan c. 1550-1450 BCE | |
92955200 | ... | Vapheio Cup Mycenaean c. 1650-1450 BCE | |
92955201 | ... | Mask of Agamemnon, funerary Mask Mycenaean c. 1600-1500 BCE | ![]() |
92955202 | ... | Dagger Blade with Lion Hunt Mycenaean c. 1550-1500 | |
92955203 | ... | Two Women and a Child Mycenaean c. 1400-1200 BCE | |
92955204 | ... | Warrior Vase Mycenaean c. 1300-1100 BCE | |
93349058 | ... | First Landscape at Knossos | ![]() |
93349059 | ... | Treasury of Atreus Mycenae Greece c. 1300-1250 BCE | ![]() |
93349060 | ... | Tholos tomb or Beehive tomb Mycenae Greece | ![]() |
Ancient Egyptian Flashcards
477610913 | Ancient Egypt | ![]() | |
477610914 | Early Dynastic Period | c. 3000 - 2600 BCE | |
477610915 | Palette of Narmer Early Dynastic Period 3000 - 2600 BCE Cairo, Egypt | ![]() | |
477610916 | canon of proportions | a set of ideal mathematical ratios in art based on measurements of the human body | |
477610917 | composite pose | combining different viewpoints within a single representation of of a subject | |
477610918 | Reconstruction of Djoser funerary complex | ![]() | |
477610919 | Step Pyramid of King Djoser, Early Dynastic Period 3000 - 2600 BCE Saqqara, Egypt | ![]() | |
477610920 | Old Kingdom | c. 2600 - 2200 BCE | |
477610921 | Great Pyramids at Giza Old Kingdom 2600 - 2200 BCE Egypt | ![]() | |
477610922 | Great Sphinx from the funerary complex of Khafre Old Kingdom 2600 - 2200 BCE Giza, Egypt | ![]() | |
477610923 | Khafre Old Kingdom 2600 - 2200 BCE Egypt | ![]() | |
477610924 | Menkaure and a Queen Old Kingdom 2600 - 2200 BCE Egypt | ![]() | |
477610925 | Seated Scribe Old Kingdom 2600 - 2200 BCE Saqqara, Egypt | ![]() | |
477610926 | Ti Watching a Hippopotamus Hunt Old Kingdom 2600 - 2200 BCE Saqqara, Egypt | ![]() | |
477610927 | New Kingdom | c. 1500 - 1100 BCE | |
477610928 | Reconstruction, Great Temple of Amun New Kingdom 1500 - 1100 BCE Karnak, Egypt | ![]() | |
477610929 | Papyriform and Bud Columns, Hypostyle Hall from the Great Temple of Amun New Kingdom 1500 - 1100 BCE Karnak, Egypt | ![]() | |
477610930 | Hatshepsut Kneeling New Kingdom 1500 - 1100 BCE | ![]() | |
477610931 | Funerary Temple of Queen Hatshepsut New Kingdom 1500 - 1100 BCE Deir El-Bahri, Egypt | ![]() | |
477610932 | Colossal Figure of Akhenaton New Kingdom 1500 - 1100 BCE | ![]() | |
477610933 | Akhenaten and His Family New Kingdom 1500 - 1100 BCE Deir El-Bahri, Egypt | ![]() | |
477610934 | Nefertiti New Kingdom 1500 - 1100 BCE | ![]() | |
477610935 | Inner Coffin of Tutankhamun New Kingdom 1500 - 1100 BCE | ![]() | |
477610936 | Funerary Mask of Tutankhamun New Kingdom 1500 - 1100 BCE Egypt | ![]() | |
477610937 | Temple of Ramses II New Kingdom 1500 - 1100 BCE Abu Simbel, Egypt | ![]() | |
477610938 | Queen Nefertari Making an Offering to Isis from the tomb of Nefertari New Kingdom 1500 - 1100 BCE Valley of the Queens, Egypt | ![]() | |
477610939 | Judgement of Hunefer Before Osiris from the Book of the Dead New Kingdom 1500 - 1100 BCE | ![]() | |
477610940 | hieratic scale | an artistic convention in which greater size indicates greater importance | |
477610941 | necropolis | a cemetery, lit. "city of the dead." | |
477610942 | mastaba | an ancient Egyptian mudbrick tomb with a rectangular base and sloping sides and flat roof | |
477610943 | step pyramid | a pyramid whose sides rise in a series of giant steps | |
477610944 | pyramid | a massive memorial with a square base and four triangular sides | |
477610945 | ka | the immortal human life force; soul | |
477610946 | pylon | monumental entrance to an ancient Egyptian temple | |
477610947 | valley temple | temples built along the Nile by in which funerary rituals would be carried out | |
477610948 | hypostyle hall | a hall with a roof supported by columns | |
477610949 | post and lintel construction | a system of building in which a crosspiece, or lintel, spans the distance between two posts. | |
477610950 | celerestory | the upper part of a church consisting of windows | |
477610951 | sarcophagus | a stone coffin usually bearing sculpture or inscriptions |
Prehistoric Art Flashcards
467758748 | Paleolithic | The "Old" stone age, during which humankind produced the first sculptures and paints 30,000-9000 BC | |
467758749 | Neolithic | The "new" stone age early development of villages, agriculture, animal domestication, tools. 9000-1500 BC | |
467758750 | Freestanding sculpture | Freestanding figures, carved or modeled in three dimensions. | |
467758751 | Relief sculpture | sculpture that projects from a flat background | |
467758752 | Terracotta | hard-baked clay, used for sculpture and as a building material. It can be glazed or painted | |
467758753 | Naturalism | the style of printed or sculptured representation based on close observation of the natural worlds that was at the core of classical tradition | |
467758754 | Henge | an arrangement of megalithic stones in a circle, often surrounded by a ditch | |
467758755 | Stratified society | People grouped according to economic or social class; characterized by the unequal distribution of wealth, power, and prestige. | |
467758756 | Composite view | (twisted perspective) a convention of representation in which part of a figure is shown in a profile and another part of the same figure is shown frontally | |
467758757 | Menhir | a tall upright megalith | |
467758758 | Trilithons | a pair of monoliths topped w/ a lintel; found in a megalithic structures | |
467758759 | Mortise and tenon joint | a projection on the end of a piece of wood to form a joint that is corresponding hole (mortise) in another piece of wood to form a joint | ![]() |
467758760 | Megalith | "great stone."A large, roughly hewn stone used in the construction of monumental prehistoric structures. | |
467758761 | Dolmen | prehistoric structure or tomb of unhewn stones | |
467758762 | Post and lintel | a structure consisting of vertical beams (posts) supporting a horizontal beam (lintel) | |
467758763 | Prehistoric | belonging to or existing in times before recorded history | |
467758765 | Incise | make an incision into by carving or cutting | |
477330407 | cromlech | a circle of megaliths | |
467758766 | Burin | A pointed tool used for engraving or incising. | |
467758767 | Hall of Bulls | -Paleolithic -Lascaux, France -common ground line (horizontal base of compostion) for all animals -twisted perspective (can see both of bulls horns) -many different artists created -one of the largest/most spectacular examples of cave art | ![]() |
467758768 | Venus of Willendorf | Fertility symbol, ancient sculpture of nude woman in exaggerated form, discovered in Willendorf, Austria, Paleolithic Art, limestone | ![]() |
467758769 | Two Bison | Reliefs in the cave at Le Tuc d'Audoubert -Paleolithic -Clay -relief sculptures of two bison, among the largest Paleolithic sculptures known, built out of clay by the artist's hands. | ![]() |
467758770 | Bison with turned head | Paleolithic. La Madeleine France. -Carved from a reindeer horn -Stylized -Profile -Incised | ![]() |
467758771 | Well Scene | Rhinoceros, wounded man, and disemboweled bison -Paleolithic -Lascaux, France, -earliest depiction of man -earliest example of narrative art using human and animal forms discovered | ![]() |
467758774 | Stonehenge | -Neolithic -Salisbury Plain, Elgnad -testimony to the rapidly developing intellectual powers of Neolithic humans; also amazing physical achievement. -post and lintel structure | ![]() |
467758775 | Landscape with volcanic eruption | wall painting, Çatal Hüyük (Turkey) Neolithic Represents Çatal Hüyük during a volcanic eruption, with volcano in profile and the city in an aerial view. | ![]() |
467758776 | Reconstruction of Çatal Hüyük | Çatal Hüyük, Turkey, Neolithic Art | ![]() |
467758777 | Great Stone Tower | Built into the settlement wall, Jericho, Israel/Palestine, Neolithic Art | ![]() |
AP Biology Chapter 1 Flashcards
462452196 | Evolution | Descent with modification; the idea that living species are descendants of ancestral species that were different from the present-day ones; also defined more narrowly as the change in the genetic composition of a population from generation to generation | |
462452197 | Biology | The scientific study of life | |
462452198 | Emergent Properties | New properties that arise with each step upward in the hierarchy of life, owing to the arrangement and interactions of parts as complexity increases | |
462452199 | Systems Biology | An approach to studying biology that aims to model the dynamic behavior of whole biological systems based on a study of the interactions among the system's parts | |
462452200 | Global Climate Change | Increase in temperature and change in weather patterns all around the planet, due mostly to increasing atmospheric CO2 levels from the burning of fossil fuels. The increase in temperature, called global warming, is a major aspect of global climate change | |
462452201 | Eukaryotic Cell | A type of cell with a membrane-enclosed nucleus and membrane-enclosed organelles. Organisms with eukaryotic cells (protists, plants, fungi, and animals) are called eukaryotes | |
462452202 | Prokaryotic Cell | A type of cell lacking a membrane-enclosed nucleus and membrane-enclosed organelles. Organisms with prokaryotic cells (bacteria and archaea) are called prokaryotes | |
462452203 | DNA | Deoxyribonucleic acid. A double-stranded, helical nucleic acid molecule, consisting of nucleotide monomers with a deoxyribose sugar and the nitrogenous bases adenine (A), cytosine (C), guanine (G), and thymine (T). Capable of being replicated and determining the inherited structure of a cell's protein | |
462452204 | Gene | A discrete unit of hereditary information consisting of a specific nucleotide sequence in DNA (or RNA, in some viruses) | |
462452205 | Gene Expression | The process by which information encoded in DNA directs the synthesis of proteins or, in some cases, RNAs that are not translated into proteins and instead function as RNAs | |
462452206 | Genome | The genetic material of an organism or virus; the complete complement of an organism's or virus's genes along with its noncoding nucleic acid sequences | |
462452207 | Genomics | The study of whole sets of genes and their interactions within a species, as well as genome comparisons between species | |
462452208 | Bioinformatics | The use of computers, software, and mathematical models to process and integrate biological information from large data sets | |
462452209 | Negative Feedback | A form of regulation in which accumulation of an end product of a process slows the process; in physiology, a primary mechanism of homeostasis, whereby a change in a variable triggers a response that counteracts the initial change | |
462452210 | Positive Feedback | A form of regulation in which an end product of a process speeds up that process; in physiology, a control mechanism in which a change in a variable triggers a response that reinforces or amplifies the change | |
462452211 | Domain Bacteria | One of two prokaryotic domains, the other being Archaea | |
462452212 | Domain Archaea | One of two prokaryotic domains, the other being bacteria | |
462452213 | Domain Eukarya | The domain that includes all eukaryotic organisms | |
462452214 | Natural Selection | a process in which individuals that have certain inherited traits tend to survive and reproduce at higher rates than other individuals because of those traits | |
462452215 | Science | An approach to understanding the natural world | |
462452216 | Inquiry | The search for information and explanation, often focusing on specific questions | |
462452217 | Data | Recorded observations | |
462452218 | Inductive Reasoning | A type of logic in which generalizations are based on a large number of specific observations | |
462452219 | Hypothesis | A testable explanation for a set of observations based on the available data and guided by inductive reasoning. A hypothesis is narrower in scope than a theory | |
462452220 | Deductive Reasoning | a type of logic in which specific results are predicted from a general premise | |
462452221 | Controlled Experiment | An experiment in which an experimental group is compared with a control group that varies only in the factor being tested | |
462452222 | Theory | an explanation that is broader in scope than a hypothesis, generates new hypotheses, and is supported by a large body of evidence | |
462452223 | Model Organism | a particular species chosen for research into broad biological principles because it is representative of a larger group and usually easy to grow in a lab | |
462452224 | Technology | The application of scientific knowledge for a specific purpose, often involving industry or commerce but also including uses in basic research |
Pages
Need Help?
We hope your visit has been a productive one. If you're having any problems, or would like to give some feedback, we'd love to hear from you.
For general help, questions, and suggestions, try our dedicated support forums.
If you need to contact the Course-Notes.Org web experience team, please use our contact form.
Need Notes?
While we strive to provide the most comprehensive notes for as many high school textbooks as possible, there are certainly going to be some that we miss. Drop us a note and let us know which textbooks you need. Be sure to include which edition of the textbook you are using! If we see enough demand, we'll do whatever we can to get those notes up on the site for you!