scientific method Crossword Puzzles

Plants 2018-08-15

Plants crossword puzzle
Across
  1. the part of a plant that grows into a fruit
  2. when creatures such as bees take pollen from one flower to another
  3. the baby plant inside a seed
  4. the part of the flower that the pollen is attached to
  5. the part of a plant that sucks up water and nutrients
  6. a pollinator
  7. the second step of the scientific method
  8. the food source for a seed
  9. where we would find a plant's seeds
  10. what plants turn into food
Down
  1. when a seed first starts to grow
  2. the yellow dust carried between flowers
  3. the name of the process by which plant seeds are spread
  4. a seed needs this to germinate
  5. the part of a plant that carries nutrients from the soil to the leaves
  6. what we call a young plant
  7. the kind of plants we are growing from our seeds

17 Clues: a pollinatorwhat we call a young plantthe food source for a seedwhat plants turn into foodthe baby plant inside a seeda seed needs this to germinatewhen a seed first starts to growwhere we would find a plant's seedsthe yellow dust carried between flowersthe second step of the scientific methodthe part of a plant that grows into a fruit...

Islam Unit Review 2021-11-29

Islam Unit Review crossword puzzle
Across
  1. The Muslim world
  2. Main text in Islam.
  3. The successors of Muhammad that run his kingdom when he dies.
  4. Arabic word means "to submit".
  5. Believed Caliph should be chosen by the leaders of the community
  6. Invented the early Scientific Method
  7. built in 763, the center of the Abbasid Caliphate and the Golden Age of Islam.
  8. Empire The Empire made up of a group of Turks who conquered Constantinople
  9. believed the Caliph should be Ali, or one of Muhammad's descendants.
  10. Engineer, mathematician, philosopher, and designed Medieval Robots.
Down
  1. The battle in 732 that stops the Caliphate from entering France.
  2. Language of the territory where Islam began. Unifies the religion.
  3. The Prophet who received revelations from God. The founder of Islam.
  4. Explorer from Tangier who saw the whole of the Dar al-Islam.
  5. A religion that believes in 1 god.
  6. Arabic word for God
  7. Pilgrimage to Mecca

17 Clues: The Muslim worldMain text in Islam.Arabic word for GodPilgrimage to MeccaArabic word means "to submit".A religion that believes in 1 god.Invented the early Scientific MethodExplorer from Tangier who saw the whole of the Dar al-Islam.The successors of Muhammad that run his kingdom when he dies....

Module 1 2024-09-19

Module 1 crossword puzzle
Across
  1. Absolute Temperature Scale
  2. A Hypothesis That Has Been Confirmed By Experimental Data
  3. An Indication Of The Scale On The Measuring Device That Was Used
  4. The Metric Unit Of Length
  5. A Temperature Scale Where Freezing Is 212 Degrees
  6. A Metric Unit Of Volume
  7. A Temperature Scale Where Freezing Is 0 Degrees
  8. An Indication Of How Close A Measurement Is To The True Value
  9. A Method Of Conversion Using The Multiplication Of Fractions
  10. The Metric Unit Of Mass
Down
  1. The Curved Surface Of A Liquid
  2. The Metric Unit Of Force
  3. Anything That Has Mass And Takes Up Space
  4. A Measure Of The Amount Of Matter In An Object
  5. An Educated Guess That Attempts To Explain Observations
  6. A Description Of The Natural World That Has Been Confirmed By An Enormous Amount Of Data
  7. The Preferred Measurement System In Science

17 Clues: A Metric Unit Of VolumeThe Metric Unit Of MassThe Metric Unit Of ForceThe Metric Unit Of LengthAbsolute Temperature ScaleThe Curved Surface Of A LiquidAnything That Has Mass And Takes Up SpaceThe Preferred Measurement System In ScienceA Measure Of The Amount Of Matter In An ObjectA Temperature Scale Where Freezing Is 0 Degrees...

Unit 5 APES Review 2024-02-06

Unit 5 APES Review crossword puzzle
Across
  1. a fertile soil with high organic content and even mix of sediments
  2. a chemical designed to kill or stop grown of fungus/mildew
  3. a type of fish that wasn't meant to be caught
  4. a method of fishing where fish are hooked one by one
  5. a product that comes from a chicken, meat or eggs
  6. the space between sediments in soil
  7. concentrated animal feeding operation, a factory farming method
  8. a method of growing food without synthesic fertilizers or pesticides
  9. the main gas of concern in climate change
  10. a chemical designed to kill plants or weeds
  11. a method of doing things so that the event can keep happening
  12. a chemical to control or kill something that is harmful to crops/humans
  13. a term for measuring how much of a crop was usable
  14. a measure of your environmental impact
  15. a product that comes from cows, meat or milk
Down
  1. a method of crop growing where only one type of food is grown
  2. a method of reducing a pest's impact
  3. a method of fishing where a net is dragged through the water
  4. the raising of worms to digest plant waste and provide fertilizer
  5. a method of pest control to stop it from happening at all
  6. various pieces of rock found in soil
  7. a method of holistic farming where the ecosystem is balanced
  8. the three letter term for the most common chemicals added to soil as fertilizer
  9. a way of reducing the severity or impact of something
  10. a method of changing the plants grown in a field each year so the soil stays healthy
  11. a living animal raised for food
  12. the production of food through plants and animals

27 Clues: a living animal raised for foodthe space between sediments in soila method of reducing a pest's impactvarious pieces of rock found in soila measure of your environmental impactthe main gas of concern in climate changea chemical designed to kill plants or weedsa product that comes from cows, meat or milka type of fish that wasn't meant to be caught...

JAVA programming 2025-09-18

JAVA programming crossword puzzle
Across
  1. Java property meaning compiled bytecode runs on any hardware via the JVM (“write once, run anywhere”).
  2. String method that divides text into an array based on a regular expression
  3. Method that returns an object’s string representation.
  4. Object method once called by the GC before collection (deprecated and unpredictable).
  5. Keyword a class uses to promise it provides the methods of an interface.
  6. Method to pre-allocate internal storage for builders/buffers.
  7. Method that adds characters/objects to a StringBuilder or StringBuffer.
  8. Object used to traverse a collection via hasNext() and next()
  9. Reference type that declares method signatures (a contract for classes).
Down
  1. OOPS concept where one interface or method name works with many object types/behaviors.
  2. Modifier for a class/method that declares behaviour without providing full implementation.
  3. Class representing an independent path of execution
  4. Collection type that stores unique elements (no duplicates).
  5. Mutable character sequence optimized for fast, single-threaded concatenation.
  6. Utility that turns an array or varargs into a fixed-size List.
  7. Method to request a thread’s scheduling importance.
  8. Runtime error thrown when an object is cast to an incompatible type.
  9. Functional interface with a run() method representing a unit of work for a thread.
  10. Namespace that groups related classes and interfaces and controls visibility.
  11. Thread-safe mutable character sequence whose methods are synchronized.
  12. Root superclass for all exceptions and errors that can be thrown.
  13. Utility class that parses primitives and tokens from input streams or strings.
  14. Marker interface that enables an object to be converted to a byte stream.
  15. Block that always runs after try/catch, whether an exception occurred or not.

24 Clues: Class representing an independent path of executionMethod to request a thread’s scheduling importance.Method that returns an object’s string representation.Collection type that stores unique elements (no duplicates).Method to pre-allocate internal storage for builders/buffers.Object used to traverse a collection via hasNext() and next()...

Vocab 10 Fossils 2024-02-21

Vocab 10 Fossils crossword puzzle
Across
  1. _________fossil - a fossil known to have lived in a particular geologic age that can be used to date the rock layer in which it is found
  2. The preserved remains or traces of an organism that lived in the past
  3. A type of fossil that forms when a mold becomes filled in with minerals that then harden
  4. The process by which minerals replace parts of an organism.
Down
  1. A scientist who studies fossils
  2. the process by which organic matter exposed to minerals over a long period is turned into a stony substance.
  3. _________dating - a scientific method used to determine the age of an artifact
  4. _________dating - Method of determining the age of a fossil by comparing its placement with that of fossils in other layers of rock
  5. _________fossil - a fossil of a footprint, trail, burrow, or other trace of an animal rather than of the animal itself.
  6. The impression of an organism in a rock

10 Clues: A scientist who studies fossilsThe impression of an organism in a rockThe process by which minerals replace parts of an organism.The preserved remains or traces of an organism that lived in the past_________dating - a scientific method used to determine the age of an artifact...

Insect Terminology Crossword 2023-12-29

Insect Terminology Crossword crossword puzzle
Across
  1. The layman's term for the juvenile stage of a moth
  2. The scientific term which refers to a winged ant or winged termite
  3. The scientific term for the "resting" stage in complete metamorphosis
  4. The scientific term for the egg case of a cockroach
  5. A term used for the "bumps" on the waist of an ant
  6. The segment directly behind the head, on the upper portion of the thorax
  7. The scientific term used for the juvenile stage of a cockroach
  8. Sensory organ used to detect odors
Down
  1. The paired appendages at the rear end of cockroaches and earwigs
  2. The body region associated with legs and wings
  3. The layman's term for the juvenile stage of a beetle
  4. Termites are one of the few insects which can digest this material (hint: a component of wood)
  5. The scientific term used for the juvenile stage of a wasp
  6. The body region associated with mating and digestion
  7. Most winged insects have this number of wings
  8. Type of mouthpart that can only soak up liquids
  9. The layman's term for the juvenile stage of a fly

17 Clues: Sensory organ used to detect odorsMost winged insects have this number of wingsThe body region associated with legs and wingsType of mouthpart that can only soak up liquidsThe layman's term for the juvenile stage of a flyThe layman's term for the juvenile stage of a mothA term used for the "bumps" on the waist of an ant...

CS.11.01 2023-09-07

CS.11.01 crossword puzzle
Across
  1. A method in the String class that converts all of the characters to lowercase
  2. %
  3. Parameters that are declared in a method
  4. Converting a char to an int, for example
  5. A method in the Scanner class that will collect an int from keyboard input
  6. int age; for example
  7. What data type represents text?
  8. Symbols that indicate the start and end of a method, for example
  9. age = 17; for example
  10. A value modulo 10 will tell us the
  11. --
  12. What data type consists of a letter with a single quotation mark on either side?
  13. A method in the String class that returns whether or not a String contains a substring
  14. What "\n" represents
  15. A value modulo 2 will tell us whether the value is
  16. Symbols that indicate that something is a method
Down
  1. Parameters that are passed to a method when it is called
  2. A way of joining a String and another data type together to create a new String
  3. A method in the String class that returns a substring of a String
  4. +=, -=, *=, /=, for example
  5. A method in the String class that returns the character at a specific index
  6. What type of data is the String data type?
  7. What data type can have a value of -1, 0, or 1 assigned to it?
  8. A method in the Integer class that can take a String and convert it to an int
  9. What data type can have a value of either true or false?
  10. A method in the String class that is overloaded
  11. "Sad Keanu", for example
  12. A method in the String class that returns the length of a String
  13. What class in Java can be used to collect input from what a user types on the keyboard?
  14. What type of data are the following data types? Int, char, boolean, and double.
  15. Converting a double to an int, for example
  16. ++
  17. A method in the String class that converts all of the characters to uppercase
  18. Converting one data type to another data type

34 Clues: %++--int age; for exampleWhat "\n" representsage = 17; for example"Sad Keanu", for example+=, -=, *=, /=, for exampleWhat data type represents text?A value modulo 10 will tell us theParameters that are declared in a methodConverting a char to an int, for exampleWhat type of data is the String data type?Converting a double to an int, for example...

pychology 2025-10-23

pychology crossword puzzle
Across
  1. An early psychological approach focusing on how mental processes help individuals adapt to their environment.
  2. sample, A subset of a population that accurately reflects the characteristics of the larger group.
  3. perspective, A broad term referring to various approaches used to understand behavior and mental processes.
  4. perspective, Same as behaviorism, focusing on observable behavior and learning through conditioning
  5. A well-substantiated explanation of some aspect of the natural world, based on evidence.
  6. study, An in-depth analysis of an individual or group to explore psychological phenomena.
  7. perspective, The study of how natural selection and adaptation influence behavior and mental processes.
  8. perspective, An approach emphasizing personal growth, free will, and the inherent goodness of people.
  9. perspective, A focus on strengths, well-being, and factors that contribute to human flourishing.
  10. psychology, A perspective emphasizing that people perceive whole patterns or configurations, not just individual components.
  11. perspective, An approach examining how biological processes, such as brain function and genetics, influence behavior.
Down
  1. perspective, The study of mental processes like thinking, memory, problem-solving, and language.
  2. The scientific study of behavior and mental processes.
  3. method, A systematic process for investigating questions through observation, experimentation, and analysis.
  4. A perspective that focuses on observable behaviors and the ways they are learned or conditioned.
  5. A testable prediction about the relationship between two or more variables.

16 Clues: The scientific study of behavior and mental processes.A testable prediction about the relationship between two or more variables.A well-substantiated explanation of some aspect of the natural world, based on evidence.study, An in-depth analysis of an individual or group to explore psychological phenomena....

psychology 2025-10-23

psychology crossword puzzle
Across
  1. An early psychological approach focusing on how mental processes help individuals adapt to their environment.
  2. sample, A subset of a population that accurately reflects the characteristics of the larger group.
  3. perspective, A broad term referring to various approaches used to understand behavior and mental processes.
  4. perspective, Same as behaviorism, focusing on observable behavior and learning through conditioning
  5. A well-substantiated explanation of some aspect of the natural world, based on evidence.
  6. study, An in-depth analysis of an individual or group to explore psychological phenomena.
  7. perspective, The study of how natural selection and adaptation influence behavior and mental processes.
  8. perspective, An approach emphasizing personal growth, free will, and the inherent goodness of people.
  9. perspective, A focus on strengths, well-being, and factors that contribute to human flourishing.
  10. psychology, A perspective emphasizing that people perceive whole patterns or configurations, not just individual components.
  11. perspective, An approach examining how biological processes, such as brain function and genetics, influence behavior.
Down
  1. perspective, The study of mental processes like thinking, memory, problem-solving, and language.
  2. The scientific study of behavior and mental processes.
  3. method, A systematic process for investigating questions through observation, experimentation, and analysis.
  4. A perspective that focuses on observable behaviors and the ways they are learned or conditioned.
  5. A testable prediction about the relationship between two or more variables.

16 Clues: The scientific study of behavior and mental processes.A testable prediction about the relationship between two or more variables.A well-substantiated explanation of some aspect of the natural world, based on evidence.study, An in-depth analysis of an individual or group to explore psychological phenomena....

law revision 2026-03-27

law revision crossword puzzle
Across
  1. place for advice
  2. breach 2
  3. damages with no economic value
  4. case valued at <£10000
  5. damage 1 case
  6. duty of care case
  7. method of funding
  8. method of adr with a mediator
  9. method of funding
  10. breach 1 case
Down
  1. case valued over £100000
  2. informal method of adr
  3. method of adr with conciliator
  4. damages with an economic value
  5. case valued at £10000-£25000
  6. method of adr with an arbitrator
  7. damage 2 case
  8. case valued at £25000-£100000

18 Clues: breach 2damage 2 casedamage 1 casebreach 1 caseplace for adviceduty of care casemethod of fundingmethod of fundinginformal method of adrcase valued at <£10000case valued over £100000case valued at £10000-£25000case valued at £25000-£100000method of adr with a mediatormethod of adr with conciliatordamages with no economic value...

DNA sequencing methods 2017-07-02

DNA sequencing methods crossword puzzle
Across
  1. _____________ chemical is used to cleave the modified nucleotides in the DNA strand in Chemical method of DNA sequencing
  2. _________ chemical is used to modify ‘guanine and adenine’ nucleotides in the DNA strand in Chemical method of DNA sequencing
  3. _______ enzyme is used to add the radioactive labelled 32P to the DNA strand in Chemical method of DNA sequencing
  4. _________ chemical is used along with hydrazine to modify ‘cytosine’ nucleotides in the DNA strand in Chemical method of DNA sequencing
  5. ________ method of sequencing is otherwise called as chain termination method
  6. ___________ sequence is the original sequence order of nucleotides in Sanger method of sequencing
  7. _________ film is used to capture the signals from the polyacrylamide gel to read the order of nucleotides in the DNA sequencing methods
  8. ___________ is used to terminate the chain elongation in Sanger method of sequencing
Down
  1. _________ chemical is used to modify ‘cytosine and thymine’ nucleotides in the DNA strand in Chemical method of DNA sequencing
  2. __________ enzyme is used to remove terminal phosphate from the DNA strand in Chemical method of DNA sequencing
  3. __________ is radioactively labelled in Sanger method of sequencing
  4. ____________ method of sequencing is otherwise called as chemical method
  5. ___________________ is applying techniques to know the order of nucleotide sequences of either DNA or RNA
  6. _________ chemical is used to modify ‘guanine’ nucleotides in the DNA strand in Chemical method of DNA sequencing
  7. Identification of ____________ nucleotide is a drawback of Chemical method of DNA sequencing

15 Clues: __________ is radioactively labelled in Sanger method of sequencing____________ method of sequencing is otherwise called as chemical method________ method of sequencing is otherwise called as chain termination method___________ is used to terminate the chain elongation in Sanger method of sequencing...

Midterm Post-task #1 2023-03-27

Midterm Post-task #1 crossword puzzle
Across
  1. example of this plastic resin embedding is MMA and GMA
  2. supplied as a 40% aqeous solution
  3. ____ acid weak and slow decalcifying agent
  4. Diethylene Dioxide a.k.a ____
  5. fluid for early degenerative processes and tissue necrosis
  6. alcohol for blood, tissue films and smears
  7. ___ wax most commonly used infiltration agent and method
  8. celloidin method that uses 70% alcohol for storage
  9. Consist of 2 L-shaped strips of heavy brass or meta
  10. one method of infiltration
  11. excellent for nuclear structures
  12. alcohol recommended for plant and animal micro techniques
  13. Zenker’s formol a.k.a. ____ fluid
  14. fixative used for acid mucopolysaccharide
  15. prolonged storage in formalin remedy in 10% _______
  16. the most rapid method of decalcification is ____ method
  17. fixatives used to preserve parts of the cells
  18. Can produce perfect blocks even without trimming
  19. next to fixation is ____
  20. collodion is soluble in alcohol and ____
  21. paraffin wax infiltration method is not suited for ___ tissues
  22. Manual method of paraffin wax is carried out using
  23. substitute to paraffin wax used for eye specimen
  24. for teeth and small pieces of bones
  25. water soluble wax for enzyme histochemistry
  26. most commonly used, double purpose
  27. Formol Corrosive a.k.a. formol _____
  28. Low viscosity nitrocellulose has tendencies to _____
  29. it is used at ice cold temperatures
Down
  1. Most reliable and most accurate method for testing of completeness of decalcification
  2. Celloidin method that uses Gilson’s mixture for storage
  3. most rapid method of paraffin wax
  4. CELLOIDIN INFILTRATION METHOD a.k.a
  5. ak.a MOLLER’S FLUID
  6. at what temperature fixation is carried out
  7. Fixation physical method not usually carried out in histopath
  8. substitute to paraffin wax used for bones and brain specimen
  9. Prolonged exposure to benzene can damage BM leading to ____ anemia
  10. Ethylene Glycol Monoethyl Ether a.k.a ____
  11. ____ acids not for urgent biopsies
  12. one method for removing formalin pigments
  13. ____ oil Recommended for clearing embryos, insects and other very delicate specimens
  14. Similar to paraplast
  15. ____ tissues decalcification may be carried out for 6-8 weeks
  16. accelerate process
  17. in plastic ice trays smear inner molds with ____ first for easy removal of blocks
  18. Not as fast as Xylene and Benzene
  19. plastic resins embedding with example such is bisphenol
  20. Routine clearing agent, fast acting
  21. alcohol for fixing wet and dry smears
  22. very good anticoagulant, it is a potent anticoagulant
  23. method of paraffin wax Requires the use of AUTOTECHNICON
  24. 10% ____ routine tissue fixative
  25. May be used for dense tissues like uterus
  26. most rapid fixative
  27. For preserving bone marrow
  28. recommended for fixation of embryos and pituitary
  29. 4%____ Tissue Softener
  30. Fixation physical method that is not common
  31. ____ acid highly corrosive on the skin

60 Clues: accelerate processak.a MOLLER’S FLUIDmost rapid fixativeSimilar to paraplast4%____ Tissue Softenernext to fixation is ____one method of infiltrationFor preserving bone marrowDiethylene Dioxide a.k.a ____excellent for nuclear structures10% ____ routine tissue fixativemost rapid method of paraffin waxsupplied as a 40% aqeous solution...

Scientific Revolution Power Words 2022-12-01

Scientific Revolution Power Words crossword puzzle
Across
  1. a belief or theory that opinions and actions should be based on reason and knowledge
  2. medieval forerunner of chemistry, based on the supposed transformation of matter.
  3. Revolution- a period of drastic change in scientific thought
Down
  1. theory- a superseded description of the Universe with Earth at the center.
  2. supposition or a system of ideas intended to explain something
  3. method- method for acquiring knowledge that has characterized the development of science
  4. theory- the astronomical model in which the Earth and planets revolve around the Sun at the center of the universe.
  5. a supposition or proposed explanation made on the basis of limited evidence as a starting point for further investigation.

8 Clues: Revolution- a period of drastic change in scientific thoughtsupposition or a system of ideas intended to explain somethingtheory- a superseded description of the Universe with Earth at the center.medieval forerunner of chemistry, based on the supposed transformation of matter....

Scientific Vocab Week 1 2025-10-29

Scientific Vocab Week 1 crossword puzzle
Across
  1. A well-supported explanation of natural phenomena based on evidence.
  2. Information or data that supports a scientific explanation or claim.
  3. The process where better-adapted organisms survive and reproduce more successfully.
  4. The process by which species of organisms change over time through natural selection.
  5. A scientific test used to support or refute a hypothesis.
  6. A testable prediction based on prior knowledge and observation.
  7. A trait that helps an organism survive and reproduce in its environment.
  8. Differences in traits between individuals of a species.
Down
  1. Facts and statistics collected for analysis and reference.
  2. A systematic process of examining something to discover facts or information.
  3. Information gathered using the senses or scientific instruments.
  4. The preserved remains or traces of an organism from the distant past.
  5. A group of organisms that can interbreed and produce fertile offspring.
  6. The process of examining data to find patterns or draw conclusions.
  7. A simplified representation used to explain or predict scientific phenomena.
  8. The standard used for comparison in a scientific experiment.
  9. Relating to nature or not made by humans; part of natural processes.
  10. A factor that can change in an experiment and affect the results.

18 Clues: Differences in traits between individuals of a species.A scientific test used to support or refute a hypothesis.Facts and statistics collected for analysis and reference.The standard used for comparison in a scientific experiment.A testable prediction based on prior knowledge and observation....

Classification of Life 2025-09-05

Classification of Life crossword puzzle
Across
  1. perspective – Viewing the world through God’s Word, recognizing truths like humans being created in God’s image.
  2. – The largest groups used in classification, containing broad categories of life.
  3. – Microscopic organisms that can be helpful or harmful.
  4. Classification System – A scientific framework for naming and grouping organisms, often influenced by evolutionary assumptions.
  5. names – The universal names for organisms, written in Latin.
  6. – A kingdom that includes algae and protozoans.
  7. – The animal kingdom, organisms that must consume food for energy.
  8. language – A language used worldwide, such as Latin in scientific names.
  9. – The second part of a scientific name; identifies a specific organism.
  10. assumptions – The belief that organisms share common ancestors, which influences classification.
Down
  1. – The process of grouping living things based on shared characteristics.
  2. – Biblical categories of organisms that reproduce “after their kind.”
  3. nomenclature – The system of giving each organism a two-part name (genus + species).
  4. – The first part of a scientific name; groups similar organisms.
  5. – The plant kingdom, organisms that make their own food by photosynthesis.
  6. Mandate – God’s command in Genesis 1:28 for humans to rule over the earth and care for creation.
  7. – A kingdom including mushrooms, molds, and yeasts.
  8. – Microscopic organisms often found in extreme environments.

18 Clues: – A kingdom that includes algae and protozoans.– A kingdom including mushrooms, molds, and yeasts.– Microscopic organisms that can be helpful or harmful.names – The universal names for organisms, written in Latin.– Microscopic organisms often found in extreme environments.– The first part of a scientific name; groups similar organisms....

STEM Crossword 2020-09-04

STEM Crossword crossword puzzle
Across
  1. The science of patterns and order and the study of measurement, properties, and the relationships of those qualities: using numbers and symbols
  2. The Transmission of information through a common system of symbols, signs, behavior, speech, writing, or signals.
  3. The study of our natural world through observation, identification, description, experimental investigation and theoretical explanations.
  4. The surroundings in which a person, animal, or plant lives.
  5. An improvement of an existing technological product, system, or method of doing something.
  6. The ability to do work. This is one of the basic resources used by a technological system.
Down
  1. The process of making a raw material into a finished product, especially in large quantities.
  2. A group of interacting, interrelated, or interdependent elements or parts that function together as a whole to accomplish a goal.
  3. machinery and equipment developed from the application of scientific knowledge.
  4. A new product, system or process that has never existed before, created by study and experimentation.
  5. The manipulation of living organisms or their components to produce useful, usually commercial products.
  6. Using technology and scientific knowledge to solve practical problems.
  7. The science and technology of building devices, such as electronic circuits, from single atoms and molecules.

13 Clues: The surroundings in which a person, animal, or plant lives.Using technology and scientific knowledge to solve practical problems.machinery and equipment developed from the application of scientific knowledge.An improvement of an existing technological product, system, or method of doing something....

Ancient MN Vocab 2022-11-04

Ancient MN Vocab crossword puzzle
Across
  1. The way someone looks at something
  2. a method of procedure that has characterized natural science since the 17th century, consisting in systematic observation, measurement, and experiment, and the formulation, testing, and modification of hypotheses.
  3. a person who studies human history and prehistory through the excavation of sites and the analysis of artifacts and other physical remains
Down
  1. the collection and study of historical information using sound recordings of interviews with people having personal knowledge of past events
  2. ancient carvings
  3. an object made by a human being, typically an item of cultural or historical interest
  4. someone who is of older age

7 Clues: ancient carvingssomeone who is of older ageThe way someone looks at somethingan object made by a human being, typically an item of cultural or historical interesta person who studies human history and prehistory through the excavation of sites and the analysis of artifacts and other physical remains...

Scientific Terms 2016-11-01

Scientific Terms crossword puzzle
Across
  1. -an aton or molecule having an electric charge
  2. -outermost electron
  3. -negatively charged ion
  4. -NaCl
  5. -formula that represents the composition of a substance by using chemical symbols
  6. -atoms must possess an 8 valence electrons to be stable
  7. -positively charged ion
Down
  1. -energy needed to remove an electron from the neutral atom
  2. -formula written in the lowest integer subscripts
  3. -mass in grams of one mole substance
  4. -compounds which contain 3 different elements
  5. -transfer of electrons from one atom to another
  6. -molecular weightof a substance expressed in grams
  7. -this type of bond exists between non-metals
  8. -third type of chemical bonding

15 Clues: -NaCl-outermost electron-negatively charged ion-positively charged ion-third type of chemical bonding-mass in grams of one mole substance-this type of bond exists between non-metals-compounds which contain 3 different elements-an aton or molecule having an electric charge-transfer of electrons from one atom to another...

Scientific Keywords 2016-04-28

Scientific Keywords crossword puzzle
Across
  1. A series of monomers joined together
  2. A natural polymer used for clothing
  3. The one you change (two words)
  4. You can do the same investigation and get the same results
  5. A material which is man made
  6. A statement indicating the relationship between variables
  7. Of both heat and electricity
  8. What you think will actually happen
Down
  1. How close your results are to one another
  2. Bends easily
  3. A compound made up of only hydrogen and carbon
  4. Distinctive aspects of a material which are used to decide its uses e.g. flexibility
  5. The amount of tension a material can hold (two words)
  6. The average of your results
  7. Metals have a high one

15 Clues: Bends easilyMetals have a high oneThe average of your resultsA material which is man madeOf both heat and electricityThe one you change (two words)A natural polymer used for clothingWhat you think will actually happenA series of monomers joined togetherHow close your results are to one anotherA compound made up of only hydrogen and carbon...

Scientific Crossword 2015-05-05

Scientific Crossword crossword puzzle
Across
  1. Ions with a positive charge
  2. Chemical elements in order of atomic number
  3. An atom with a net electric charge due to loss or gain of electrons
  4. Made up entirely of one type of atom
  5. A branch of physical science
  6. No electric charge
Down
  1. Ions with a negative charge
  2. Emission of ionising radiation or particles
  3. Made from different elements
  4. Has a charge of negative electricity
  5. When reactants contact each other
  6. Has a charge of positive electricity
  7. Made up of two or more substances
  8. Surronds the nucleus of an atom
  9. Made up of protons, neutrons, electrons

15 Clues: No electric chargeIons with a negative chargeIons with a positive chargeMade from different elementsA branch of physical scienceSurronds the nucleus of an atomWhen reactants contact each otherMade up of two or more substancesHas a charge of negative electricityHas a charge of positive electricityMade up entirely of one type of atom...

Scientific Revolution 2022-01-13

Scientific Revolution crossword puzzle
Across
  1. a religious place which had an oppositon to Galileo Galilei and arrested him.
  2. the conviction that the laws of nature are fathomable by human reason, and the humanity is perfectibility-as an assumption and an achievable goal
  3. god was a kind of cosmic clockmaker who created a perfect universe that he does not have to intervene in
  4. Italian astronomer and physicist who used the telescope for astronomical observations, discovered the constant of a pendulum’s swing, and created the laws of falling acceleration
  5. the astronomical model where the earth and planets revolve around the stationary sun at he center of the solar system
  6. the branch of science which deals with celestial objects, space, and the physical universe as a whole.
  7. the medieval forerunner of chemistry, based on the supposed transformation of matter. It was concerned particularly with attempts to convert base metals into gold or to find a universal elixir.
  8. having or representing the earth as the center, as in former astronomical systems.
Down
  1. the branch of science concerned with the bodily structure of humans, animals, and other living organisms, especially as revealed by dissection and the separation of parts.
  2. theory that all natural phenomena can be explained by physical causes
  3. anatomist and physician from Belgium who often referred to as the founder of modern human anatomy
  4. theory that all knowledge is gained from the experiences of the senses
  5. polish astronomer whose studies let=d to the rejection of the geocentric model
  6. English mathematician and physicist who explained the laws of mechanics and gravitation
  7. German astronomer that discovered the three laws of orbital motion
  8. a belief or theory that opinions and actions should be based on reason and knowledge rather than on religious belief or emotional response

16 Clues: German astronomer that discovered the three laws of orbital motiontheory that all natural phenomena can be explained by physical causestheory that all knowledge is gained from the experiences of the sensesa religious place which had an oppositon to Galileo Galilei and arrested him....

Scientific Crossword 2021-07-19

Scientific Crossword crossword puzzle
Across
  1. the splitting up of a light ray
  2. bringing light rays together
  3. a motion that continuously repeats
  4. a material that allows no light to pass
  5. the hole in the front of your eye
  6. band produced when lights spread out
Down
  1. the lens that spreads light out
  2. bends light rays toward each other
  3. a triangular shaped glass
  4. a material that allows radiation
  5. transparent layer in the front of the eye
  6. sends signals to the rest of the body
  7. gives out light
  8. spreads out light waves
  9. layer at the back of the eye

15 Clues: gives out lightspreads out light wavesa triangular shaped glassbringing light rays togetherlayer at the back of the eyethe lens that spreads light outthe splitting up of a light raya material that allows radiationthe hole in the front of your eyebends light rays toward each othera motion that continuously repeatsband produced when lights spread out...

Scientific Terms 2022-10-16

Scientific Terms crossword puzzle
Across
  1. The amount of matter within an object.
  2. An animal that only eats meat.
  3. an animal that hunts other animals.
  4. The process of liquid changing to gas.
  5. The amount of gravitational pull on an object.
  6. Tool used to measure heat.
  7. When a species no longer exists.
  8. To make an educated guess.
Down
  1. To blend in or be hidden.
  2. Tool used to measure air pressure.
  3. how fast an object moves.
  4. The measurement of moisture in the air.
  5. The force that pulls objects toward the center of Earth.
  6. Solid, liquid, or gas.
  7. Tool for observing distant objects in space.

15 Clues: Solid, liquid, or gas.To blend in or be hidden.how fast an object moves.Tool used to measure heat.To make an educated guess.An animal that only eats meat.When a species no longer exists.Tool used to measure air pressure.an animal that hunts other animals.The amount of matter within an object.The process of liquid changing to gas....

Scientific Revolution 2022-10-27

Scientific Revolution crossword puzzle
Across
  1. Type of government where power is in the hands of representatives elected by the people
  2. Patterns and explanations of the world discovered through reason
  3. Not able to be taken away. Absolute.
  4. Investigation of the truths and principles of knowledge and being
  5. Reason, and not tradition, is the source for all knowledge
  6. Guarantees based on moral principles
  7. Agreement between two or more groups (people and a government)
Down
  1. Governments do not get involved in the economy/businesses; “hands off”
  2. Being fair and objective to differing views or people
  3. Political principles/laws that govern a nation
  4. Those who want to give more power to elected officials
  5. Political movement that supported the power of individuals to solve problems using reason
  6. A monarchy where the ruler’s power is limited by law/constitution
  7. A drastic change in the political and social organization of a country
  8. Those who want to preserve traditional power of monarchies

15 Clues: Not able to be taken away. Absolute.Guarantees based on moral principlesPolitical principles/laws that govern a nationBeing fair and objective to differing views or peopleThose who want to give more power to elected officialsThose who want to preserve traditional power of monarchiesReason, and not tradition, is the source for all knowledge...

Scientific Terminologys 2023-09-07

Scientific Terminologys crossword puzzle
Across
  1. The smallest unit of matter.
  2. Vibrations that travel through the air.
  3. The force that attracts objects toward each other.
  4. A substance made up of only one type of atom.
  5. The transfer of thermal energy.
  6. A push or pull on an object.
  7. Electromagnetic radiation that is visible to the human eye.
  8. The change in position of an object.
Down
  1. An object that attracts materials with magnetic properties.
  2. A force that opposes the motion of objects in contact.
  3. A force that attracts or repels objects with magnetic properties.
  4. A group of atoms bonded together.
  5. reaction A process where substances change into new ones.
  6. The flow of electric charge.
  7. The capacity to do work or cause change.

15 Clues: The smallest unit of matter.The flow of electric charge.A push or pull on an object.The transfer of thermal energy.A group of atoms bonded together.The change in position of an object.Vibrations that travel through the air.The capacity to do work or cause change.A substance made up of only one type of atom....

Scientific Terminologys 2023-09-07

Scientific Terminologys crossword puzzle
Across
  1. The rate of change of an object's velocity.
  2. A substance composed of one type of atom.
  3. The ability to do work or cause change.
  4. The tendency of an object to resist changes in its state of motion.
  5. A neutrally charged subatomic particle.
  6. The force that attracts objects toward one another.
Down
  1. A group of atoms bonded together.
  2. A substance composed of two or more elements.
  3. Anything that has mass and occupies space.
  4. The smallest unit of matter.
  5. A negatively charged subatomic particle.
  6. The speed and direction of an object's motion.
  7. Reaction A process that transforms one substance into another.
  8. A push or pull that can change the motion of an object.
  9. A positively charged subatomic particle.

15 Clues: The smallest unit of matter.A group of atoms bonded together.The ability to do work or cause change.A neutrally charged subatomic particle.A negatively charged subatomic particle.A positively charged subatomic particle.A substance composed of one type of atom.Anything that has mass and occupies space.The rate of change of an object's velocity....

scientific equipment 2020-06-12

scientific equipment crossword puzzle
Across
  1. allows you to measure the temperature of any liquids
  2. used to separate solids from a liquid
  3. equipment used to measure mass
  4. helps protect the eyes from any chemicals
  5. sits on top of the tripod and spreads the heat from the flame
  6. used to transfer small volumes of liquid
  7. used to hold test tubes
Down
  1. used to heat substances
  2. used to measure volumes of liquids
  3. this is a sample tube which is used in labs for chemical reaction
  4. allows you see things more closely
  5. stand used to hold equipment over a bunsen burner
  6. used to hold solids or liquids, they come in different sizes
  7. helps you carry and measure liquids
  8. used to mix chemicals that release gases or may make a mess when mixed.

15 Clues: used to heat substancesused to hold test tubesequipment used to measure massused to measure volumes of liquidsallows you see things more closelyhelps you carry and measure liquidsused to separate solids from a liquidused to transfer small volumes of liquidhelps protect the eyes from any chemicalsstand used to hold equipment over a bunsen burner...

Scientific Marvels 2024-03-26

Scientific Marvels crossword puzzle
Across
  1. The process of growing plants in sand, gravel, or liquid, with added nutrients but without soil.
  2. Relating to or denoting a discrete quantity of energy proportional in magnitude to the frequency of the radiation it represents.
  3. An optical instrument used for viewing very small objects, such as bacteria and cells.
  4. A substance that has a molecular structure consisting chiefly or entirely of a large number of similar units bonded together.
  5. The branch of medicine or biology that deals with the anatomy, functions, and organic disorders of nerves and the nervous system.
  6. The branch of physical science that deals with the relations between heat and other forms of energy.
  7. The complete set of genes or genetic material present in a cell or organism.
  8. Made or produced by human beings rather than occurring naturally, typically as a copy of something natural.
  9. A substance that increases the rate of a chemical reaction without itself undergoing any permanent chemical change.
Down
  1. The process by which green plants and some other organisms use sunlight to synthesize foods with the help of chlorophyll.
  2. The exploitation of biological processes for industrial and other purposes, especially the genetic manipulation of microorganisms for the production of antibiotics, hormones, etc.
  3. Relating to the interrelation of electric currents or fields and magnetic fields.
  4. The branch of technology that deals with dimensions and tolerances of less than 100 nanometers, especially the manipulation of individual atoms and molecules.
  5. The process of producing genetically identical individuals from a single organism.
  6. The branch of technology that deals with the design, construction, operation, and application of robots.

15 Clues: The complete set of genes or genetic material present in a cell or organism.Relating to the interrelation of electric currents or fields and magnetic fields.The process of producing genetically identical individuals from a single organism.An optical instrument used for viewing very small objects, such as bacteria and cells....

Scientific Spectra 2024-04-15

Scientific Spectra crossword puzzle
Across
  1. Explosive death of a massive star.
  2. Unseen matter accounting for gravitational effects.
  3. Subatomic particle with almost no mass.
  4. Extremely bright and distant celestial object.
  5. High-energy radiation from outer space.
  6. Process of combining atomic nuclei.
  7. Increase in wavelength of light due to motion.
  8. Region of spacetime with strong gravitational pull.
  9. High-energy electromagnetic radiation.
Down
  1. Boundary beyond which nothing can escape.
  2. Early stage of a star's formation.
  3. Atoms with same element but different neutrons.
  4. left over from the Big Bang.
  5. Point of infinite density in a black hole.
  6. Interstellar cloud of gas and dust.

15 Clues: left over from the Big Bang.Explosive death of a massive star.Early stage of a star's formation.Interstellar cloud of gas and dust.Process of combining atomic nuclei.High-energy electromagnetic radiation.Subatomic particle with almost no mass.High-energy radiation from outer space.Boundary beyond which nothing can escape....

Scientific Skills 2024-02-12

Scientific Skills crossword puzzle
Across
  1. Graph used when comparing quantities
  2. The variable that is being measured and recorded during an experiment
  3. Graph used when there is a change over time
  4. Set of steps used to solve problems or answer questions in nature
  5. The middle value for a set of data
  6. Information collected, recorded, and analyzed during an experiment
  7. The group in an experiment in which the independent variable is NOT changed so that results can be used for comparison
  8. The most common data value that appears in a set of data
Down
  1. Found by adding all numbers in the data set and then dividing by the number of values in the set
  2. The variable that is tested during an experiment
  3. A possible explanation that can be tested
  4. An explanation about an event in nature that is supported by many separate observations and experiments
  5. Another term used for average
  6. Graph used when comparing percentages
  7. The difference between the highest and lowest values within a data set

15 Clues: Another term used for averageThe middle value for a set of dataGraph used when comparing quantitiesGraph used when comparing percentagesA possible explanation that can be testedGraph used when there is a change over timeThe variable that is tested during an experimentThe most common data value that appears in a set of data...

Scientific Concepts 2024-09-12

Scientific Concepts crossword puzzle
Across
  1. The smallest unit of matter.
  2. A form of energy from charged particles, used to power devices.
  3. A group of atoms bonded together.
  4. The process plants use to make food from sunlight, water, and carbon dioxide.
  5. The process of liquid turning into gas.
  6. A measure of how hot or cold something is.
  7. The amount of space that an object or substance occupies.
  8. The force that pulls objects toward the Earth.
Down
  1. Anything that has mass and takes up space.
  2. The force that pulls certain metals toward a magnet.
  3. A push or pull on an object.
  4. A force that opposes motion between two surfaces that are in contact.
  5. The process of gas turning back into a liquid.
  6. A process in which substances change into different substances.
  7. The ability to do work or cause change, comes in different forms like kinetic and potential.

15 Clues: A push or pull on an object.The smallest unit of matter.A group of atoms bonded together.The process of liquid turning into gas.Anything that has mass and takes up space.A measure of how hot or cold something is.The process of gas turning back into a liquid.The force that pulls objects toward the Earth....

Scientific Mixtures 2024-05-31

Scientific Mixtures crossword puzzle
Across
  1. A type of colloid with two or more liquids.
  2. You lower the concentration in a defined space.
  3. A substance that is dissolved in a solution.
  4. The amount of substance per defined space.
  5. A mixture of one or more solutes dissolved in a solvent.
  6. The matter that settles at the bottom of a liquid.
  7. Is able to dissolve other substances.
  8. My favourite English solution ever.
Down
  1. A substance made from one element or just one compound.
  2. A homogeneous non-crystalline substance consisting of large molecules or ultramicroscopic particles of one substance dispersed through a second substance.
  3. Each of more than one hundred substances that cannot be chemically interconverted or broken down into simpler substances
  4. A mixture where the solid particles don’t dissolve in the liquid.
  5. Mr Carroll's favourite colloid.
  6. A substance in which two or more substances are mixed but not chemically joined together.
  7. A physical or chemical situation where a system can take no more of a substance.

15 Clues: Mr Carroll's favourite colloid.My favourite English solution ever.Is able to dissolve other substances.The amount of substance per defined space.A type of colloid with two or more liquids.A substance that is dissolved in a solution.You lower the concentration in a defined space.The matter that settles at the bottom of a liquid....

Scientific Words 2024-05-31

Scientific Words crossword puzzle
Across
  1. able to dissolve another substance
  2. 2 or more liquids mixed
  3. cannot dissolve anymore
  4. involves to much solute
  5. cannot be broken down into another substance
  6. used in food to mix different substances
  7. to less dissolved
Down
  1. solid that is moved to another location
  2. can be dissolved
  3. only one substance
  4. usually used to store food in
  5. biggest particles
  6. not chemically mixed
  7. smallest particles
  8. small particles mixed in another substance

15 Clues: can be dissolvedbiggest particlesto less dissolvedonly one substancesmallest particlesnot chemically mixed2 or more liquids mixedcannot dissolve anymoreinvolves to much soluteusually used to store food inable to dissolve another substancesolid that is moved to another locationused in food to mix different substances...

Scientific Revolution 2024-12-13

Scientific Revolution crossword puzzle
Across
  1. The bright star at the center of our solar system.
  2. Objects like Earth, Mars, and Jupiter that revolve around the Sun.
  3. A tool invented to look at faraway objects like stars and planets.
  4. Discovered the laws of motion and gravity.
  5. Developed a new way of thinking, using experiments and observation to learn about the world.
  6. The planet we live on, once thought to be the center of the universe.
  7. Testing ideas to see if they are true or false.
Down
  1. Used a telescope to study the stars and supported the idea that Earth orbits the Sun.
  2. A way of understanding the world using observation and experiments.
  3. New things learned about the world, often by scientists.
  4. Proposed that the Sun, not Earth, is at the center of the solar system.
  5. Found that planets move in elliptical orbits around the Sun.
  6. Tiny lights in the night sky that scientists studied through telescopes.
  7. The world around us, studied during the Scientific Revolution.
  8. The force that pulls objects toward each other, explained by Isaac Newton.

15 Clues: Discovered the laws of motion and gravity.Testing ideas to see if they are true or false.The bright star at the center of our solar system.New things learned about the world, often by scientists.Found that planets move in elliptical orbits around the Sun.The world around us, studied during the Scientific Revolution....

Scientific Investigation 2025-06-02

Scientific Investigation crossword puzzle
Across
  1. A controlled test or investigation designed to gather data and evaluate a hypothesis.
  2. A statement summarizing the results of an investigation and what they suggest about the hypothesis.
  3. A statement about what is expected to happen in an experiment.
  4. a mistake
  5. The process of gathering information through the senses or instruments.
  6. take measures to check the quality, performance, or reliability of, especially before putting it into widespread use or practice.
  7. A factor that can change or vary in an experiment
  8. a sentence worded or expressed so as to elicit information.
Down
  1. a variable who's value depends on that of another
  2. a variable who's variation that does not depend on another
  3. a proposed explanation for a phenomenon that can be tested and verified
  4. The facts and figures collected during an investigation, often used to support or refute a hypothesis.
  5. a value that does not change within the context of a particular experiment
  6. a component that remains unchanged throughout the experiment
  7. The process of examining and interpreting data to draw conclusions.

15 Clues: a mistakea variable who's value depends on that of anotherA factor that can change or vary in an experimenta variable who's variation that does not depend on anothera sentence worded or expressed so as to elicit information.a component that remains unchanged throughout the experimentA statement about what is expected to happen in an experiment....

Scientific Investigation 2025-05-30

Scientific Investigation crossword puzzle
Across
  1. A variable that is measured
  2. A variable that changes
  3. A Detailed Examination
  4. A educated Guess
  5. Guesses
  6. The group that is the most average
Down
  1. A non-variable that stays the same
  2. A If/Then Statement
  3. What you get from reading a ruler
  4. The required tools to complete the experiment
  5. A step by step process to learn something
  6. The sentence that wraps up the experiment
  7. Things that Change
  8. Something that you can tell by looking
  9. Information

15 Clues: GuessesInformationA educated GuessThings that ChangeA If/Then StatementA Detailed ExaminationA variable that changesA variable that is measuredWhat you get from reading a rulerA non-variable that stays the sameThe group that is the most averageSomething that you can tell by lookingA step by step process to learn something...

Scientific Revolution 2023-03-16

Scientific Revolution crossword puzzle
Across
  1. The process developed by Bacon
  2. He promoted the idea of mathematization
  3. The gas Lavoisier discovered
  4. Chemist responsible for developing the naming system used
  5. Theory or solar organization promoted by Ptolemy
  6. The Father of Modern Chemistry
  7. He invented the microscope
  8. He invented a new temperature scale for the newly invented thermometer
  9. He made Copernicus, Brahe, and Kepler understandable to normal people and got in trouble with the Church for it.
Down
  1. He proposed that the sun was the center of the solar system instead of the earth
  2. The science that turned into chemistry
  3. The device Torricelli invented that measures atmospheric pressure
  4. Device invented by Galileo
  5. They made the Heliocentric theory work mathematically with elliptical orbits
  6. He is considered the father of modern physics and developed ideas on motion, gravity,and light

15 Clues: Device invented by GalileoHe invented the microscopeThe gas Lavoisier discoveredThe process developed by BaconThe Father of Modern ChemistryThe science that turned into chemistryHe promoted the idea of mathematizationTheory or solar organization promoted by PtolemyChemist responsible for developing the naming system used...

SCIENTIFIC TERMS 2023-03-29

SCIENTIFIC TERMS crossword puzzle
Across
  1. - A biological community of interacting organisms and their physical environment. (SPANISH)
  2. – Process of change over time that occurs in populations of organisms through natural selection. (FRENCH)
  3. - The branch of astronomy that deals with the physics of the universe, including the physical properties of celestial objects and the interactions between them. (ENGLISH)
  4. - A biological community of interacting organisms and their physical environment. (FRENCH)
  5. - A microscopic organism, especially a bacterium, virus, or fungus. (FRENCH)
  6. - The study of heredity and the variation of inherited characteristics. (FRENCH)
Down
  1. - The set of chemical reactions that occur within a living organism in order to maintain life. (FRENCH)
  2. - The use of living organisms or other biological systems in the manufacture of products or for environmental management. (ENGLISH)
  3. - The study of heredity and the variation of inherited characteristics. (SPANISH)
  4. - The process by which green plants and some other organisms use sunlight to synthesise foods with the help of chlorophyll. (SPANISH)
  5. - The study of the nervous system, including its structure, function, and development. (ENGLISH)
  6. - The study of the structure of living organisms, including their internal organs and tissues. (ENGLISH)
  7. - The study of heredity and the variation of inherited characteristics. (ENGLISH)
  8. - A microscopic organism, especially a bacterium, virus, or fungus. (SPANISH)
  9. - A molecule that carries genetic information in cells and consists of two chains of nucleotides twisted together in the form of a double helix. (SPANISH)

15 Clues: - A microscopic organism, especially a bacterium, virus, or fungus. (FRENCH)- A microscopic organism, especially a bacterium, virus, or fungus. (SPANISH)- The study of heredity and the variation of inherited characteristics. (FRENCH)- The study of heredity and the variation of inherited characteristics. (SPANISH)...

Scientific reading 2025-11-26

Scientific reading crossword puzzle
Across
  1. Able to work well at high temperatures
  2. Small pieces taken to study something
  3. An object used to hold something
  4. Related to heat or temperature
  5. A test done to learn something
  6. Proteins that speed up chemical reactions
Down
  1. Looking at two or more things to see similarities and differences
  2. To chemically break something apart.
  3. small particles that make up all materials
  4. Clean chemical parts with nothing mixed in
  5. Able to do a job well
  6. Turning old materials into new products
  7. To separate something into smaller parts
  8. How hot or cold something is
  9. Ability to stay the same without breaking or changing

15 Clues: Able to do a job wellHow hot or cold something isRelated to heat or temperatureA test done to learn somethingAn object used to hold somethingTo chemically break something apart.Small pieces taken to study somethingAble to work well at high temperaturesTurning old materials into new productsTo separate something into smaller parts...

Scientific Reading 2025-11-24

Scientific Reading crossword puzzle
Across
  1. they contain protein
  2. deceased organic matter
  3. Any living entity
  4. Converted into reusable material
  5. Place where garbage disposed of
  6. Related to chemistry
  7. Device that regulates temperature.
  8. smallest part of a chemical compound
Down
  1. only seen through a microscope
  2. A brush with a handle for teeth
  3. Synthetic Material
  4. Molecular Cells
  5. Loop System where feedback used to compare
  6. Break down in food cannal
  7. food served in restaurant

15 Clues: Molecular CellsAny living entitySynthetic Materialthey contain proteinRelated to chemistrydeceased organic matterBreak down in food cannalfood served in restaurantonly seen through a microscopeA brush with a handle for teethPlace where garbage disposed ofConverted into reusable materialDevice that regulates temperature....

Scientific Reading 2025-11-24

Scientific Reading crossword puzzle
Across
  1. Decayed plant and food waste used to help plants grow.
  2. The process of turning waste into new materials
  3. The ability to remain unchanged or steady.
  4. To break something down into smaller parts.
  5. substance used to make things.
  6. A substance in living things that speeds up chemical reactions.
  7. place where trash is buried in the ground.
  8. Harmful materials released into the air, water, or land.
  9. Too small to be seen without a microscope.
Down
  1. Able to remain stable at different temperatures.
  2. system A process where materials are reused over and over with no waste.
  3. A living thing
  4. In a way that does not harm the environment or use up resources.
  5. scientific test to learn how something works.
  6. The smallest unit of a substance that still has the properties of that substance

15 Clues: A living thingsubstance used to make things.The ability to remain unchanged or steady.place where trash is buried in the ground.Too small to be seen without a microscope.To break something down into smaller parts.scientific test to learn how something works.The process of turning waste into new materials...

scientific vocabulary 2025-11-25

scientific vocabulary crossword puzzle
Across
  1. organic molecules composed of folder chains of amino acids
  2. adenosine triphosphate,the molecule that provides the energy for most cellular processes
  3. a form of cell division in which one cell divides into two daughter cells,each of which contains the same genetic information as the original cell
  4. the organelles within plant cells in which photosynthesis occurs
  5. the process in plants and some other organisms in which light energy from the sun is converted into chemical energy in organic molecules
  6. a structure within eukaryotic cells that is surrounded by a double membrane and that contains the cells DNA
  7. structure within the cytoplasm of eukaryotic cells that perform specific functions in the cell
Down
  1. the DNA containing structures within cells
  2. single-celled organisms,such as bacteria and archea,whose cells lack a nucleus
  3. organisms whose cells have a true nucleus,such as protist,animals,plants and fungi
  4. the basic units of life that make up all living organisms
  5. the study of life and living organisms
  6. eukaryotic organelles that break down organic molecules to produce ATP
  7. the passive movement of molecules from an area of high concentration to an area of low concentration
  8. hydrophobic organic molecules,many of which include fatty acids as a primary component

15 Clues: the study of life and living organismsthe DNA containing structures within cellsthe basic units of life that make up all living organismsorganic molecules composed of folder chains of amino acidsthe organelles within plant cells in which photosynthesis occurseukaryotic organelles that break down organic molecules to produce ATP...

Scientific Reading 2025-11-25

Scientific Reading crossword puzzle
Across
  1. The process of making or creating something new.
  2. A measure of how hot or cold something is.
  3. Turning used materials into new products.
  4. protein that speeds up chemical reactions in living things.
  5. Able to be maintained long-term without harming the planet.
  6. degradation The process of breaking plastic down into smaller, simpler molecules.
  7. A group of atoms bonded together; the smallest unit of a chemical substance.
  8. Decayed organic material used as fertilizer.
  9. system A system where materials are reused over and over without becoming waste.
Down
  1. The process of separating something into smaller parts.
  2. Everything around us: air, water, soil, plants, animals, and humans.
  3. molecules Clean, separated molecules with no contamination.
  4. Able to work well even at high temperatures without breaking down.
  5. Materials that are thrown away because they are no longer needed.
  6. reaction A process where substances change into new substances.

15 Clues: Turning used materials into new products.A measure of how hot or cold something is.Decayed organic material used as fertilizer.The process of making or creating something new.The process of separating something into smaller parts.protein that speeds up chemical reactions in living things.Able to be maintained long-term without harming the planet....

Kelompok 2 PBO 2022-11-17

Kelompok 2 PBO crossword puzzle
Across
  1. method yang digunakan untuk menyisipkan String pada posisi tertentu
  2. salah satu cara untuk menyimpan sekumpulan elemen
  3. class yang sering digunakan untuk menyimpan collection yang bebas duplikasi
  4. method yang digunakan untuk membalik isi dari variabel StringBuffer
  5. collection yang paling sederhana
  6. method yang digunakan untuk mengtahui panjang atau kapasitas string
  7. collections yang menjadi bagian dari java util
Down
  1. yang merupakan komponen penting dalam penulisan kode program untuk membuat aplikasi
  2. framework yang menyediakan sebuah tempat untuk menyimpan dan memanipulasi sekumpulan objek
  3. method yang digunakan untuk menghapus String pada indeks tertentu
  4. digunakan untuk menentukan suatu jenis nilai yang dapat ditampung oleh suatu variabel
  5. method yang digunakan untuk menambahkan string pada akhir StringBuffer
  6. method yang digunakan untuk menggabungkan text dari satu atau lebih string dan mengambalikanya kembali sebuah string
  7. method yang digunakan untuk mengubah karakter pada indeks tertentu
  8. method yang digunakan untuk mengetahui kapasitas dari suatu variabel StringBuffer
  9. tipe data yang sering digunakan dalam proses input pada data sebuah sistem
  10. model pengelompokan berdasarkan metode antrean suatu prioritas tertentu
  11. salah satu implementasi dari class interface yang mengurutkan collection berdasarkan key dari elemen berupa pasangan <key, value>
  12. modifikasi string yang dapat dilakukan dengan mudah
  13. teknik yang secara khusus digunakan untuk mengidentifikasi objek tertentu dari sekumpulan objek yang serupa

20 Clues: collection yang paling sederhanacollections yang menjadi bagian dari java utilsalah satu cara untuk menyimpan sekumpulan elemenmodifikasi string yang dapat dilakukan dengan mudahmethod yang digunakan untuk menghapus String pada indeks tertentumethod yang digunakan untuk mengubah karakter pada indeks tertentu...

DNA sequencing methods 2017-07-02

DNA sequencing methods crossword puzzle
Across
  1. __________ is radioactively labelled in Sanger method of sequencing
  2. ___________________ is applying techniques to know the order of nucleotide sequences of either DNA or RNA
  3. ____________ method of sequencing is otherwise called as chemical method
  4. __________ enzyme is used to remove terminal phosphate from the DNA strand in Chemical method of DNA sequencing
  5. _________ film is used to capture the signals from the polyacrylamide gel to read the order of nucleotides in the DNA sequencing methods
  6. _____________ chemical is used to cleave the modified nucleotides in the DNA strand in Chemical method of DNA sequencing
  7. _________ chemical is used to modify ‘cytosine and thymine’ nucleotides in the DNA strand in Chemical method of DNA sequencing
Down
  1. _______ enzyme is used to add the radioactive labelled 32P to the DNA strand in Chemical method of DNA sequencing
  2. _________ chemical is used along with hydrazine to modify ‘cytosine’ nucleotides in the DNA strand in Chemical method of DNA sequencing
  3. _________ chemical is used to modify ‘guanine and adenine’ nucleotides in the DNA strand in Chemical method of DNA sequencing
  4. _________ chemical is used to modify ‘guanine’ nucleotides in the DNA strand in Chemical method of DNA sequencing
  5. ___________ sequence is the original sequence order of nucleotides in Sanger method of sequencing
  6. ___________ is used to terminate the chain elongation in Sanger method of sequencing
  7. ________ method of sequencing is otherwise called as chain termination method
  8. Identification of ____________ nucleotide is a drawback of Chemical method of DNA sequencing

15 Clues: __________ is radioactively labelled in Sanger method of sequencing____________ method of sequencing is otherwise called as chemical method________ method of sequencing is otherwise called as chain termination method___________ is used to terminate the chain elongation in Sanger method of sequencing...

Scientific vocabulary 2021-06-01

Scientific vocabulary crossword puzzle
Across
  1. Use of the light emitted by excited particles of certain atoms
  2. A mineral composed of carbon element. It is an allotrope of carbon element and a particulate matter composed of elemental elements in nature.
  3. Matter formed by regular and periodic repetition of the particles of matter in a three-dimensional space
  4. It is a substance with electrical conductivity between insulator and conductor. Its electrical conductivity is easily controlled and can be used as a component material for information processing.
  5. The ability of the material to resist damage under external force
  6. The lightest element
  7. Refers to the process in which materials and components under the action of cyclic stress or cyclic strain gradually produce local permanent cumulative damage at one or several places, and cracks or sudden complete fracture after a certain number of cycles
  8. When an object is deformed due to the outside, an interactive internal force is generated between the various parts of the object to resist the action of this external cause and try to restore the object from the deformed position to the position before the deformation
Down
  1. It is an allotrope of carbon. Its molecule consists of carbon atoms connected by single and double bonds to form a closed or partially closed network structure with five to seven-membered condensed rings.
  2. The ability of an object to conduct electricity
  3. The ability of a material to locally resist hard objects pressed into its surface
  4. It refers to the physical phenomenon in which waves propagate away from the original straight line when encountering obstacles.
  5. It refers to a solid in which the molecules of a substance are not arranged regularly and periodically in space.
  6. conductivity. Heat transfer when there is no macroscopic movement in the medium
  7. The general term for pottery and porcelain

15 Clues: The lightest elementThe general term for pottery and porcelainThe ability of an object to conduct electricityUse of the light emitted by excited particles of certain atomsThe ability of the material to resist damage under external forceconductivity. Heat transfer when there is no macroscopic movement in the medium...

scientific words 2020-09-04

scientific words crossword puzzle
Across
  1. Substances that are made up of only one type of atom
  2. a measure of the force of gravity on an object
  3. a group of two or more atoms held together by chemical bonds
  4. a substances made of two or more elements that are chemically combined in a set ratio
  5. a characteristics that can be observed without changing the matter into another type of matter
  6. how easily a substance dissolves in another substances,such as water
  7. the basic unit from which all matter is made
  8. The basic unit of life
Down
  1. when an organism reacts or responds to a change in physical state or environment
  2. the amount of matter in an object
  3. is made up of two or more substances that are together in the same place
  4. The amount of space that matter occupies
  5. characteristics that describe the ability of a substance to become something else
  6. the scientific word for stuff or anything that has mass or takes up space
  7. a single kind of matter that always has a specific makeup or composition

15 Clues: The basic unit of lifethe amount of matter in an objectThe amount of space that matter occupiesthe basic unit from which all matter is madea measure of the force of gravity on an objectSubstances that are made up of only one type of atoma group of two or more atoms held together by chemical bonds...

scientific revolution 2021-10-07

scientific revolution crossword puzzle
Across
  1. first step of the scientific revolution
  2. said that the sun has dark spots
  3. dissected the human body
  4. first old teachings
  5. spread of new ideas
  6. dissected animals
  7. the sun revolves around the earth
Down
  1. step by step process
  2. the earth revolves around the sun
  3. wanted science to advance
  4. proposed the heliocentric theory
  5. what old scholars first relied on
  6. discovered gravity
  7. studies blood
  8. first used to form ides on the human body

15 Clues: studies blooddissected animalsdiscovered gravityfirst old teachingsspread of new ideasstep by step processdissected the human bodywanted science to advancesaid that the sun has dark spotsproposed the heliocentric theorythe earth revolves around the sunwhat old scholars first relied onthe sun revolves around the earth...

Scientific Revolution 2023-02-09

Scientific Revolution crossword puzzle
Across
  1. Religious men who are ordained for religious duty by the church
  2. Tool used by Galileo to conclude that nature is uniform by observing celestial bodies.
  3. Scientist who discovered three laws of planetary motion
  4. Solar system model with the Earth at its center
  5. Roman poet who suggested that writers should keep a manuscript in the cupboard until the 9th year before it could be fairly evaluated.
  6. Greek philospher who believed that the Earth is at the center of the solar system.
  7. Christian writings which theologians believed went against Copernican views.
  8. Scientist who popularized the heliocentric model during scientific revolution
Down
  1. Italian scientist who proclaimed that nature is uniform throughout the universe.
  2. Protestant theologian who attacked Copernicus for contradicting the Bible.
  3. Solar system model with the sun at its center
  4. An opinion which is contrary to Christian ideals
  5. Scientist who formed mechanical laws of motion
  6. The Revolutions of the Heavenly Spheres was dedicated to Pope ____ III.
  7. The study of the outer space and celestial objects.

15 Clues: Solar system model with the sun at its centerScientist who formed mechanical laws of motionSolar system model with the Earth at its centerAn opinion which is contrary to Christian idealsThe study of the outer space and celestial objects.Scientist who discovered three laws of planetary motion...

Scientific Revoloution 2015-04-27

Scientific Revoloution crossword puzzle
Across
  1. Copernicus Polish astronomer
  2. The medieval forerunner of chemistry
  3. A supposition or a system of ideas intended to explain something
  4. Greek thinker, ancient astronomer
  5. A belief or theory that opinions and actions should be based on reason and knowledge rather than on religious belief or emotional response
  6. The systematic study of the structure and behavior of the physical and natural world through observation and experiment
  7. method A method of procedure that has characterized natural science
  8. Bacon English statesman and philosopher
Down
  1. Galilei Italian astronomer and physicist
  2. Kepler German astronomer
  3. An instrument measuring atmospheric pressure
  4. Isaac Newton English mathematician and physicist, considered the greatest single influence on theoretical physics until Einstein
  5. Brahe Danish astronomer
  6. A supposition or proposed explanation
  7. Revolution The emergence of modern science during the early modern period
  8. Descartes French philosopher, mathematician, and man of science

16 Clues: Brahe Danish astronomerKepler German astronomerCopernicus Polish astronomerGreek thinker, ancient astronomerThe medieval forerunner of chemistryA supposition or proposed explanationBacon English statesman and philosopherGalilei Italian astronomer and physicistAn instrument measuring atmospheric pressure...

Scientific Revolution 2016-12-06

Scientific Revolution crossword puzzle
Across
  1. Scottish economist
  2. 3laws of motion
  3. sun-centered
  4. planets, moons,stars
  5. Modern experimental method
  6. Explanation of the universe
  7. French Philosopher
Down
  1. Lord Chancellor of england
  2. modern physics
  3. period after middle ages
  4. English thinker who believed all people had a right to life
  5. greatest enlightment thinker
  6. student or expert of astronomy
  7. optical instrument
  8. natural phenomenon

15 Clues: sun-centeredmodern physics3laws of motionScottish economistoptical instrumentnatural phenomenonFrench Philosopherplanets, moons,starsperiod after middle agesLord Chancellor of englandModern experimental methodExplanation of the universegreatest enlightment thinkerstudent or expert of astronomy...

Scientific equipment 2017-11-14

Scientific equipment crossword puzzle
Across
  1. Used to hold glassware above a flame
  2. Used to transfer small volumes of liquid
  3. used to separate solids from a liquid
  4. used to hold test tubes
  5. The equipment used to measure mass
  6. Used to hold equipment over a bunsen burner
  7. Used to measure volumes of liquids
Down
  1. Used to heat substances
  2. The piece of equipment used to measure temperature
  3. Used to evaporate liquid from a mixture
  4. Used to mix chemical that release gases or that may splatter when mixed
  5. Used to transfer small amounts of solids
  6. Used to hold solids or liquids, they come in different sizes
  7. Used to mix and heat chemicals
  8. Sits on top of the tripod and spreads the heat from the flame

15 Clues: Used to heat substancesused to hold test tubesUsed to mix and heat chemicalsThe equipment used to measure massUsed to measure volumes of liquidsUsed to hold glassware above a flameused to separate solids from a liquidUsed to evaporate liquid from a mixtureUsed to transfer small amounts of solidsUsed to transfer small volumes of liquid...

scientific crossword 2018-01-02

scientific crossword crossword puzzle
Across
  1. factor Describe nonliving factors in the enviroment
  2. a part or aspect of something abstract, especially one that is essential or characteristic
  3. describe an organism that does not need oxygen
  4. reproduction in which a single parent produces offsprings that are genetically identical to the parent
  5. The rate at which velocity changes in time
  6. the maximum distance a wave vibrates from its rest position
  7. any compound that increases the number of hydroxide
  8. relating to, involving, or requiring free oxygen.
Down
  1. the envelope of gases surrounding the earth or another planet
  2. a thing that is composed of two or more separate elements; a mixture
  3. an animal that feeds on flesh
  4. typical of a particular person, place, or thing.
  5. a characteristic that helps an organism survive in its enviroment
  6. any compound that increases the number of hydrogen ions when dissolved in water and whose solution tastes sour and can change the color of certain compounds
  7. the smallest particle into which an element can be divided and still be the same substance

15 Clues: an animal that feeds on fleshThe rate at which velocity changes in timedescribe an organism that does not need oxygentypical of a particular person, place, or thing.relating to, involving, or requiring free oxygen.factor Describe nonliving factors in the enviromentany compound that increases the number of hydroxide...

Scientific Fields 2023-09-07

Scientific Fields crossword puzzle
Across
  1. The study of living organisms and their interactions.
  2. The study of the nervous system and its functions.
  3. Science The study of the environment and its impact on living organisms.
  4. The study of prehistoric life and the history of Earth.
  5. The study of heredity and the variation of inherited traits.
  6. The study of celestial objects such as stars, planets, and galaxies.
  7. Engineering The application of chemistry to industrial processes.
Down
  1. The study of matter, energy, and the fundamental forces of nature.
  2. The branch of biology that focuses on plants and their life processes.
  3. The study of the relationships between organisms and their environment.
  4. The branch of biology that deals with animals and their behavior.
  5. The science of the composition, structure, and properties of matter.
  6. Science The study of algorithms, programming, and computation.
  7. The science of the Earth's structure, composition, and processes.
  8. The study of atmospheric conditions and weather patterns.

15 Clues: The study of the nervous system and its functions.The study of living organisms and their interactions.The study of prehistoric life and the history of Earth.The study of atmospheric conditions and weather patterns.The study of heredity and the variation of inherited traits.Science The study of algorithms, programming, and computation....

scientific terminology 2023-09-03

scientific terminology crossword puzzle
Across
  1. A group of atoms bonded together chemically.
  2. Reaction The process where substances change into new ones with different properties.
  3. The study of heredity and the passing of traits from one generation to the next.
  4. System A group of celestial objects, including the sun, planets, and their moons.
  5. The remains or traces of prehistoric life preserved in rocks.
  6. The gradual change of species over time through natural selection.
  7. A push or pull that can change the motion of an object.
  8. The ability to do work or cause change in a system.
Down
  1. A force that attracts or repels objects made of certain materials.
  2. The process by which green plants convert sunlight into energy.
  3. A substance made up of only one type of atom.
  4. A form of energy resulting from the movement of charged particles.
  5. A community of living organisms and their environment.
  6. The smallest unit of matter, composed of protons, neutrons, and electrons.
  7. The force that attracts two objects with mass toward each other.

15 Clues: A group of atoms bonded together chemically.A substance made up of only one type of atom.The ability to do work or cause change in a system.A community of living organisms and their environment.A push or pull that can change the motion of an object.The remains or traces of prehistoric life preserved in rocks....

Scientific Terminology 2023-09-03

Scientific Terminology crossword puzzle
Across
  1. A group of atoms bonded together chemically.
  2. Reaction The process where substances change into new ones with different properties.
  3. The study of heredity and the passing of traits from one generation to the next.
  4. System A group of celestial objects, including the sun, planets, and their moons.
  5. The remains or traces of prehistoric life preserved in rocks.
  6. The gradual change of species over time through natural selection.
  7. A push or pull that can change the motion of an object.
  8. The ability to do work or cause change in a system.
Down
  1. A force that attracts or repels objects made of certain materials.
  2. The process by which green plants convert sunlight into energy.
  3. A substance made up of only one type of atom.
  4. A form of energy resulting from the movement of charged particles.
  5. A community of living organisms and their environment.
  6. The smallest unit of matter, composed of protons, neutrons, and electrons.
  7. The force that attracts two objects with mass toward each other.

15 Clues: A group of atoms bonded together chemically.A substance made up of only one type of atom.The ability to do work or cause change in a system.A community of living organisms and their environment.A push or pull that can change the motion of an object.The remains or traces of prehistoric life preserved in rocks....

Scientific Discoveries 2023-09-03

Scientific Discoveries crossword puzzle
Across
  1. Discovered the expansion of the universe.
  2. Laws of motion and universal gravitation.
  3. Attracts objects to each other.
  4. Table Organizes chemical elements.
  5. Antibiotic discovered by Alexander Fleming.
  6. Astronomer who supported heliocentrism.
  7. Process powering the sun and stars.
Down
  1. Discovery by Marie Curie.
  2. Proposed the theory of relativity.
  3. Double helix genetic material.
  4. Edward Jenner pioneered this method.
  5. Pioneer in electricity and magnetism.
  6. Instrument to magnify small objects.
  7. Hole A region with strong gravitational pull.
  8. Charles Darwin's theory of species change.

15 Clues: Discovery by Marie Curie.Double helix genetic material.Attracts objects to each other.Proposed the theory of relativity.Table Organizes chemical elements.Process powering the sun and stars.Edward Jenner pioneered this method.Instrument to magnify small objects.Pioneer in electricity and magnetism.Astronomer who supported heliocentrism....

Scientific Properties 2024-02-04

Scientific Properties crossword puzzle
Across
  1. a container with measured markings used to measure the volume of liquids
  2. the forms matter can take, such as solid, liquid, and gas.
  3. a state of matter with a constant shape and size.
  4. the decimal measuring system based on the meter, liter, and gram as units of length, volume (capacity), and weight or mass.
  5. the force over a unit of area caused by the weight of the atmosphere pushing down on Earth.
  6. a property that can be observed, measured, or changed without changing the matter itself.
  7. a state of matter in which the substance expands to take bth the shape and the volume of its container.
Down
  1. a state of matter that has a constant size but does not have a constant shape.
  2. a way of measuring how hot or cold something is; measured using either the Fahrenheit (F) or Celsius (C) scale.
  3. a force of attraction that causes a magnetic material to move
  4. a tool used to measure masses very precisely.
  5. the amount of space that a substance or object takes up.
  6. any substance that has mass and takes up space.
  7. the amount of matter in something.
  8. how much mass a substance has in relation to the amount of space it takes up.

15 Clues: the amount of matter in something.a tool used to measure masses very precisely.any substance that has mass and takes up space.a state of matter with a constant shape and size.the amount of space that a substance or object takes up.the forms matter can take, such as solid, liquid, and gas.a force of attraction that causes a magnetic material to move...

Scientific Investigation 2025-05-30

Scientific Investigation crossword puzzle
Across
  1. The act of watching something
  2. Variables that stay the same in a experiment
  3. The educated guess in the experiment
  4. The variable that you measure in a experiment
  5. Correct statements about a hypothesis
  6. How correct you are in a experiment
  7. The amount of something
Down
  1. When there is a strong correlation in the data
  2. The variable that you change in a experiment
  3. Something that you do to have a valid hypothesis about the experiment
  4. When there is no correlation in the data
  5. The end results of the experiment
  6. The piece that you use to layout the data for the experiment
  7. to investigate and understand something
  8. The standard of the experiment

15 Clues: The amount of somethingThe act of watching somethingThe standard of the experimentThe end results of the experimentHow correct you are in a experimentThe educated guess in the experimentCorrect statements about a hypothesisto investigate and understand somethingWhen there is no correlation in the dataVariables that stay the same in a experiment...

Scientific Revolution 2025-04-22

Scientific Revolution crossword puzzle
Across
  1. an Italian astronomer and mathematician whose discoveries using a telescope supported the heliocentric universe theories of Copernicus
  2. figure of the Scientific Revolution An English mathematician and physicist
  3. a distinguished English philosopher, statesman, and lawyer,a man of many talents, he promoted rational thought.
  4. separate section of a city where members of a minority group are forced to live
  5. artistic technique used to give paintings and drawings a three-dimensional effect
  6. method careful, step-by-step process used to confirm findings and to prove or disprove a hypothesis
  7. a branch of mathematics in which calculations are made using special symbolic notations, developed by Isaac Newton
  8. an unproved theory accepted for the purposes of explaining certain facts or to provide a basis for further investigation.
Down
  1. a Polish astronomer who concluded that the sun is the center of the universe around which Earth and the other planets revolve
  2. an intellectual movement at the heart of the Renaissance that focused on education and the classics
  3. government run by religious leaders
  4. in the Roman Catholic Church, pardon for sins committed during a person's lifetime
  5. idealistic or visionary, usually used to describe a perfect society
  6. based on the belief that the sun is the center of the universe
  7. force that pulls objects in Earth's sphere to the center of Earth

15 Clues: government run by religious leadersbased on the belief that the sun is the center of the universeforce that pulls objects in Earth's sphere to the center of Earthidealistic or visionary, usually used to describe a perfect societyfigure of the Scientific Revolution An English mathematician and physicist...

SCIENTIFIC WORLD 2024-09-18

SCIENTIFIC WORLD crossword puzzle
Across
  1. A vast collection of stars, planets, and cosmic matter.
  2. An unidentified flying object, often thought to be alien.
  3. A rocky object orbiting the Sun, smaller than planets.
  4. Combining technology and biology to enhance abilities.
  5. The force that pulls objects towards one another.
  6. Protective gear astronauts wear in space.
  7. A space shortcut connecting distant points in the universe.
  8. The smallest unit in physics, crucial in futuristic science.
Down
  1. Anything originating from outside Earth.
  2. A mechanical being, often programmed to perform tasks.
  3. A vehicle designed for travel beyond Earth's atmosphere.
  4. A human-like robot with advanced capabilities.
  5. Instant transportation from one place to another.
  6. A creature that comes from a world other than Earth.
  7. Travel Moving through time to the past or future.

15 Clues: Anything originating from outside Earth.Protective gear astronauts wear in space.A human-like robot with advanced capabilities.Instant transportation from one place to another.The force that pulls objects towards one another.Travel Moving through time to the past or future.A creature that comes from a world other than Earth....

Scientific Conundrum 2024-10-31

Scientific Conundrum crossword puzzle
Across
  1. Rubber is a good_________
  2. ______ is responsible for its temperature
  3. Electricity is a type of energy
  4. When heat is flowing and mixing with the cold like two circles
  5. A kind of energy an object has in motion
  6. A object that allows energy to pass through
  7. Rays of light from the sun are called _________
  8. _______________ is the state of being the same temperature
Down
  1. The amount of mass an object takes
  2. When something is compact it is also_____
  3. A sound ____ is something that is moving
  4. The amount of stored energy an object has
  5. 11.5 degrees c is ___________
  6. A Flame is a type of____
  7. __________ is

15 Clues: __________ isA Flame is a type of____Rubber is a good_________11.5 degrees c is ___________Electricity is a type of energyThe amount of mass an object takesA sound ____ is something that is movingA kind of energy an object has in motionWhen something is compact it is also_____The amount of stored energy an object has...

Scientific Revolution 2025-12-05

Scientific Revolution crossword puzzle
Across
  1. a body of unchanging moral laws regarded as a basis for all human conduct
  2. a type of logic that involves drawing a broad, general conclusion from a set of specific observations
  3. the theory the sun is in the middle of the universe
  4. an instrument to see small objects close up
  5. the force of attraction between any two objects with mass
  6. the continuous movement of blood through the body, propelled by the heart's pumping action
  7. sentenced to death
  8. a movement where people used science instead of the churches word
Down
  1. two laws that explain the orbits of the earth
  2. the philosophical view that reason is the primary source and test of knowledge, rather than sensory experience
  3. the path planets take around the sun
  4. the laws that explain gravity
  5. the theory the earth was in the middle of the universe
  6. the invention Galileo made to see far away objects in space
  7. a systematic process for acquiring knowledge through observation and experimentation

15 Clues: sentenced to deaththe laws that explain gravitythe path planets take around the sunan instrument to see small objects close uptwo laws that explain the orbits of the earththe theory the sun is in the middle of the universethe theory the earth was in the middle of the universethe force of attraction between any two objects with mass...

Scientific reading 2025-11-25

Scientific reading crossword puzzle
Across
  1. The state of knowing or having perception of a situation or fact.
  2. To become liquefied by warmth or heat, as ice, snow, butter, or metal (past).
  3. Groups of two or more atoms that are bond together, represent the smallest fundamental unit.
  4. Process where one or more substances are transformed into new ones.
  5. The science, art and technology of enclosing or protecting products for distribution, storage, sale, and use.
  6. A small part or quantity intended to show what the whole is like.
  7. A store that sells food and small household goods.
Down
  1. To process food so that it can be absorbed into the body.
  2. Causing damage or injury to someone or something.
  3. To give a new form or shape to something (past).
  4. Sites for the disposal of waste materials.
  5. Decorative containers in which plants are grown.
  6. Decayed organic material used as a plant fertilizer.
  7. So small as to be visible.
  8. Proteins that help speed up metabolism, or the chemical reactions in our bodies.

15 Clues: So small as to be visible.Sites for the disposal of waste materials.To give a new form or shape to something (past).Decorative containers in which plants are grown.Causing damage or injury to someone or something.A store that sells food and small household goods.Decayed organic material used as a plant fertilizer....

Scientific terms 2025-11-26

Scientific terms crossword puzzle
Across
  1. the study of life and living organisms.
  2. single celled organisms, such as bacteria and archaea, whose cells lack a nucleus.
  3. a structure within eukaryotic cells that is surrounded by a double membrane and that contains the cell’s DNS.
  4. structures within the cytoplasm of eukaryotic cells that perform specific functions of the cell.
  5. adenosine triphosphate, the molecule that provides the energy for most cellular processes.
  6. organic molecules that consist of a single simple sugar or chains of simple sugar molecules.
  7. the process in plants and some other organisms in which light energy from the sun is converted into chemical energy in organic molecules.
  8. the basic units of life that make up all living organisms.
Down
  1. organisms whose cells have a true nucleus, such as protists, animals, plants and fungi.
  2. organic molecules composed of folded chains of amino acids.
  3. the organelles within plant cell in which photosynthesis occurs.
  4. eukaryotic organelles that break down organic molecules to produce ATP.
  5. hydrophobic organic molecules, many in which include fatty acids as a primary component.
  6. the part of a cell that is inside the cell membrane but outside nucleus.
  7. complex proteins that catalyze chemical reactions in living organisms.

15 Clues: the study of life and living organisms.the basic units of life that make up all living organisms.organic molecules composed of folded chains of amino acids.the organelles within plant cell in which photosynthesis occurs.complex proteins that catalyze chemical reactions in living organisms....

Scientific Fields 2025-09-03

Scientific Fields crossword puzzle
Across
  1. Human origins and cultural evolution
  2. Force and motion, laws of the universe
  3. Web of life, species and environment
  4. Weather’s patterns, clouds and storms
  5. Elemental science of reactions and bonds
  6. Mind’s maze, behavior and thought
  7. Fossil record of ancient life
  8. Plant science, green and growing
Down
  1. Earth’s rocky story, layers and time
  2. Study of life, from cells to ecosystems
  3. Deep sea science, currents and creatures
  4. Society’s structure, norms and change
  5. Animal study, wild and domestic
  6. Celestial study of stars and space
  7. Code of inheritance, DNA’s blueprint

15 Clues: Fossil record of ancient lifeAnimal study, wild and domesticPlant science, green and growingMind’s maze, behavior and thoughtCelestial study of stars and spaceEarth’s rocky story, layers and timeHuman origins and cultural evolutionWeb of life, species and environmentCode of inheritance, DNA’s blueprintSociety’s structure, norms and change...

Scientific Revolution 2025-12-08

Scientific Revolution crossword puzzle
Across
  1. - earth at the center of the universe
  2. - scientific observations and measurements
  3. - sun at the center of the universe
  4. - used to view small objects
  5. - a conclusion from observations
  6. - unchanging moral principles
  7. - a belief based on knowledge not religion
Down
  1. - sentenced to a deadly punishment
  2. - objects moving around in oval shaped movements
  3. - used to view far away objects
  4. - the social system in medieval Europe
  5. - force keeping us on the ground
  6. - how forces affect moving objects
  7. - experimental period in history
  8. - government system when priests act as a god

15 Clues: - used to view small objects- unchanging moral principles- used to view far away objects- force keeping us on the ground- experimental period in history- a conclusion from observations- sentenced to a deadly punishment- how forces affect moving objects- sun at the center of the universe- earth at the center of the universe...

Technology and Knowledge INTRO crossword 2025-12-08

Technology and Knowledge INTRO crossword crossword puzzle
Across
  1. A conceptual technology that allows abstract knowledge to be represented, communicated and tested
  2. A knowledge-preservation method that relies on community rather than physical storage
  3. A legal and historical technology used to certify authenticity and authority
  4. A rule-based procedure that enables both human and machine reasoning but does not guarantee understanding
  5. A method of knowledge production involving systematic observation, testing and revision
  6. A technology that standardised texts, increased literacy, and reduced reliance on authority-based knowledge
  7. A scientific tool that reshaped biology by altering what was considered observable and real
Down
  1. A system that stores vast amounts of information but relies on users to turn it into knowledge
  2. A technology that preserves visual knowledge while framing reality through perspective and selection
  3. A technology that transformed knowledge by allowing ideas to survive beyond individual human memory
  4. A technology that challenged humanity’s position in the universe by extending perception beyond Earth
  5. A non-digital object that stores knowledge but does not by itself guarantee truth or understanding
  6. A measuring technology that allowed knowledge to become more precise and less dependent on human judgement
  7. A system used to classify and retrieve knowledge, shaping what is easy or difficult to find

14 Clues: A legal and historical technology used to certify authenticity and authorityA knowledge-preservation method that relies on community rather than physical storageA method of knowledge production involving systematic observation, testing and revisionA system used to classify and retrieve knowledge, shaping what is easy or difficult to find...

chapter Five 2024-11-06

chapter Five crossword puzzle
Across
  1. the liquid with the lowest boiling point
  2. the time a substance spends in a column in gas chromatography
  3. separation method based on difference in solubility
  4. separation method based on difference in density
  5. separation method on how well molecules adhere or dissolve
  6. How well molecules ‘stick’
Down
  1. number of grams of a substance that can dissolve in a litre of water
  2. concentration in g/l
  3. sedimentation on speed
  4. the percentage of the substance that is successfully separated
  5. separation method to separate a solute from a liquid
  6. separation method for liquids based on difference in boiling point
  7. separation method that is based on how well molecules ‘stick’ to the surface of the agent
  8. a solution containing the maximum amount of substance
  9. substance remaining in the filter
  10. separation method based on difference in particle size
  11. Liquid that passes through the filter
  12. how much stuff is dissolved in a litre

18 Clues: concentration in g/lsedimentation on speedHow well molecules ‘stick’substance remaining in the filterLiquid that passes through the filterhow much stuff is dissolved in a litrethe liquid with the lowest boiling pointseparation method based on difference in densityseparation method based on difference in solubility...

Psychology 2023-09-28

Psychology crossword puzzle
Across
  1. Sampling method where the population is divided in subgroups
  2. Method researchers use to answer questions about cause and effect is the experiment
  3. study Is an in-depth investigation of an individual or a small group
  4. Research method where behavior is observed in a laboratory
  5. A measure of how closely one thing is related to another
  6. Whole group you want to study
  7. Research method where researchers select people of different ages
  8. An educated guess
  9. Research method where participants are observed over a period of time
Down
  1. A factor that can vary or change.
  2. A systematic difference between individuals who volunteer in a study and those who dont
  3. Random subset of a population
  4. Research method where behavior is observed in their natural setting
  5. When a study is repeated
  6. As one variable increases, the other variable also increases
  7. Only a part of a set of individuals
  8. As one variable increases, the other variable decreases
  9. Abstract concept not directly observable
  10. Predisposition to a certain point of view
  11. Research method where people go through standardized questions

20 Clues: An educated guessWhen a study is repeatedRandom subset of a populationWhole group you want to studyA factor that can vary or change.Only a part of a set of individualsAbstract concept not directly observablePredisposition to a certain point of viewAs one variable increases, the other variable decreases...

Science vocab 2022-10-06

Science vocab crossword puzzle
Across
  1. dating any method of measuring the age of an event or object in years Radioactive decay the process in which a radioactive isotope tends to break down into a stable isotope of the same element or another element.
  2. the trace or remains of an organism that lived long ago, most commonly preserved in sedimentary rock Ice core a long cycling of ice obtained from drilling through ice caps or ice sheets, used to study past climate.
  3. a principle that geologic process that occurred in the past can be explained by current geologic processes.
  4. time scale the standard method used to divide Earth's long natural history into manageable parts.
  5. the time required for half of a sample of a radioactive isotope to break down by radioactive decay to form a daughter isotope.
Down
  1. dating a method of determining the absolute age of an object a method of determining the absolute age of an object by comparing the relative percentage of a radioactive (parent) isotope and a stable (daughter) isotope.
  2. a break in the geologic record created when rock layers are eroded or when sediment is not deposited for a long period of time.
  3. a principle that states that younger rocks lie above older rocks if the layers have not been distributed.
  4. the weather conditions in an area over a long period of time
  5. fossil a fossilized structure, such as a footprint or a coprolite, that formed in sedimentary rock by an animal activity on or within soft sediment. Relative dating any method of determining whether an event or object is older or younger than other events or objects.
  6. column an ordered arrangement of rock layers that is based on the relative ages of the rocks and in which the oldest rocks are at the bottom.
  7. the scientific study of the origin, history, and structure of Earth and the process that shape Earth.

12 Clues: the weather conditions in an area over a long period of timetime scale the standard method used to divide Earth's long natural history into manageable parts.the scientific study of the origin, history, and structure of Earth and the process that shape Earth....

Scientific Revolution 2024-03-12

Scientific Revolution crossword puzzle
Across
  1. hooke English scientist who formulated the law of elasticity and proposed a wave theory of light and formulated a theory of planetary motion and proposed the inverse square law of gravitational attraction and discovered the cellular structure of cork and introduced the term cell' into biology and invented a balance spring for watches (1635-1703)
  2. the force of attraction between all masses in the universe
  3. method a method of investigation involving observation and theory to test scientific hypotheses
Down
  1. having or representing the sun as the center, as in the accepted astronomical model of the solar system.
  2. bacon English statesman and philosopher; precursor of British empiricism; advocated inductive reasoning (1561-1626)
  3. kepler German astronomer who first stated laws of planetary motion (1571-1630)
  4. galilei Italian astronomer and mathematician who was the first to use a telescope to study the stars; demonstrated that different weights descend at the same rate; perfected the refracting telescope that enabled him to make many discoveries (1564-1642)

7 Clues: the force of attraction between all masses in the universekepler German astronomer who first stated laws of planetary motion (1571-1630)method a method of investigation involving observation and theory to test scientific hypotheseshaving or representing the sun as the center, as in the accepted astronomical model of the solar system....

pychology 2025-10-23

pychology crossword puzzle
Across
  1. An early psychological approach focusing on how mental processes help individuals adapt to their environment.
  2. sample, A subset of a population that accurately reflects the characteristics of the larger group.
  3. perspective, A broad term referring to various approaches used to understand behavior and mental processes.
  4. perspective, Same as behaviorism, focusing on observable behavior and learning through conditioning
  5. A well-substantiated explanation of some aspect of the natural world, based on evidence.
  6. study, An in-depth analysis of an individual or group to explore psychological phenomena.
  7. perspective, The study of how natural selection and adaptation influence behavior and mental processes.
  8. perspective, An approach emphasizing personal growth, free will, and the inherent goodness of people.
  9. perspective, A focus on strengths, well-being, and factors that contribute to human flourishing.
  10. psychology, A perspective emphasizing that people perceive whole patterns or configurations, not just individual components.
  11. perspective, An approach examining how biological processes, such as brain function and genetics, influence behavior.
Down
  1. perspective, The study of mental processes like thinking, memory, problem-solving, and language.
  2. The scientific study of behavior and mental processes.
  3. method, A systematic process for investigating questions through observation, experimentation, and analysis.
  4. A perspective that focuses on observable behaviors and the ways they are learned or conditioned.
  5. A testable prediction about the relationship between two or more variables.

16 Clues: The scientific study of behavior and mental processes.A testable prediction about the relationship between two or more variables.A well-substantiated explanation of some aspect of the natural world, based on evidence.study, An in-depth analysis of an individual or group to explore psychological phenomena....

AP Stats Randomness and Sampling 2023-10-20

AP Stats Randomness and Sampling crossword puzzle
Across
  1. bias where certain groups are underrepresented
  2. sampling method where the population is organized in strata
  3. way to know something about a population
  4. sampling method where the population is divided into logical clusters, which are randomly picked to record every member
  5. bias where the questions asked or order asked tend to lean towards certain answers
  6. sampling method where people are asked to participate
  7. sampling method where every sample of a given size has an equal chance of selection
  8. sampling method where the population is not organized in any manner with respect to the variety of interests
  9. different results from different samples; AKA sampling errors
  10. sampling method that combines multiple methods
Down
  1. information you get from the sample
  2. approximation of the parameter found through statistics
  3. sampling method where only easily observed members of thee population are recorded
  4. sampling method where everyone in the population is observed
  5. what's recorded after the trial
  6. information you want to know about a population
  7. sampling method that doesn't include all the population of interest
  8. questions asked of a sample to get an estimate of opinions of a population
  9. sequence of events you want to simulate
  10. list of the entire population
  11. most basic part of a simulation
  12. bias where selected individuals aren't available or don't respond
  13. way to model random events so outcomes are close to real life
  14. group of something you are sampling

24 Clues: list of the entire populationwhat's recorded after the trialmost basic part of a simulationinformation you get from the samplegroup of something you are samplingsequence of events you want to simulateway to know something about a populationbias where certain groups are underrepresentedsampling method that combines multiple methods...

Science Definitions 2013-11-28

Science Definitions crossword puzzle
Across
  1. a sheet of information in the form of a table, graph, or diagram
  2. a scientific procedure undertaken to make a discovery, test a hypothesis, or demonstrate a known fact
  3. The use of senses to gather information; in science, often aided by instruments such as telescopes, thermometers and balances
  4. carry out a systematic or formal inquiry to discover and examine the facts of (an incident, allegation, etc.) so as to establish the truth
  5. the way in which two or more concepts, objects, or people are connected, or the state of being connected
  6. a diagram showing the relation between variable quantities, typically of two variables, each measured along one of a pair of axes at right angles with the responding variable on the vertical axes
  7. a first or preliminary model of something, esp. a machine, from which other forms are developed or copied
  8. An explanation of an event that has been supported by consistent, repeated experimental results and has therefore been accepted by a majority of scientists
  9. act in such a way as to have an effect on another; act on each other in return
  10. facts and statistics collected together for reference or analysis
Down
  1. explain the meaning of (information, words, or actions)
  2. relating to, measuring, or measured by the quality of something rather than its quantity
  3. Method a method of procedure that has characterized natural science since the 17th century, consisting in systematic observation, measurement, and experiment, and the formulation, testing, and modification of hypotheses
  4. relating to, measuring, or measured by the quantity of something rather than its quality (numbers)
  5. A factor that can influence the outcome of an experiment
  6. a measure of the estimated difference between the observed or calculated value of a quantity and its true value
  7. the available body of facts or information indicating whether a belief or proposition is true or valid
  8. An interpretation of the results of an experiment as it applies to the hypothesis being tested
  9. the equipment needed for a particular activity or purpose
  10. A statement of a proposed relationship, based on background information or an observed pattern of events, and stated in a way that makes it testable
  11. a series of actions conducted in a certain order or manner
  12. examine methodically and in detail the constitution or structure of (something, esp. information), typically for purposes of explanation and interpretation

22 Clues: explain the meaning of (information, words, or actions)A factor that can influence the outcome of an experimentthe equipment needed for a particular activity or purposea series of actions conducted in a certain order or mannera sheet of information in the form of a table, graph, or diagram...

September Review 2020-09-17

September Review crossword puzzle
Across
  1. a scientific tool used to measure an object's weight
  2. a natural, observable event
  3. scientific data that supports a claim
  4. the top part of a wave
  5. the ability to do work, to make things happen, and to cause changes
  6. a scientific tool used to measure temperature
Down
  1. a statement that answers a question
  2. related to science
  3. vibrations that travel through the air
  4. the up-and-down movement of surface water
  5. the abbreviation for Science, Technology, Engineering, and Math
  6. using scientific ideas to explain how and why your evidence supports your claim

12 Clues: related to sciencethe top part of a wavea natural, observable eventa statement that answers a questionscientific data that supports a claimvibrations that travel through the airthe up-and-down movement of surface watera scientific tool used to measure temperaturea scientific tool used to measure an object's weight...

bones and hinges 2016-01-20

bones and hinges crossword puzzle
Across
  1. this protects the brain
  2. the joint that allows only little movement
  3. the joint that allows no movement at all
  4. the bone that protects the heart and lungs
  5. the scientific words for the spin
  6. the scientific word for fingers
  7. the joint that the hinge joint could be known as
Down
  1. the scientific word for ball and socket joints
  2. the scientific word for the knee bone
  3. the scientific word for the funny bone
  4. the thing that fixed joints are connected by
  5. the largest hinge joint in the body

12 Clues: this protects the brainthe scientific word for fingersthe scientific words for the spinthe largest hinge joint in the bodythe scientific word for the knee bonethe scientific word for the funny bonethe joint that allows no movement at allthe joint that allows only little movementthe bone that protects the heart and lungs...

psychology 2025-10-23

psychology crossword puzzle
Across
  1. An early psychological approach focusing on how mental processes help individuals adapt to their environment.
  2. sample, A subset of a population that accurately reflects the characteristics of the larger group.
  3. perspective, A broad term referring to various approaches used to understand behavior and mental processes.
  4. perspective, Same as behaviorism, focusing on observable behavior and learning through conditioning
  5. A well-substantiated explanation of some aspect of the natural world, based on evidence.
  6. study, An in-depth analysis of an individual or group to explore psychological phenomena.
  7. perspective, The study of how natural selection and adaptation influence behavior and mental processes.
  8. perspective, An approach emphasizing personal growth, free will, and the inherent goodness of people.
  9. perspective, A focus on strengths, well-being, and factors that contribute to human flourishing.
  10. psychology, A perspective emphasizing that people perceive whole patterns or configurations, not just individual components.
  11. perspective, An approach examining how biological processes, such as brain function and genetics, influence behavior.
Down
  1. perspective, The study of mental processes like thinking, memory, problem-solving, and language.
  2. The scientific study of behavior and mental processes.
  3. method, A systematic process for investigating questions through observation, experimentation, and analysis.
  4. A perspective that focuses on observable behaviors and the ways they are learned or conditioned.
  5. A testable prediction about the relationship between two or more variables.

16 Clues: The scientific study of behavior and mental processes.A testable prediction about the relationship between two or more variables.A well-substantiated explanation of some aspect of the natural world, based on evidence.study, An in-depth analysis of an individual or group to explore psychological phenomena....

Agricultural science cross word. 2022-11-20

Agricultural science cross word. crossword puzzle
Across
  1. ager.
  2. storage structure for grains
  3. scientific name for human
  4. breast bone.
  5. order of the great apes
  6. scientific name for yam.
  7. they give birth alife.
Down
  1. a person who sells fish
  2. scirose.
  3. 1 year crops
  4. the ankle bone
  5. scientific name for cobra's
  6. a dry place.

13 Clues: ager.scirose.1 year cropsbreast bone.a dry place.the ankle bonethey give birth alife.a person who sells fishorder of the great apesscientific name for yam.scientific name for humanscientific name for cobra'sstorage structure for grains

psychology 2025-10-23

psychology crossword puzzle
Across
  1. An early psychological approach focusing on how mental processes help individuals adapt to their environment.
  2. sample, A subset of a population that accurately reflects the characteristics of the larger group.
  3. perspective, A broad term referring to various approaches used to understand behavior and mental processes.
  4. perspective, Same as behaviorism, focusing on observable behavior and learning through conditioning
  5. A well-substantiated explanation of some aspect of the natural world, based on evidence.
  6. study, An in-depth analysis of an individual or group to explore psychological phenomena.
  7. perspective, The study of how natural selection and adaptation influence behavior and mental processes.
  8. perspective, An approach emphasizing personal growth, free will, and the inherent goodness of people.
  9. perspective, A focus on strengths, well-being, and factors that contribute to human flourishing.
  10. psychology, A perspective emphasizing that people perceive whole patterns or configurations, not just individual components.
  11. perspective, An approach examining how biological processes, such as brain function and genetics, influence behavior.
Down
  1. perspective, The study of mental processes like thinking, memory, problem-solving, and language.
  2. The scientific study of behavior and mental processes.
  3. method, A systematic process for investigating questions through observation, experimentation, and analysis.
  4. A perspective that focuses on observable behaviors and the ways they are learned or conditioned.
  5. A testable prediction about the relationship between two or more variables.

16 Clues: The scientific study of behavior and mental processes.A testable prediction about the relationship between two or more variables.A well-substantiated explanation of some aspect of the natural world, based on evidence.study, An in-depth analysis of an individual or group to explore psychological phenomena....

psychology 2025-10-23

psychology crossword puzzle
Across
  1. An early psychological approach focusing on how mental processes help individuals adapt to their environment.
  2. sample, A subset of a population that accurately reflects the characteristics of the larger group.
  3. perspective, A broad term referring to various approaches used to understand behavior and mental processes.
  4. perspective, Same as behaviorism, focusing on observable behavior and learning through conditioning
  5. A well-substantiated explanation of some aspect of the natural world, based on evidence.
  6. study, An in-depth analysis of an individual or group to explore psychological phenomena.
  7. perspective, The study of how natural selection and adaptation influence behavior and mental processes.
  8. perspective, An approach emphasizing personal growth, free will, and the inherent goodness of people.
  9. perspective, A focus on strengths, well-being, and factors that contribute to human flourishing.
  10. psychology, A perspective emphasizing that people perceive whole patterns or configurations, not just individual components.
  11. perspective, An approach examining how biological processes, such as brain function and genetics, influence behavior.
Down
  1. perspective, The study of mental processes like thinking, memory, problem-solving, and language.
  2. The scientific study of behavior and mental processes.
  3. method, A systematic process for investigating questions through observation, experimentation, and analysis.
  4. A perspective that focuses on observable behaviors and the ways they are learned or conditioned.
  5. A testable prediction about the relationship between two or more variables.

16 Clues: The scientific study of behavior and mental processes.A testable prediction about the relationship between two or more variables.A well-substantiated explanation of some aspect of the natural world, based on evidence.study, An in-depth analysis of an individual or group to explore psychological phenomena....

Methods: In-depth 2014-11-01

Methods: In-depth crossword puzzle
Across
  1. the method body begins and ends with these
  2. return type = text
  3. return type of either true or false
  4. the method that gets each and every Java program up and running
  5. code that invokes a method
  6. used to enclose the parameter list
  7. type of CamelCase used in naming a method
Down
  1. return type = number with decimal places shown
  2. used to separate parameters
  3. return type = number
  4. information that is passed to a method
  5. for example: public, private, protected
  6. number of components in method declarations
  7. keyword used to ensure that a method produces something
  8. if the method does not return a value

15 Clues: return type = textreturn type = numbercode that invokes a methodused to separate parametersused to enclose the parameter listreturn type of either true or falseif the method does not return a valueinformation that is passed to a methodfor example: public, private, protectedtype of CamelCase used in naming a method...

Human Development (ch.1-7) 2014-04-19

Human Development (ch.1-7) crossword puzzle
Across
  1. for a infant to reach a certain destination they have to have a ___.
  2. code/ T,A,G, and C are what to the DNA molecule
  3. method/ this process has five step and it is used to avoid unexamined options and to retain in personal biases.
  4. he published his ideas about plants, insects, birds, and animals developed over billions of years ago.
  5. bonding/ the strong, loving connection that forms as parents hold,examine, and fees their newborns.
  6. who determines the gender of the child.
  7. a ____ is a single cell of 46 chromosomes that begin a human life.
  8. infant death syndrome/ a situation in which a healthy looking baby, usually between 2 and 6 month suddenly stops breathing unexpectedly while sleeping.
  9. theory/ a systematic statement of general principles that provides a coherent framework for understanding as how/why people change when they for when they grow older.
  10. brain and spinal cord begin with nerve cells called ____.
  11. this includes the environmental influences that affect the individual starting from everything that happens inside of the mother's embryo.
  12. this is the third research method
  13. how many stages does does the sensorimotor intelligence have?
Down
  1. this is when a fetus is removed through incisions in the mothers abdomen.
  2. /primes the body's system to resist a specific contagious disease.
  3. scale/ a quick assessment of a newborns health.
  4. biopsychosocial, a term that expresses the ________ of domains.
  5. is similar to an x-ray but uses sound waves instead of radiation.
  6. skills are the movements abilities that are needed to control ___.
  7. sleep/a stage of sleep characterized by flickering eyes behind closed lids.
  8. intersection between the axon of one neuron and the dendrites of other neurons.
  9. XY is an ordered pair of a male or female ?
  10. the grand theory of human development that studies observable behavior.
  11. _____ produce hypotheses, generates discoveries, and offer practical guidance.
  12. he agreed that that psychology should focus on the scientific study of behavior.
  13. how many stages are there during the prenatal growth?
  14. cliff/ this is designated to provide the illusion of a sudden drop-off between one horizontal surface and another.
  15. this is usually located at a specific spot on a particular chromosome.

28 Clues: this is the third research methodwho determines the gender of the child.XY is an ordered pair of a male or female ?scale/ a quick assessment of a newborns health.code/ T,A,G, and C are what to the DNA moleculehow many stages are there during the prenatal growth?brain and spinal cord begin with nerve cells called ____....

Animals 2021-01-11

Animals crossword puzzle
Across
  1. young domestic hen, usually less then six months
  2. hatched or born in an undeveloped state and requiring care and feeding by the parents.
  3. Type of behaviour protecting a resource for exclusive use
  4. the condition or period of an animal or plant spending the winter in a dormant state.
  5. the scientific name for birds
  6. hatched or born in an advanced state and able to feed itself almost immediately.
  7. Having a single stomach chamber; able to digest limited fibrous materials
  8. taurus scientific name for domesticated or English breeds of cattle
  9. castrated cockerel
  10. Scrofa Scientific name for swine originating from European breeds
  11. Taking the baby off of the mother’s milk.
Down
  1. A bolus of forage material that a ruminant animal regurgitates to be chewed again
  2. the scientific name for rabbits
  3. period Known as the time period of when an animal is pregnant.
  4. unusual birth process is when the female snake has clear or invisible eggs inside of her that holds the offspring
  5. What is a female pig that hasn't had a litter of pigs?
  6. Scientific name for goats
  7. name for a young llama
  8. the female snake holds the offspring in placenta or yolk sacs inside of her until they are ready for birth.
  9. domestic farm animals kept for productive purposes
  10. a female donkey
  11. Equine animal which stands under 14.2 hands
  12. What is a castrated male pig?

23 Clues: a female donkeycastrated cockerelname for a young llamaScientific name for goatsthe scientific name for birdsWhat is a castrated male pig?the scientific name for rabbitsTaking the baby off of the mother’s milk.Equine animal which stands under 14.2 handsyoung domestic hen, usually less then six months...

Biol 1308 Chapter 1 2016-12-19

Biol 1308 Chapter 1 crossword puzzle
Across
  1. blind/experimental design protocol when both research subjects and scientists performing the measurements are unaware of either the experimental hypothesis or who is in the control or experimental group.
  2. error/effect of chance on experimental results.
  3. variable/a factor whose value influences the value of the dependent variable, but is not influenced by it; the value that is manipulated.
  4. variable/the value in a study that is expected to change in response to changes in the independent variable.
  5. to be proved false.
  6. branch of mathematics used in the evaluation of experimental data.
  7. a relationship between two factors.
  8. hypothesis/factor other than the tested hypothesis that may explain observations.
  9. situation designed to test specific hypotheses.
  10. significant/said of results for which there is a low probability that experimental groups differ simply by chance.
  11. theory/scientific theory that all infectious diseases are caused by microorganisms.
  12. subgroup of a population used in an experimental test.
Down
  1. to evaluate through observations of the measurable universe.
  2. reasoning/a logical process that argues from specific instances to a general conclusion.
  3. for an experiment who is similar to experimental subject except is not exposed to experimental treatment; used as baseline values for comparison.
  4. tentative explanation for an observation that requires testing to validate.
  5. that something is the case or will happen.
  6. method/a systematic method of research consisting of putting a hypothesis to a test designed to disprove it,if in fact it is false.
  7. reasoning/making a prediction of an outcome of a test; an if/then statement.
  8. in the traits of individuals in a biological population that occur over the course of generations.
  9. vertical axis of a graph; the dependent variable.
  10. horizontal axis of a graph; the independent variable.
  11. expected from a particular test of a hypothesis if the hypothesis were true.
  12. size/number of individuals in both the experimental and control groups.
  13. of evolution/theory that all organisms on Earth today are descendants of a single ancestor that arose in the distant past.
  14. experiment/tests in which subjects are not aware exactly of what they are predicted to experience.

26 Clues: to be proved false.a relationship between two factors.that something is the case or will happen.error/effect of chance on experimental results.situation designed to test specific hypotheses.vertical axis of a graph; the dependent variable.horizontal axis of a graph; the independent variable.subgroup of a population used in an experimental test....

Age of Exploration, Sci Rev, and Enlightenment 2018-11-13

Age of Exploration, Sci Rev, and Enlightenment crossword puzzle
Across
  1. A trade route in which manufactured goods were taken to Africa in exchange for slaves, slaves were then taken to the Americas to trade for raw goods, and finally those materials were taken back to Europe to be manufactured into more goods.
  2. Defined the universal law of gravitation explaining why objects in space and on Earth move
  3. Came up with the heliocentric universe where the planets revolved around the sun
  4. Sailed west to find a shorter route to Asia than around Africa and accidentally found the American continent
  5. Belief that reason is the main or chief source of knowledge
  6. Women's Rights activist that argued enlightenment ideas of freedom and equality should apply to women
  7. From 1500-1800 European nations explored to find and control new lands and precious natural resources.
  8. a systematic procedure for collecting and analyzing evidence
  9. Father of rationalism; he established that we know we can exist because we can think about our existence
  10. Said people were born with a blank mind, Tabula Rasa, and were molded by their experiences
Down
  1. a period when philosophers believed that they could apply the scientific method and use reason to explain human nature logically and help society
  2. A closed trade system to benefit the Mother Country forced colonies to sell their raw materials and buy manufactured goods only to and from the Mother Country.
  3. Conquerors of the Americas.
  4. making general conclusions from particular observations
  5. Ptolemaic Theory of the earth being the center of the universe
  6. Wrote about the social contract; believed society came together to be governed by the general will of the people which was freedom
  7. Used the telescope to find planets were made of material substance, like the Earth
  8. Someone who studies wisdom; the love to study
  9. Showed orbits of planets were elliptical confirming the heliocentric universe with his laws of planetary motion
  10. A large movement of new species of plants and animals between Europe and the Americas. Ideas and people moved as well.
  11. Copernican Theory of the sun being the center of the universe
  12. Developed the scientific method and pushed people to use inductive reasoning instead of relying on ancient ideas
  13. Spanish explorer who found the western route to Asia and is known for circumnavigating the globe.

23 Clues: Conquerors of the Americas.Someone who studies wisdom; the love to studymaking general conclusions from particular observationsBelief that reason is the main or chief source of knowledgea systematic procedure for collecting and analyzing evidenceCopernican Theory of the sun being the center of the universe...

PHYSICS CROSSWORD 2022-11-10

PHYSICS CROSSWORD crossword puzzle
Across
  1. A measure of the amount of matter in an object
  2. the rate at which speed changes caused by the forward force being greater than the backwards force
  3. A physical quantity that has magnitude only.
  4. How far an object moves
  5. a vector that represents the sum of two or more vectors
  6. the ratio of the magnitude of the force of friction between two objects in contact to the magnitude of the normal force with which the objects press against each other
  7. friction that occurs as an object moves through a fluid
  8. A unit of measure that equals the force required to accelerate 1 kilogram of mass at 1 meter per second per second
  9. a type of fluid friction, occurs as objects move through the air.
  10. Distance and direction of an object's change in position from the starting point.
Down
  1. a²+b²=c²
  2. a friction force that acts on objects that are not moving
  3. Forces that produce a nonzero net force, which changes an object's motion
  4. A method of writing or displaying numbers in terms of a decimal number between 1 and 10 multiplied by a power of 10.
  5. A push or pull exerted on an object
  6. A series of steps followed to solve problems including collecting data, formulating a hypothesis, testing the hypothesis, and stating conclusions.
  7. A force that pulls objects toward each other and is affected positively by mass and negatively by distance.
  8. Equal forces acting on an object in opposite directions (net force = 0 )
  9. friction that occurs when an object rolls over a surface
  10. The overall force on an object when all the individual forces acting on it are added together
  11. how close a measurement is to the true value
  12. the speed of an object at one instant of time
  13. A quantity that has magnitude and direction
  14. A measure of the force of gravity on an object; varies with the strength of the gravitational field.
  15. friction that occurs when one solid surface slides over another
  16. A part or element of a larger whole.
  17. The force that two surfaces exert on each other when they rub against each other.

27 Clues: a²+b²=c²How far an object movesA push or pull exerted on an objectA part or element of a larger whole.A quantity that has magnitude and directionhow close a measurement is to the true valueA physical quantity that has magnitude only.the speed of an object at one instant of timeA measure of the amount of matter in an object...

Unit 10 Vocab 2026-04-01

Unit 10 Vocab crossword puzzle
Across
  1. a larger, more inclusive taxonomic category than a kingdom (there are 3-Bacteria, Archaea, and Eukarya)
  2. descent a term within evolutionary biology which refers to the common ancestry of a particular group of organisms.
  3. heritable characteristic that increases an organism's ability to survive and reproduce in an environment
  4. selection selective breeding of plants and animals to promote the occurrence of desirable traits in offspring
  5. dating method for determining the age of a sample from the amount of a radioactive isotope to the nonradioactive isotope of the same element in a sample
  6. diagram depicting patterns of shared characteristics among species
  7. character a trait that arose in the most recent common ancestor of a lineage and was passed to its descendants
  8. how well an organism can survive and reproduce in its environment
  9. structure structures that are similar in different species of common ancestry
  10. the study of the evolutionary history of lineages of organisms
  11. change over time; the process by which modern organisms have descended from ancient organisms
  12. dating method of determining the age of a fossil by comparing its placement with that of fossils in other rock layers
  13. name refers to the colloquial name of a taxon or species. It is the name known to the general public or is based on any language
  14. the study of past and present distribution of organisms
Down
  1. nomenclature classification system in which each species is assigned a two-part scientific name
  2. evolutionary branch of a cladogram that includes a single ancestor and all its descendants
  3. refers to an individual with characteristics different from the others of the same kind.
  4. preserved remains or traces of ancient organisms
  5. structure body parts that share a common function, but not structure
  6. selection process by which organisms that are most suited to their environment survive and reproduce most successfully; also called survival of the fittest
  7. fossil distinctive fossil that is used to compare the relative ages of fossils
  8. structure structure that is inherited from ancestors but has lost much or all of its original function
  9. molecules molecules in different organisms that show similarities in their composition (DNA, RNA and proteins)
  10. the branch of biology and medicine concerned with the study of embryos and their development.
  11. name A name used by scientists, especially the taxonomic name of an organism that consists of the genus and species
  12. classification comprising related organisms that share common characteristics and are capable of interbreeding

26 Clues: preserved remains or traces of ancient organismsthe study of past and present distribution of organismsthe study of the evolutionary history of lineages of organismshow well an organism can survive and reproduce in its environmentdiagram depicting patterns of shared characteristics among species...

unit 10 vocab 2026-04-02

unit 10 vocab crossword puzzle
Across
  1. a larger, more inclusive taxonomic category than a kingdom (there are 3-Bacteria, Archaea, and Eukarya)
  2. descent a term within evolutionary biology which refers to the common ancestry of a particular group of organisms.
  3. heritable characteristic that increases an organism's ability to survive and reproduce in an environment
  4. selection selective breeding of plants and animals to promote the occurrence of desirable traits in offspring
  5. dating method for determining the age of a sample from the amount of a radioactive isotope to the nonradioactive isotope of the same element in a sample
  6. diagram depicting patterns of shared characteristics among species
  7. character–a trait that arose in the most recent common ancestor of a lineage and was passed to its descendants
  8. how well an organism can survive and reproduce in its environment
  9. structure structures that are similar in different species of common ancestry
  10. the study of the evolutionary history of lineages of organisms
  11. change over time; the process by which modern organisms have descended from ancient organisms
  12. dating method of determining the age of a fossil by comparing its placement with that of fossils in other rock layers
  13. name refers to the colloquial name of a taxon or species. It is the name known to the general public or is based on any language
  14. the study of past and present distribution of organisms
Down
  1. nomenclature classification system in which each species is assigned a two-part scientific name
  2. evolutionary branch of a cladogram that includes a single ancestor and all its descendants
  3. refers to an individual with characteristics different from the others of the same kind.
  4. preserved remains or traces of ancient organisms
  5. structure body parts that share a common function, but not structure
  6. selection process by which organisms that are most suited to their environment survive and reproduce most successfully; also called survival of the fittest
  7. fossil distinctive fossil that is used to compare the relative ages of fossils
  8. structure structure that is inherited from ancestors but has lost much or all of its original function
  9. molecules molecules in different organisms that show similarities in their composition (DNA, RNA and proteins)
  10. the branch of biology and medicine concerned with the study of embryos and their development.
  11. name A name used by scientists, especially the taxonomic name of an organism that consists of the genus and species
  12. classification comprising related organisms that share common characteristics and are capable of interbreeding

26 Clues: preserved remains or traces of ancient organismsthe study of past and present distribution of organismsthe study of the evolutionary history of lineages of organismsdiagram depicting patterns of shared characteristics among speciesstructure body parts that share a common function, but not structure...

Forensics Review 2023-03-06

Forensics Review crossword puzzle
Across
  1. Rights a list of rights that police in the United States must read to suspects in custody before questioning them, pursuant to the Supreme Court decision in Miranda v. Arizona.
  2. a pigment that gives the skin its color
  3. study of the dynamics or flight characteristics of projectiles
  4. not directly caused by or resulting from something.
  5. study of form
  6. Exchange principle
  7. identification of a user based on a physical characteristic, such as a fingerprint, iris, face, voice, or handwriting
  8. in evidence law, tending to prove something
  9. small or trivial details, trifling matters
  10. Revision of the Frye Standard for admissibility of expert scientific evidence
  11. kind of evidence that identifies a particular person or thing
  12. the matter from which a thing is or can be made.
  13. impression left on any surface that consists of patterns made by the ridges on a finger
  14. hearing in which a suspect is charged and pleads guilty or not guilty
  15. waxy covering on the surface of stems and leaves that acts as an adaptation to prevent desiccation in terrestrial plants.
  16. material that connects an individual or thing to a certain group
  17. period of break down and change of hair growth
  18. serious crime
  19. theories based on distorted, flawed, or untested hypotheses not derived from or tested by the scientific method
  20. present but not realized
Down
  1. irregularly shaped air spaces in the cortex
  2. study of the measurements & proportions of the human body.
  3. examination of physical evidence
  4. material that comes from a proven or known source
  5. a long molecule consisting of many similar or identical monomers linked together.
  6. hard protein material found in the epidermis, hair, and nails
  7. proof
  8. able to be seen
  9. The period of active growth
  10. the base of the brainstem; controls heartbeat and breathing
  11. study of teeth
  12. to be molded, altered, or bent
  13. division into two
  14. outer layer of the kidney
  15. material that is similar to the questioned and known samples, and is used to validate the test method and procedure
  16. phase of hair growth
  17. gossip or rumor
  18. suggesting that something is true without proving it
  19. study of fingerprints

39 Clues: proofstudy of formserious crimestudy of teethable to be seengossip or rumordivision into twoExchange principlephase of hair growthstudy of fingerprintspresent but not realizedouter layer of the kidneyThe period of active growthto be molded, altered, or bentexamination of physical evidencea pigment that gives the skin its color...

Fossil and Rock Record 2025-10-28

Fossil and Rock Record crossword puzzle
Across
  1. a fossil that is found in the rock layers of only one geologic age and that is used to establish the age of the rock layers
  2. an atom that has the same number of protons as the other atoms of the same element do but that has different number of neutrons
  3. the time needed for half of a sample of radioactive substance to undergo decay
  4. column an arrangement of rock layers in which the oldest rocks are at the bottom
  5. a method of determining the age of an object by estimating the relative percentages of radioactive isotope and a stable isotope
  6. a fossilized mark that formed in soft sediment by the movement of an animal
  7. a type of fossil that forms when sediments fill in the cavity left by a decomposed organism
  8. a process that states geological processes that occurred in the past can be explained by current geologic processes
  9. a mark or cavity made in a sedimentary surface by a shell or other body
  10. a break in the logic record created when rock layers are eroded or when sediment is not deposited for a long period of time
Down
  1. any method of measuring the age of an event or object in years
  2. a principle that states that younger rocks lie above older rocks if the layers have not been disturbed
  3. a principle that states that geologic change occurs suddenly
  4. any method of determining whether an event or object is older or younger than other events or objects
  5. scientific study of fossils
  6. the trace or remains of an organism that lived long ago, most commonly preserved in sedimentary rock

16 Clues: scientific study of fossilsa principle that states that geologic change occurs suddenlyany method of measuring the age of an event or object in yearsa mark or cavity made in a sedimentary surface by a shell or other bodya fossilized mark that formed in soft sediment by the movement of an animal...

Work oriented Method 2022-02-25

Work oriented Method crossword puzzle
Across
  1. Seringkali, analis akan mengamati pekerjaan yang sedang dilakukan. Pemegang jabatan atau supervisor dapat menjelaskan apa yang terjadi saat pekerjaan sedang dilakukan.
  2. teknik yang dikembangkan dan digunakan dalam beberapa proyek Angkatan Udara Angkatan Darat AS dalam Perang Dunia II.
  3. peneyebab dimana tugas yang paling umum digunakan dalam bentuk inventaris
  4. yang mengungkapkan Presentasi besar pertamanya kepada mereka yang berada di luar militer
  5. adanya fungsi untuk mengidentifikasi yang dilakukan pekerja
Down
  1. Informasi yang dapat digunakan untuk menggambarkan sampel responden ataupun menunjukkan seberapa baik sampel responden mewakili seluruh populasi calon responden, dan untuk membagi atau mengelompokkan data untuk analisis tambahan.
  2. merupakan deskripsi pekerjaan yang diperlukan untuk mempersiapkan pekerja
  3. bahwa mungkin ada satu cara terbaik untuk melakukan pekerjaan yang diberikan teknologi saat ini, dan kemungkinan besar untuk menemukan atau memperkirakan cara terbaik ini melalui pendekatan sistematis, empiris (yaitu, ilmiah) daripada intuisi
  4. adalah area luas dari konten pekerjaan yang digunakan untuk mengklasifikasikan semua pekerjaan dalam perekonomian ke dalam kumpulan 100 bidang, masing-masing dengan nomor tiga digit. Pekerjaan diklasifikasikan menurut (a) alat umum, peralatan, dan sebagainya, atau (b) tujuan ekonomi bersama yang harus dipenuhi oleh pekerjaan.
  5. kejadian yang pernah terjadi di masa lampau
  6. Informasi tertulis, seperti deskripsi pekerjaan, materi pelatihan, dan bagan organisasi, sering digunakan.
  7. memecah pekerjaan atau tugas menjadi urutan langkah
  8. gerakan mikro, di sisi lain (tidak ada permainan kata-kata) , dimulai dengan salah satu langkah dan memecahnya menjadi gerakan elemental
  9. metode eksternalisasi urutan peristiwa
  10. penggunaan kata penegembangan adalah
  11. alat yang digunakan untuk merekam gaya
  12. istilah lain dari abstraksi atu simbol
  13. suatu teknik yang digunakan pada studi waktu dalam menggunakan film, video, dan teknologi perekaman lainnya untuk membuat catatan tentang bagaimana suatu tugas diselesaikan.

18 Clues: penggunaan kata penegembangan adalahmetode eksternalisasi urutan peristiwaalat yang digunakan untuk merekam gayaistilah lain dari abstraksi atu simbolkejadian yang pernah terjadi di masa lampaumemecah pekerjaan atau tugas menjadi urutan langkahadanya fungsi untuk mengidentifikasi yang dilakukan pekerja...

Psychology 2019-09-16

Psychology crossword puzzle
Across
  1. The concept that the mind and body are separate and distinct
  2. The practice of studying bumps on a person's skull to determine their intellect
  3. The ability to do something successfully or efficiently
  4. Self-observation of a person's thoughts and feelings
  5. An estimate of something to happen in the future
  6. A person's being that distinguished them from others
  7. The way an organism acts according to their thinking
  8. The gathering of information and answering questions to explain a scientific study
  9. The study of behavior tested through scientific research
  10. Obtaining to an organisms physical process
  11. Perception is more than the sum of its parts; a "whole pattern"
  12. A concept of dualism; explains how opposites could be complementary to each other
  13. An organisms thinking and understanding
Down
  1. A set of assumptions used to explain a phenomena and scientific study
  2. The study of basic elements of human experience
  3. To have an effect of another's behavior
  4. An assumption or prediction about behavior that is tested through scientific research
  5. The gathering of information about the behavior being studied
  6. Research that is free of bias
  7. The study of how an organism adapts to their environments and their consciousness
  8. Discovering ways to use scientific findings to accomplish practical goals
  9. The using of theories or hypotheses to predict the behavior of an organism

22 Clues: Research that is free of biasTo have an effect of another's behaviorAn organisms thinking and understandingObtaining to an organisms physical processThe study of basic elements of human experienceAn estimate of something to happen in the futureSelf-observation of a person's thoughts and feelingsA person's being that distinguished them from others...

14.1 The New Frontier 2026-01-06

14.1 The New Frontier crossword puzzle
Across
  1. an acronym for clustered regularly spaced short palindromic repeats; a unique group of short, repeated DNA sequences found in bacterial genomes; a gene editing tool
  2. a method of producing offspring with desired characteristics by having parents with certain traits reproduce
  3. the cloning process that removes a nucleus from a somatic cell and implants it into a donor egg cell
  4. an organism whose genome has been altered by the addition of genes from another species
  5. the application of living organisms or biological processes to solve human problems or meet human needs
  6. an enzyme, usually produced by bacteria, that can cut DNA strand at a specific sequence of nucleotide base pairs
  7. the process of selecting plants or animals with desirable characteristics to be parents of the next generation to perpetuate the characteristic in offspring
  8. in genetics, the process of producing an organism with the exact genetic makeup of another organism
  9. a method to separate DNA sequences based on size by applying electricity to DNA samples in a gel matrix
Down
  1. a method used in molecular biology to make many copies of a DNA segment in vitro
  2. the complete set of genes within an organism
  3. an organism that expresses a trait acquired though genetic engineering
  4. an international scientific research project with the goal of determining the sequence of nucleotide base pairs that make up human DNA, mapping the chromosomal locations of each gene, and attempting to identify the function of each gene in the human body
  5. a sequence of DNA that has been artificially formed by combining DNA from two different organism
  6. a small circular DNA strand in the cytoplasm of bacteria that can replicate independently from the bacterial chromosome and may be transferred between bacterial cells
  7. the intentional modification of an organism's genetic characteristics by manipulating its DNA

16 Clues: the complete set of genes within an organisman organism that expresses a trait acquired though genetic engineeringa method used in molecular biology to make many copies of a DNA segment in vitroan organism whose genome has been altered by the addition of genes from another species...

Scientific Notation, Pythagorean Theorem, Vertex Form Review 2016-04-24

Scientific Notation, Pythagorean Theorem, Vertex Form Review crossword puzzle
Across
  1. The prefix 'quad' means ____________ .
  2. A negative value for 'a' make the parabola ___________ .
  3. The vertex is the ____________ point of a parabola.
  4. In vertex form, the 'h' makes the parabola go ____________ or right.
  5. Gave us the Pythagorean Theorem.
  6. The most frequent number (if it exists)
  7. The difference between the greatest and smallest number
  8. In scientific notation, large numbers have ____________ exponents.
  9. Another word for 'average'
  10. Most numbers we deal with are expressed in ___________ form rather than scientific notation.
  11. In scientific notation, the coefficient must be greater than one and less than ____________ .
Down
  1. The vertex is the ____________ point of a parabola.
  2. Like many things in nature, a parabola has ____________ .
  3. If 'x-3' was within the parenthesis, the parabola would move ___________ .
  4. In vertex __________ , the vertex and any transformations are easy to identify.
  5. In scientific notation, small numbers have ____________ exponents.
  6. In a ____________ , something must be squared.
  7. The longest side of a right triangle.
  8. The 'middle' number
  9. In vertex form, the 'k' makes the parabola go up or ____________ .

20 Clues: The 'middle' numberAnother word for 'average'Gave us the Pythagorean Theorem.The longest side of a right triangle.The prefix 'quad' means ____________ .The most frequent number (if it exists)In a ____________ , something must be squared.The vertex is the ____________ point of a parabola.The vertex is the ____________ point of a parabola....

Scientific research 2021-11-30

Scientific research crossword puzzle
Across
  1. important and respected by a lot of people
  2. spend thoughtlessly, throw away
  3. to prevent from doing what sb has planned or want to do
  4. to worry about something, when there is no need
  5. satisfaction so that you stop trying to improve
  6. made or done cheaply or carelessly
Down
  1. unstable, wobbly
  2. to compete very hard with someone in order to get
  3. a large number or amount
  4. make more restrictive or stiffen e.g. the laws
  5. boring and ordinary,having no variety or interest
  6. o control or limit something
  7. rejected a formerly held belief
  8. a basis for comparison, a reference point
  9. nonsense

15 Clues: nonsenseunstable, wobblya large number or amounto control or limit somethingrejected a formerly held beliefspend thoughtlessly, throw awaymade or done cheaply or carelesslya basis for comparison, a reference pointimportant and respected by a lot of peoplemake more restrictive or stiffen e.g. the lawsto worry about something, when there is no need...

Scientific Terms 2016-11-01

Scientific Terms crossword puzzle
Across
  1. -this type of bond exists between non-metals
  2. -negatively charged ion
  3. -formula written in the lowest integer subscripts
  4. -NaCl
  5. -compounds which contain 3 different elements
  6. -mass in grams of one mole substance
Down
  1. -formula that represents the composition of a substance by using chemical symbols
  2. -energy needed to remove an electron from the neutral atom
  3. -outermost electron
  4. -third type of chemical bonding
  5. -positively charged ion
  6. -transfer of electrons from one atom to another
  7. -atoms must possess an 8 valence electrons to be stable
  8. -an aton or molecule having an electric charge
  9. -molecular weightof a substance expressed in grams

15 Clues: -NaCl-outermost electron-positively charged ion-negatively charged ion-third type of chemical bonding-mass in grams of one mole substance-this type of bond exists between non-metals-compounds which contain 3 different elements-an aton or molecule having an electric charge-transfer of electrons from one atom to another...

Scientific Terms 2016-11-01

Scientific Terms crossword puzzle
Across
  1. -positively charged ion
  2. -formula written in the lowest integer subscripts
  3. -mass in grams of one mole substance
  4. -third type of chemical bonding
  5. -outermost electron
  6. -an aton or molecule having an electric charge
  7. -energy needed to remove an electron from the neutral atom
Down
  1. -formula that represents the composition of a substance by using chemical symbols
  2. -NaCl
  3. -this type of bond exists between non-metals
  4. -atoms must possess an 8 valence electrons to be stable
  5. -molecular weightof a substance expressed in grams
  6. -negatively charged ion
  7. -transfer of electrons from one atom to another
  8. -compounds which contain 3 different elements

15 Clues: -NaCl-outermost electron-positively charged ion-negatively charged ion-third type of chemical bonding-mass in grams of one mole substance-this type of bond exists between non-metals-compounds which contain 3 different elements-an aton or molecule having an electric charge-transfer of electrons from one atom to another...

Scientific Investigation 2013-06-06

Scientific Investigation crossword puzzle
Across
  1. Joints that allow movement in all directions.
  2. A group of organs whose primary function is movement.
  3. The process of how organisms acquire adaptations over time.
  4. Diagram that shows hoe energy moves from one feeding level to the next in a food chain.
  5. Occurs when the environment changes and the adaptations of a species are no longer sufficient for its survival.
  6. An inherited trait that helps an organism survive.
  7. An ancient supercontinent that broke apart to form today's continents.
  8. A group of organs and nerves that gather,interpret,and respond to information.
Down
  1. A disorder of the metabolism causing excessive thirst and the production of large amounts of urine.
  2. The process by which organisms with favorable adaptations survive and reproduce at a higher rate than organisms with less-favorable adaptations.
  3. (Deoxyribonucleic acid), a self-replicating material present in nearly all living organisms as the main constituent of chromosomes.
  4. A unit that determines traits.
  5. An organism from which others have descended.
  6. A set traits an organism receives from its parents.
  7. A group of living things and their surroundings.

15 Clues: A unit that determines traits.Joints that allow movement in all directions.An organism from which others have descended.A group of living things and their surroundings.An inherited trait that helps an organism survive.A set traits an organism receives from its parents.A group of organs whose primary function is movement....