scientific method Crossword Puzzles

42 2023-08-31

42 crossword puzzle
Across
  1. alley
  2. nice
  3. pricey
  4. momentous
  5. scientific
  6. verify
  7. walk
  8. gusty
Down
  1. magnify
  2. place
  3. abortive
  4. roll
  5. consecrat
  6. indulge

14 Clues: nicerollwalkplacealleygustypriceyverifymagnifyindulgeabortiveconsecratmomentousscientific

Unit 17 Spelling Rules 2020-06-15

Unit 17 Spelling Rules crossword puzzle
Across
  1. A supposition or proposed explanation made on the basis of limited evidence as a starting point for further investigation.
  2. The degree or intensity of heat present in a substance or object, especially as expressed according to a comparative scale and shown by a thermometer or perceived by touch.
  3. A substance with particular chemical properties including turning litmus red, neutralizing alkalis, and dissolving some metals.
  4. Referring to something that is poisonous.
  5. Having the properties of an alkali, or containing alkali; having a pH greater than 7.
  6. A particular procedure for accomplishing or approaching something especially a systematic or established one.
  7. A distinct compound or substance, especially one which has been artificially prepared or purified.
  8. A scientific procedure undertaken to make a discovery test a hypothesis, or demonstrate a known fact.
Down
  1. An instrument for measuring and indicating temperature.
  2. A system of ideas intended to explain something.
  3. A means of solving a problem or dealing with a difficult situation.
  4. The necessary items for a particular purpose.
  5. A room or building equipped for scientific experiments, research, or teaching, or for the manufacture of drugs or chemicals.
  6. An optical instrument used for viewing very small objects, such as mineral samples or animal or plant cells.
  7. To turn from liquid into vapour.

15 Clues: To turn from liquid into vapour.Referring to something that is poisonous.The necessary items for a particular purpose.A system of ideas intended to explain something.An instrument for measuring and indicating temperature.A means of solving a problem or dealing with a difficult situation....

Science 2023-09-18

Science crossword puzzle
Across
  1. The study of living organisms, including plants, animals, and humans, and their processes.
  2. Information collected during experiments or observations, often recorded in tables or charts.
  3. Gathering information using your senses, like seeing, hearing, or touching, to learn about the world.
  4. Method A systematic approach to conducting experiments, including making observations, forming hypotheses, and analyzing data.
  5. Tests or investigations conducted to learn about the natural world by changing and observing variables.
  6. A person who conducts research and experiments to better understand the world around us.
Down
  1. Factors that can change or be controlled in an experiment, affecting the outcomes.
  2. The study of Earth's structure, composition, and processes, including rocks and minerals.
  3. Educated guesses or predictions about what might happen in an experiment, based on prior knowledge.
  4. A controlled environment where scientific experiments and research are conducted.
  5. The study of matter, energy, and how objects move and interact with forces.
  6. The study of how living organisms interact with each other and their environment.
  7. The study of celestial objects like stars, planets, and galaxies, and the universe as a whole.
  8. Tools used to magnify and observe tiny objects or organisms that are too small to see with the naked eye.
  9. The study of matter, its properties, composition, and how substances interact with each other.

15 Clues: The study of matter, energy, and how objects move and interact with forces.A controlled environment where scientific experiments and research are conducted.The study of how living organisms interact with each other and their environment.Factors that can change or be controlled in an experiment, affecting the outcomes....

Nature of Science 2022-08-12

Nature of Science crossword puzzle
Across
  1. rule of nature that sums up related observations to describe a pattern in nature
  2. a collection of beliefs or practices mistakenly regarded as being based on the scientific method
  3. factor whose value depends on the independent variable
  4. an educated guess
  5. explanation based on experiments-most logical explanation
Down
  1. an organized set of investigation procedures used by scientists
  2. factor that is adjusted by the experiment
  3. standard for comparison during experiment

8 Clues: an educated guessfactor that is adjusted by the experimentstandard for comparison during experimentfactor whose value depends on the independent variableexplanation based on experiments-most logical explanationan organized set of investigation procedures used by scientists...

World History Crossword 2017-03-09

World History Crossword crossword puzzle
Across
  1. Mozart Well known composer, wrote music passoinately .
  2. A period or a time when people questioned tradition and used philosophy to improved society.
  3. Bacon English philosopher with few scientific credentials, believed that scientists should not rely on the ideas authorities.
  4. A system of thought expounded by Rene Descartes based on belief that reason is the chief source of knowledge
  5. Galilei The was the first European to make regular observations of the heavens using a telescope.
  6. Kepler A German mathematician, took the next step in destroying the Ptolemaic system.
  7. method A systematic procedure for collecting and analyzing evidence that was crucial to the evolution of science in the modern world.
  8. Began by thinking and writing about debt and uncertainty that seemed everywhere. Also a philosopher
  9. Locke Argued that every person was born with a tabula rasa, or blank mind
Down
  1. Philosophers of the middle ages constructed a model of the universe known later as the ptolemaic system.
  2. Rousseau Was the most famous Philosopher of the later Enlightment
  3. Sun Centered, conception of the universe offered a more accurate explanation than did the Ptolemaic system.
  4. Copernicus discovered that the sun was the center of the universe
  5. Someone who studies wisdom
  6. Newton Professor of mathematics at the University of Cambridge

15 Clues: Someone who studies wisdomMozart Well known composer, wrote music passoinately .Newton Professor of mathematics at the University of CambridgeRousseau Was the most famous Philosopher of the later EnlightmentCopernicus discovered that the sun was the center of the universeLocke Argued that every person was born with a tabula rasa, or blank mind...

AP Comsci Terms 2023-06-05

AP Comsci Terms crossword puzzle
Across
  1. A class that is not abstract, and hence can be instantiated
  2. A class that provides only static final fields
  3. a condition that leads to a recursive method no longer creating another method to call on itself.
  4. A type of programming loop where a loop calls its own method multiple times until the exit condition meets, very resource intensive
  5. What keyword allows a subclass to inherit an abstract class?
  6. how many digits does octal have
  7. A number system that represents numeric values using 8 diff symbols typically 0 through 8
  8. What base does binary use?
  9. 2E in binary
Down
  1. A variable used exclusively in a method to call an x and return a y or function with the method
  2. What decimal number is this 10110
  3. Like parameter, call a method with a parameter/argument and it will comply a function based on the parameter/argument
  4. Is also referred to as hex color codes
  5. Blue in hexadecimal
  6. Operation of joining character strings end to end
  7. Take a condition of a variable or list and tests every single condition in usually a non specific order
  8. This is the extending class of the extended class/parent class. It can do what the parent can do + more
  9. The required declaration on a method to declare that it will be the first method run in the program
  10. Simple sorting algorithm that builds the final sorted array one item at a time.
  11. method A "template" for a method that concrete subclasses must implement.

20 Clues: 2E in binaryBlue in hexadecimalWhat base does binary use?how many digits does octal haveWhat decimal number is this 10110Is also referred to as hex color codesA class that provides only static final fieldsOperation of joining character strings end to endA class that is not abstract, and hence can be instantiated...

basic livestock terminology 2022-02-23

basic livestock terminology crossword puzzle
Across
  1. a casterated male cow that has been trained to work
  2. female sheep thats has had a lamb
  3. scientific name for cattle
  4. intact male pig
  5. castrated male sheep
  6. young cow that has not been weaned
  7. young has not been weaned
  8. female pig that has not had a litter of piglet
  9. lamb a female sheep that has not had a lamb
  10. scientific name for a swine
  11. intact rule cow
  12. female cow that has had a calf
  13. female cow that has not had a calf
Down
  1. young pig that has not been weaned
  2. a female goat that has a kid
  3. castrated male pig
  4. intact male sheep
  5. name for sheep
  6. female goat that has not had a kid.
  7. scientific name for goats
  8. castrated male cow
  9. a female pig that has had a litter of piglet
  10. intact male goat
  11. young sheep that hasnt been weaned
  12. castrated male goat

25 Clues: name for sheepintact male pigintact rule cowintact male goatintact male sheepcastrated male pigcastrated male cowcastrated male goatcastrated male sheepscientific name for goatsyoung has not been weanedscientific name for cattlescientific name for a swinea female goat that has a kidfemale cow that has had a calffemale sheep thats has had a lamb...

basic livestock terminology 2022-02-23

basic livestock terminology crossword puzzle
Across
  1. castrated male cow
  2. A female pig that has not had a piglet
  3. A female that has had kids
  4. A female cow that has had a calf
  5. Scientific name or a goat
  6. lab- Female cow that has not have a Lamb
  7. Castrated male goat
  8. Install male cow
  9. Castrated male cow that has been trained to work
  10. - scientific name for a cattle
  11. A female sheep that has had a Lamb
  12. In-install male pig
  13. A young pi that has not been weaned
  14. Female cow that has not have a calf
Down
  1. Female sheep that has not had a kid
  2. young goat that has not been weaned
  3. Scientific name for saline
  4. young cow that has not been weaned
  5. Install male sheep
  6. Install male goat
  7. Castrated male pig
  8. young sheep that has not been weaned
  9. A female pig that has had a piglet
  10. Scientific name for a sheep
  11. Castrated male sheep

25 Clues: Install male cowInstall male goatcastrated male cowInstall male sheepCastrated male pigCastrated male goatIn-install male pigCastrated male sheepScientific name or a goatScientific name for salineA female that has had kidsScientific name for a sheep- scientific name for a cattleA female cow that has had a calfyoung cow that has not been weaned...

sonny's crossword 2023-09-01

sonny's crossword crossword puzzle
Across
  1. the knowledge obtained by observing
  2. current a movement of ocean water that
  3. to scientific investigation
  4. and other types of data that people gather and test to support and evaluate scientific explanations
  5. factor that changes as a result of manipulation of one or more independent variables
  6. the process of obtaining
  7. a regular pattern
  8. an organized procedure to study
  9. limitations that define the
  10. to convert information from one form into another for the purpose of communication
Down
  1. in a scientific
  2. the factor that is deliberately manipulated
  3. a testable idea or explanation that
  4. in a scientific investigation,
  5. facts and statistics collected together for reference or analysis.
  6. evidence the observations,
  7. events and conditions in order to discover facts and formulate laws or principles that can be verified or tested
  8. by using the senses; the information obtained by using the senses
  9. of a design process
  10. : an act or instance of controlling. also : power or authority to guide or manage.
  11. under controlled conditions

21 Clues: in a scientifica regular patternof a design processthe process of obtainingevidence the observations,to scientific investigationlimitations that define theunder controlled conditionsin a scientific investigation,an organized procedure to studythe knowledge obtained by observinga testable idea or explanation that...

STEPS IN SCIENTIFIC METHOD 2021-08-27

STEPS IN SCIENTIFIC METHOD crossword puzzle
Across
  1. THE PART OF AN EXPERIMENT BEING TESTED AND IT IS USED FOR COMPARISON
  2. THEE HELP SCIENTIST MAKE A HYPOTHESIS OR COLLECT DATA DURING AN EXPERIMENT
  3. AN EDUCATED GUESS
Down
  1. THE STEPS USED DURING EXPERIMENT
  2. THE FIRST STEP OF THE SCIeNTIFIC METHOD IS TO IDENTIFY

5 Clues: AN EDUCATED GUESSTHE STEPS USED DURING EXPERIMENTTHE FIRST STEP OF THE SCIeNTIFIC METHOD IS TO IDENTIFYTHE PART OF AN EXPERIMENT BEING TESTED AND IT IS USED FOR COMPARISONTHEE HELP SCIENTIST MAKE A HYPOTHESIS OR COLLECT DATA DURING AN EXPERIMENT

Se activity 2023-03-06

Se activity crossword puzzle
Across
  1. Diagram used to show flow of project
  2. risk analysis done in this model
  3. evolutionary process model also known as
  4. requirements gathering
Down
  1. scientific and systematic method of solving problems

5 Clues: requirements gatheringrisk analysis done in this modelDiagram used to show flow of projectevolutionary process model also known asscientific and systematic method of solving problems

Biology Vocabulary 2021-09-09

Biology Vocabulary crossword puzzle
Across
  1. A particular preference or point of view that is personal, rather than scientific.
  2. Scientifically accurate information that is used in an unbiased way to convey a biological idea. Accurate + Unbiased = Valid
  3. statements, beliefs, or practices that claim to be both scientific and factual but are incompatible with the scientific method.
Down
  1. Cells, DNA, Reproduce, Grow, Respond to Stimuli, Adapt over time, Energy, homeostasis
  2. particle made of proteins, nucleic acids, and sometimes lipids that can replicate only by infecting living cells

5 Clues: A particular preference or point of view that is personal, rather than scientific.Cells, DNA, Reproduce, Grow, Respond to Stimuli, Adapt over time, Energy, homeostasisparticle made of proteins, nucleic acids, and sometimes lipids that can replicate only by infecting living cells...

Investigations and equipment 2014-05-08

Investigations and equipment crossword puzzle
Across
  1. Scientific idea about why or how something happens. (10)
  2. These can be independent or dependent.(8)
  3. A picture to help you. (7)
  4. A result that doesn't seem to fit in with the rest of them. (9)
Down
  1. Instructions on how to carry out the investigation. (6)
  2. The things you use in the investigation. (9)
  3. The data you collect and put in a table. (7)
  4. A way of displaying results. (5)

8 Clues: A picture to help you. (7)A way of displaying results. (5)These can be independent or dependent.(8)The things you use in the investigation. (9)The data you collect and put in a table. (7)Instructions on how to carry out the investigation. (6)Scientific idea about why or how something happens. (10)...

Science people and Material 2017-11-08

Science people and Material crossword puzzle
Across
  1. a narrow passage of water between two larger bodies of water.
  2. people who more from one place to place.
  3. the study of the material remains ancient peoples.
  4. a people's shared value, beliefs, traditions, and behaviors.
Down
  1. the moment of people into a new area.
  2. a tool; weapon, or other left behind by early people.
  3. a variety of corn.
  4. dating a scientific method of determining the age of an artifact.

8 Clues: a variety of corn.the moment of people into a new area.people who more from one place to place.the study of the material remains ancient peoples.a tool; weapon, or other left behind by early people.a people's shared value, beliefs, traditions, and behaviors.a narrow passage of water between two larger bodies of water....

The Scientific Method Mrs. Beck Biology 2023-08-17

The Scientific Method Mrs. Beck Biology crossword puzzle
Across
  1. using the five senses to study something
  2. a statement that can be tested with experimentation
  3. steps used to solve a problem or answer a question, the scientific ____
  4. information gathered from observations and often recorded
Down
  1. a condition you change in an experiment, the manipulated ____
  2. a procedure designed to test a hypothesis
  3. visual used to display data
  4. a summary statement that describes evidence gathered, often supports or rejects a hypothesis

8 Clues: visual used to display datausing the five senses to study somethinga procedure designed to test a hypothesisa statement that can be tested with experimentationinformation gathered from observations and often recordeda condition you change in an experiment, the manipulated ____steps used to solve a problem or answer a question, the scientific ____...

Unit 1 2026-03-09

Unit 1 crossword puzzle
Across
  1. Method used by structuralists to examine conscious experience
  2. Philosophical view that knowledge is gained through reason
  3. Russian scientist known for classical conditioning experiments
  4. Belief that behaviour is caused by internal or external forces
Down
  1. Psychologist known for trial-and-error learning and the Law of Effect
  2. Scientific study of behaviour and mental processes
  3. Early school of psychology that analysed the structure of conscious experience
  4. View that knowledge comes from sensory experience

8 Clues: View that knowledge comes from sensory experienceScientific study of behaviour and mental processesPhilosophical view that knowledge is gained through reasonMethod used by structuralists to examine conscious experienceRussian scientist known for classical conditioning experimentsBelief that behaviour is caused by internal or external forces...

ltb 2018-06-06

ltb crossword puzzle
Across
  1. Texas state record Largemouth bass caught on this water
  2. A method of fishing by which the lure is swung, not cast, to the target or structure, often with as little disturbance of the water as possible.
  3. Line used to detect prey
  4. Second word in Bass’ Scientific name
  5. A weather condition accompanied by high, clear skies, and a sudden drop in temperature.
  6. Largest lake in the US
  7. A material used in fishing that is composed of a bond between fluorine and carbon atoms.
  8. A general term for any number of floating lipless topwater lures that "push" water.
  9. fatty fin located between the dorsal and tail fin.
  10. Method of catching fish using only your hands
Down
  1. Fred Young carved the first big "O" crankbait from balsa wood in the 1960's. These types of crankbaits also had this nickname.
  2. Usually a stainless steel spike with a threaded end, so you can attach a rod rest, keepnet or bait alarm.
  3. Technique that involves pinching a small lead split shot sinker a foot or more above a small worm, then slowly dragging this on the bottom.
  4. A special type of rod used to detect bites when ledgering
  5. First artificial lure brand
  6. Fish can live in both freshwater and saltwater
  7. Where was the first Bassmaster Classic held?
  8. When bass are neither relating to the bottom of the lake, nor actively feeding near the surface.

18 Clues: Largest lake in the USLine used to detect preyFirst artificial lure brandSecond word in Bass’ Scientific nameWhere was the first Bassmaster Classic held?Method of catching fish using only your handsFish can live in both freshwater and saltwaterfatty fin located between the dorsal and tail fin.Texas state record Largemouth bass caught on this water...

Crossword Puzzle - Scientific Method 2022-09-13

Crossword Puzzle - Scientific Method crossword puzzle
Across
  1. the variable you change
  2. the response to the independent variable
  3. a scientific procedure to collect data
Down
  1. a variable that never changes
  2. a process for studying and experimenting to help reach a scientific conclusion

5 Clues: the variable you changea variable that never changesa scientific procedure to collect datathe response to the independent variablea process for studying and experimenting to help reach a scientific conclusion

early american lession 1 2022-10-17

early american lession 1 crossword puzzle
Across
  1. a people's shared values, beliefs, traditions, and behaviors
  2. the movement of people into a new area
  3. a variety of corn
  4. a scientific method of determining the age of an artifact
Down
  1. a tool,weapon,or other object left behind by early people
  2. the study of the material remains off ancient people
  3. a narrow passage of water between two larger bodies of water
  4. person who move the place to place

8 Clues: a variety of cornperson who move the place to placethe movement of people into a new areathe study of the material remains off ancient peoplea tool,weapon,or other object left behind by early peoplea scientific method of determining the age of an artifacta people's shared values, beliefs, traditions, and behaviors...

inspiring teachers 2022-06-17

inspiring teachers crossword puzzle
Across
  1. italian physician, educator and innovator whose method build on the way children learn naturally.
  2. inspiring math teacher born in Bolivia lived in USA.
  3. US disability rights advocate. An illness left her deaf and blind.
  4. inventor of first Kindergarten in Blankenburg.
Down
  1. founder of what we consider philosophy and scientific thinking.
  2. suffered from racism, violence and prison.
  3. worked as a tutor at a boy's school; author of Animal Farm.
  4. I have a dream.

8 Clues: I have a dream.suffered from racism, violence and prison.inventor of first Kindergarten in Blankenburg.inspiring math teacher born in Bolivia lived in USA.worked as a tutor at a boy's school; author of Animal Farm.founder of what we consider philosophy and scientific thinking.US disability rights advocate. An illness left her deaf and blind....

Botany Crossword 2023-08-31

Botany Crossword crossword puzzle
Across
  1. When you want to know about something and are going to find it out
  2. method Steps you are going to use when you want to learn about something and find the answer to it
  3. variable a variable that remains unchanged
Down
  1. Variable What you can change on purpose in an experiment
  2. an educated guess
  3. Validates or disproves your hypothesis
  4. Variable The response to the Independent variable
  5. relies on a scientist change

8 Clues: an educated guessrelies on a scientist changeValidates or disproves your hypothesisvariable a variable that remains unchangedVariable The response to the Independent variableVariable What you can change on purpose in an experimentWhen you want to know about something and are going to find it out...

Organisms-Classify, View, and Draw 2018-10-09

Organisms-Classify, View, and Draw crossword puzzle
Across
  1. used to make a scientific drawing
  2. discovered plant cells
  3. used when typing a scientific name
  4. the objective lens X the eyepiece
  5. controls light on the microscope
  6. all organisms do this
  7. first part of a scientific name
  8. hold the slide in place on a microscope
  9. knob used under high magnification
  10. supports the slides
Down
  1. all organisms are made of one or more of these
  2. made better lenses
  3. layer of classification with the most variety
  4. used to identify living things
  5. first to classify organisms
  6. grouping organisms by characteristics
  7. a living thing
  8. knob used under low magnification
  9. always 10x
  10. used as a handle to carry microscope

20 Clues: always 10xa living thingmade better lensessupports the slidesall organisms do thisdiscovered plant cellsfirst to classify organismsused to identify living thingsfirst part of a scientific namecontrols light on the microscopeused to make a scientific drawingthe objective lens X the eyepieceknob used under low magnification...

manuel 2021-02-15

manuel crossword puzzle
Across
  1. are relacionated with dracula grass is on the soccer field
  2. his scientific name is Psilocybe semilanceata
  3. produce fruits
  4. they likes bananas
  5. his scientific name is Ustilago maydis
  6. they like mud
  7. is uder land
  8. like mouses
  9. two colors
  10. some make us sick
  11. the best friend of humans
  12. simba
Down
  1. jump very hight
  2. they laugh
  3. ssss
  4. is soo big
  5. howls at night
  6. at the bottom of the sea shrubbery produce berrys
  7. is a mario item
  8. are much especies
  9. his scientific name is Lactarius deliciosus
  10. It is used as a means of transport in movies
  11. keeps her baby in a bag

23 Clues: sssssimbathey laughis soo bigtwo colorslike mousesis uder landthey like mudproduce fruitshowls at nightis a mario itemjump very hightare much especiessome make us sickthey likes bananaskeeps her baby in a bagthe best friend of humanshis scientific name is Ustilago maydishis scientific name is Lactarius deliciosus...

manuel 2021-02-15

manuel crossword puzzle
Across
  1. two colors
  2. they laugh
  3. his scientific name is Psilocybe semilanceata
  4. like mouses
  5. howls at night
  6. some make us sick
  7. It is used as a means of transport in movies
  8. the best friend of humans
  9. his scientific name is Ustilago maydis
  10. are much especies
  11. at the bottom of the sea shrubbery produce berrys
  12. they like mud
Down
  1. are relacionated with dracula grass is on the soccer field
  2. simba
  3. is soo big
  4. his scientific name is Lactarius deliciosus
  5. is uder land
  6. keeps her baby in a bag
  7. they likes bananas
  8. ssss
  9. is a mario item
  10. produce fruits
  11. jump very hight

23 Clues: sssssimbatwo colorsis soo bigthey laughlike mousesis uder landthey like mudhowls at nightproduce fruitsis a mario itemjump very hightsome make us sickare much especiesthey likes bananaskeeps her baby in a bagthe best friend of humanshis scientific name is Ustilago maydishis scientific name is Lactarius deliciosus...

APR 224L Module 1.1: Intro to Clinical Chemistry 2025-10-24

APR 224L Module 1.1: Intro to Clinical Chemistry crossword puzzle
Across
  1. The sac-like membrane that surrounds the heart
  2. Type of fluid that surrounds and protects a fetus during pregnancy
  3. Type of fluid collected from the peritoneal cavity
  4. Type of fluid collected from between the tissues that line the lungs and the chest
  5. Most commonly tested specimen
  6. Type of function test that can be completed in the clinical chemistry department
  7. Type of photometric method that measures reduction in light transmission by particles in suspension
  8. Analytical method where concentration is determined by peak:height ratio
  9. The largest and most automated department in a clinical lab
  10. Type of photometric method used to measure light scattered at an angle by particles in a solution
  11. Analytical method used to separate compounds that are volatile or can be made volatile
Down
  1. Type of photometric method where the amount of light absorbed is directly proportional to concentration of analyte
  2. Analytical method where substances identified by retention factor (Rf) value
  3. A type of test completed in the clinical chemistry department
  4. Type of analytical method that uses antibodies to detect proteins of interest
  5. Type of analytical method that separates charged particles in an electrical field
  6. Second most commonly tested specimen
  7. Clinical chemistry is also known as clinical ____________
  8. Type of clinical chemistry test that can be ordered
  9. Type of photometric method where the amount of light produced varies with the analyte being measured

20 Clues: Most commonly tested specimenSecond most commonly tested specimenThe sac-like membrane that surrounds the heartType of fluid collected from the peritoneal cavityType of clinical chemistry test that can be orderedClinical chemistry is also known as clinical ____________The largest and most automated department in a clinical lab...

Heliocentric Elise Goldman 2020-02-20

Heliocentric   Elise Goldman crossword puzzle
Across
  1. His observations showed that ____ was not the only object but it could be orbited
  2. Who developed the first detailed model of the solar system
  3. Kepler three principles also known today as Kepler's ____
Down
  1. who invented the scientific method
  2. ____ went through phases similar to the phases of Earth's moon
  3. orbit faster when closer than the sun The 2nd law
  4. Kepler was from

7 Clues: Kepler was fromwho invented the scientific methodorbit faster when closer than the sun The 2nd lawKepler three principles also known today as Kepler's ____Who developed the first detailed model of the solar system____ went through phases similar to the phases of Earth's moon...

Ch. 3 Vocabulary 2013-09-25

Ch. 3 Vocabulary crossword puzzle
Across
  1. A company's or store's written agreement to repair a product or refund your money should the product not function properly.
  2. Complete and comprehensive information about your immunizations and any health problems you have.
  3. Actions that prevent the onset of disease or injury
  4. A written or spoken media message designed to interest consumers in purchasing a product or service.
  5. Scientific study of patterns of disease in a population.
  6. A plan in which private companies or government programs pay for part or all of a persons medical costs.
  7. People or groups whose sole purpose is to take on regional, national, and even international consumer issues.
  8. Method of judging the benefits of different products by comparing several factors, such as quality, features, and cost.
  9. Sale of worthless products or services that claim to prevent diseases or cure other health problems.
  10. Community wide effort to monitor and promote the welfare of the population.
Down
  1. Failure by a health professional to meet accepted standards.
  2. Medical doctors who provide physical checkups and general care.
  3. Medical doctors trained to handle particular kinds of patients or medical conditions.
  4. Various methods of communicating information.
  5. All the medical care available to a nation's people, the way they receive care,and the method of payment.
  6. Anyone who purchases or uses health products or services.
  7. Using the internet to buy products and services.
  8. Deliberate deceit or trickery

18 Clues: Deliberate deceit or trickeryVarious methods of communicating information.Using the internet to buy products and services.Actions that prevent the onset of disease or injuryScientific study of patterns of disease in a population.Anyone who purchases or uses health products or services.Failure by a health professional to meet accepted standards....

ancient Greece vocab 2025-09-30

ancient Greece vocab crossword puzzle
Across
  1. a philosopher known for his writings.
  2. a form of government
  3. War three-decade-long conflict in ancient Greece
  4. a city state in ancient Greece
  5. of Macedonia Philip II of Macedon was the king of the ancient kingdom
  6. decision-making by voting on laws and policies
  7. a group of people in ancient greece.
  8. War a series of conflicts between the Achaemenid Empire
Down
  1. Greek philosopher and scientist known for inventing the scientific method of analysis
  2. he was a veteran that made art of the war
  3. Civilization Greek culture and Near East customs were combined
  4. a body of troops standing or moving in close formation
  5. the Great a king of the ancient Greek kingdom of Macedon
  6. sombody who lived in ancient greece
  7. ancient Greek poet and performer
  8. the art and culture of Greece

16 Clues: a form of governmentthe art and culture of Greecea city state in ancient Greeceancient Greek poet and performersombody who lived in ancient greecea group of people in ancient greece.a philosopher known for his writings.he was a veteran that made art of the wardecision-making by voting on laws and policies...

Halloween STEM Camp 2025 2025-10-31

Halloween STEM Camp 2025 crossword puzzle
Across
  1. Method used by researchers to resolve issues
  2. What did they call rulers in Ancient Egypt?
  3. What is a spider's web stronger than
  4. What is a flow of charged particles through a space
  5. What is the process by which a organism grows from a seed?
  6. What was left in the body for judgement in the afterlife?
  7. What is another word for an educated guess?
Down
  1. Technique to preserve bodies after death
  2. How many legs does a spider have?
  3. What is the process by which plants make food from the sun?
  4. What mineral does bones contain?
  5. What class is a spider part of?
  6. Where did mummification originate?
  7. Common disease characterized by weak and brittle bones
  8. What are spiders' webs made out of?
  9. What are plants called due to making their own food?

16 Clues: What class is a spider part of?What mineral does bones contain?How many legs does a spider have?Where did mummification originate?What are spiders' webs made out of?What is a spider's web stronger thanTechnique to preserve bodies after deathWhat did they call rulers in Ancient Egypt?What is another word for an educated guess?...

Transformational method 2021-12-09

Transformational method crossword puzzle
Across
  1. Transformational analysis in lexicological investigations may be defined
  2. The rules of transformation are rather...
  3. insertion of additional elements into structure of sentences e.g. You know this. Do you know this?
  4. the general logical meaning which is the basis of all word combination or sentences
  5. Replacing elements: putting from the beginning into the end and vice versa
  6. The transformational method with adding elements
Down
  1. the substitution of a component of the distributional structure by a member of a certain strictly defined set of lexical units. e. g. changing of a notional verb by an auxiliary verb
  2. Replacing one element by another one in the same position
  3. word-groups show that the semantic relations between words & consequently the meaning may be different
  4. Changing the category of an element e.g. verbalization of a noun etc.
  5. The transformational method with cutting elements out
  6. the coexistence of many possible meanings for a word or phrase

12 Clues: The rules of transformation are rather...The transformational method with adding elementsThe transformational method with cutting elements outReplacing one element by another one in the same positionthe coexistence of many possible meanings for a word or phraseChanging the category of an element e.g. verbalization of a noun etc....

Chapter 3 terms 2013-09-30

Chapter 3 terms crossword puzzle
Across
  1. medical doctors trained to handle particular kinds of patients or medical conditions
  2. a community-wide effort to monitor and promote the welfare of the population
  3. actions that prevent the onset of disease or injury
  4. deliberate deceit or trickery
  5. medical doctors who provide physical checkups and general care
  6. various methods of communicating information
  7. the sale of worthless products or services that claim to prevent diseases or cure other health problems
  8. using the internet to buy products or services
  9. the scientific study of patients of disease in a population
  10. anyone who purchases or uses health products or services
  11. complete and comprehensive information about your immunizations and any health problems you have had to date
Down
  1. failure by a health professional to meet accepted standards
  2. written or spoken media message designed to interest consumers in purchasing a product or service
  3. method of judging the benfits of different products by comparing several factors
  4. a company's or a store's written agreement to repair a product or refund your money should the product not function properly
  5. people or groups whose sole purpose is to take on regional, national, and even international consumer issues
  6. a plan in which private companies or government programs pay for part or all of a person's medical costs
  7. all the medical care available to a nation's people, the way they receive care, and the method of payment

18 Clues: deliberate deceit or trickeryvarious methods of communicating informationusing the internet to buy products or servicesactions that prevent the onset of disease or injuryanyone who purchases or uses health products or servicesfailure by a health professional to meet accepted standardsthe scientific study of patients of disease in a population...

ltb 2018-06-06

ltb crossword puzzle
Across
  1. Second word in Bass’ Scientific name
  2. First artificial lure brand
  3. A material used in fishing that is composed of a bond between fluorine and carbon atoms.
  4. A weather condition accompanied by high, clear skies, and a sudden drop in temperature.
  5. Fred Young carved the first big "O" crankbait from balsa wood in the 1960's. These types of crankbaits also had this nickname.
  6. A general term for any number of floating lipless topwater lures that "push" water.
  7. A special type of rod used to detect bites when ledgering
  8. Largest lake in the US
  9. Usually a stainless steel spike with a threaded end, so you can attach a rod rest, keepnet or bait alarm.
  10. Texas state record Largemouth bass caught on this water
Down
  1. fatty fin located between the dorsal and tail fin.
  2. Technique that involves pinching a small lead split shot sinker a foot or more above a small worm, then slowly dragging this on the bottom.
  3. Fish can live in both freshwater and saltwater
  4. A method of fishing by which the lure is swung, not cast, to the target or structure, often with as little disturbance of the water as possible.
  5. Where was the first Bassmaster Classic held?
  6. When bass are neither relating to the bottom of the lake, nor actively feeding near the surface.
  7. Line used to detect prey
  8. Method of catching fish using only your hands

18 Clues: Largest lake in the USLine used to detect preyFirst artificial lure brandSecond word in Bass’ Scientific nameWhere was the first Bassmaster Classic held?Method of catching fish using only your handsFish can live in both freshwater and saltwaterfatty fin located between the dorsal and tail fin.Texas state record Largemouth bass caught on this water...

Linguistics Crosswords 2025-03-19

Linguistics Crosswords crossword puzzle
Across
  1. Term referring to the different sounds of speech
  2. The scientific study of a language
  3. The principal method of human communication
Down
  1. What is analysed in PDA and CDA
  2. One of the group who invaded the British Isles
  3. Term referring to the rules to structure a sentence

6 Clues: What is analysed in PDA and CDAThe scientific study of a languageThe principal method of human communicationOne of the group who invaded the British IslesTerm referring to the different sounds of speechTerm referring to the rules to structure a sentence

Solid Modeling Crossword (GTT) 2023-03-21

Solid Modeling Crossword (GTT) crossword puzzle
Across
  1. The abbreviation used for computer-aided design.
  2. The process of creating a solid model or 3D object using a modeling and design application on a computer.
  3. A solid modeling design method where an object is created by subtracting volume from a larger object.
  4. A person who is trained in and uses technological and scientific knowledge to solve practical problems.
  5. The space of a two-dimensional surface or region measured in squared units.
  6. A process that uses a computer to assist in designing something, such as a part, circuit, or building.
  7. The amount of space, measured in cubic units, that an object or substance fills.
  8. The total area of the surface of a three-dimensional object.
  9. Repeating process steps to continuously improve a work product.
Down
  1. A solid modeling design method where an object is created by adding volume to a smaller object.
  2. A clear and concise identification and description of the design problem or opportunity.
  3. This is how we make a prototype of something that you design on TinkerCAD or another solid modeling program.
  4. A limitation or restriction.
  5. A summary that briefly describes the design goals and needs of stakeholders.
  6. The website we will use in GTT for solid modeling.
  7. Desired specifications (elements or features) of a product or system.
  8. When a transformation is moved in Tinkercad.
  9. To change the size of an object in Tinkercad.

18 Clues: A limitation or restriction.When a transformation is moved in Tinkercad.To change the size of an object in Tinkercad.The abbreviation used for computer-aided design.The website we will use in GTT for solid modeling.The total area of the surface of a three-dimensional object.Repeating process steps to continuously improve a work product....

ltb 2018-06-06

ltb crossword puzzle
Across
  1. When bass are neither relating to the bottom of the lake, nor actively feeding near the surface.
  2. A special type of rod used to detect bites when ledgering
  3. A method of fishing by which the lure is swung, not cast, to the target or structure, often with as little disturbance of the water as possible.
  4. A weather condition accompanied by high, clear skies, and a sudden drop in temperature.
  5. Where was the first Bassmaster Classic held?
  6. A material used in fishing that is composed of a bond between fluorine and carbon atoms.
  7. A general term for any number of floating lipless topwater lures that "push" water.
  8. Usually a stainless steel spike with a threaded end, so you can attach a rod rest, keepnet or bait alarm.
Down
  1. Largest lake in the US
  2. Method of catching fish using only your hands
  3. Texas state record Largemouth bass caught on this water
  4. Fish can live in both freshwater and saltwater
  5. Technique that involves pinching a small lead split shot sinker a foot or more above a small worm, then slowly dragging this on the bottom.
  6. First artificial lure brand
  7. fatty fin located between the dorsal and tail fin.
  8. Second word in Bass’ Scientific name
  9. Line used to detect prey
  10. Fred Young carved the first big "O" crankbait from balsa wood in the 1960's. These types of crankbaits also had this nickname.

18 Clues: Largest lake in the USLine used to detect preyFirst artificial lure brandSecond word in Bass’ Scientific nameWhere was the first Bassmaster Classic held?Method of catching fish using only your handsFish can live in both freshwater and saltwaterfatty fin located between the dorsal and tail fin.Texas state record Largemouth bass caught on this water...

Unit 1 Key Terms 2015-10-26

Unit 1 Key Terms crossword puzzle
Across
  1. To make a judgement about something
  2. The ability to think and create new ideas
  3. A part of design brief that challenges the designer and describes what a design solution should do.
  4. Relating to or iteration, especially of a math or computer processes
  5. Able to be shown to be right or reasonable; defensible:
  6. The act of generating many ideas that are related to each otherp
  7. An article or substance that is manufactured or refined for sale
  8. A method for creating a great quantity of ideas
  9. Possessing having a sound basis in logic or fact
  10. A way to evaluate and create assessments
  11. Being able to identify problems
  12. A person who plans the form, look, or workings of something
  13. Something, typically a process or device, that has been invented:
  14. A first, typical or preliminary model of something
Down
  1. The systematic investigation into and study of materials and sources
  2. A legal document that engineers use to prove the validity of their work as well as designs.
  3. A person who pays and organization for services
  4. A written document for a design
  5. A professional who applies scientific knowledge to solve problems.
  6. A new method, idea, product, etc.
  7. Something that restricts something else from it’s full potential
  8. A set of steps that engineers follow to get the solution to a problem. It is very long and dificult.
  9. An idea or opinion about something
  10. To plan and make something for a specific purpose

24 Clues: A written document for a designBeing able to identify problemsA new method, idea, product, etc.An idea or opinion about somethingTo make a judgement about somethingA way to evaluate and create assessmentsThe ability to think and create new ideasA person who pays and organization for servicesA method for creating a great quantity of ideas...

KiDS Crossword 2013-02-13

KiDS Crossword crossword puzzle
Across
  1. SAP's implementation of in-memory database technology
  2. Technique to read in all fields of a database into an internal table at once
  3. Most popular way to look for the value in excel
  4. A scheduled activity to observe how a task is performed compared to written safe standards or practices
  5. Function Module that displays a watch to represent the percentage progress
  6. Produces a resulting set containing all data records, regardless of whether a matching record exists
  7. Allows for joint processing of multiple screen fields
  8. Type of class based on existing database tables
  9. Counts the number of cells that are not empty in a range
Down
  1. EMIT's current safety theme
  2. For user service requests needing research, system/data changes, or approval to work
  3. Method of a class that can be used independently of a class instance
  4. Transaction that shows all SAP provided user-exits
  5. SAP tool which enables the design and execution of business processes within SAP application systems to support user collaboration work
  6. Change the superclass’s method in sub class
  7. Used to coordinate implementation activities with other groups and gain endorsements
  8. The scientific study of equipment design, as in office furniture or transportation seating, for the purpose of improving efficiency, comfort, or safety
  9. Independent structures that allow you to enhance the class-specific public points of contact by implementing them in classes
  10. Replacement to SAPscript forms, used for mass printing in SAP systems.
  11. Acts that could have become an incident

20 Clues: EMIT's current safety themeActs that could have become an incidentChange the superclass’s method in sub classMost popular way to look for the value in excelType of class based on existing database tablesTransaction that shows all SAP provided user-exitsSAP's implementation of in-memory database technology...

history 2024-01-06

history crossword puzzle
Across
  1. the customs, arts, and social institutions of a nation
  2. the Renaissance man(last name)
  3. groups of people who use violence and fear to get what they want
  4. universal moral law governed by reason
  5. created the 95 thesis
  6. allowing businesses to operate with little to no government interference
  7. the renaissance was a time of _______ in art and learning
  8. where thinkers would mingle and discuss ideas of the day
  9. two types of this are democracy and monarchy
  10. a small group of people having control over a country
  11. one type of this is christianity
  12. the study of the physical features of the earth
  13. the study of the basic ideas about knowledge, truth, right and wrong, religion, and the nature and meaning of life
  14. created the three laws of motion
Down
  1. paying the church to forgive your sins
  2. trade between Europe the New World and Africa
  3. Da Vinci created a lot of this
  4. created by martin luther to explain problems in the catholic church. He nailed this to the door of a church
  5. the Age of ________ was a time of discovering new lands
  6. where the renaissance started
  7. a method in which a problem is solved by collecting data, analysing and observing
  8. God glory gold
  9. the right that is supposedly given to a king or queen by God to rule a country
  10. a focus on human achievement and potential

24 Clues: God glory goldcreated the 95 thesiswhere the renaissance startedDa Vinci created a lot of thisthe Renaissance man(last name)one type of this is christianitycreated the three laws of motionpaying the church to forgive your sinsuniversal moral law governed by reasona focus on human achievement and potentialtwo types of this are democracy and monarchy...

INTRODUCTION TO GASTRONOMY & CULINARY ARTS FINAL 2020-05-31

INTRODUCTION TO GASTRONOMY & CULINARY ARTS FINAL crossword puzzle
Across
  1. Star, It is a special icon that can be obtained
  2. Cut,It is a cutting technique that is used in dishes
  3. Bourdain ,He is a famous chef who graduated
  4. Knife,It is a type of knife which is generally 7 cm
  5. market, It is determined before you start
  6. is a diagnosis made for people
  7. ,It is the most sensitive part of the bovine
  8. It is a kitchen tool used to peel the skin
  9. Steel,It is a kitchen tool that allows the knives
  10. It is the name that is said to be the cow's
  11. It is a kitchen appliance made of metal
  12. Omlette ,It is an egg cooking technique that
  13. It is used in many works
  14. is made with a combination of 3 basic ingredients
  15. It is a cooking method that is used very slowly
Down
  1. of plastic
  2. is a kitchen gadget whose dimensions
  3. It is the name of a substance known as chemical decay
  4. ,It is the basic cooking method called cooking of meat
  5. It is a feature that the scientific
  6. It is called the assumptions
  7. Chef,It is the person responsible for every employee
  8. Stock, It is a dense flavored, dark colored
  9. ,They are single celled fungus that reproduce asexually
  10. Knife,It is a type of knife
  11. Board,It is a kitchen appliance with a flat

26 Clues: of plasticIt is used in many worksKnife,It is a type of knifeIt is called the assumptionsis a diagnosis made for peopleIt is a feature that the scientificis a kitchen gadget whose dimensionsIt is a kitchen appliance made of metalmarket, It is determined before you startIt is a kitchen tool used to peel the skin...

Unit 5 2024-04-19

Unit 5 crossword puzzle
Across
  1. Economic system driven by supply and demand.
  2. Small-scale production of fruits, veggies for market.
  3. Resource that is finite and cannot renew itself.
  4. Population growth drives agricultural intensification and technological change.
  5. Farming method using large land areas with little labor.
  6. Economic system where decisions are centrally planned.
  7. Tracks a product's journey from production to consumption.
  8. Knowledge-based part of the economy like it.
  9. The application of scientific knowledge for practical purposes.
  10. Extracting raw materials from natural environments.
  11. Resource that can regenerate and sustain harvesting.
  12. Collecting natural resources like fruits, nuts, herbs.
  13. Study of economic activity's relationship with environments.
  14. Moving livestock over wide areas to graze.
  15. An economy focused on trade and profit.
  16. Crops with artificially altered genetic makeup.
  17. Largest yield that can be sustainably harvested.
  18. Farming method maximizing output from a minimal land area.
  19. Farming of aquatic organisms like fish and shellfish.
Down
  1. Materials/components from the natural environment.
  2. Economic sector involving extraction of raw materials.
  3. Widespread modern agricultural techniques increasing productivity.
  4. Agricultural techniques adapted to Mediterranean climate regions.
  5. Pattern of nomadic movement among pastoralist societies.
  6. The clearing and removal of forest areas.
  7. Cultivating land, raising crops and livestock for food.
  8. Period after a society industrialization peaks.
  9. Form of commercial agricultural production using plantations.
  10. The process of fertile land becoming desert-like.
  11. A source of wealth or means of producing goods.

30 Clues: An economy focused on trade and profit.The clearing and removal of forest areas.Moving livestock over wide areas to graze.Economic system driven by supply and demand.Knowledge-based part of the economy like it.Period after a society industrialization peaks.A source of wealth or means of producing goods....

CRIMINALISTICS PUZZLE 2023-07-09

CRIMINALISTICS PUZZLE crossword puzzle
Across
  1. rear part of a firearm barrel.
  2. substance that induces changes in mood, attitude, thought process and perceptions.
  3. the decomposition of organic matter by heat.
  4. imaging, process where a picture is converted into a series of square electronic dots known as pixels.
  5. uniform body of matter.
  6. surgical procedure performed by pathologist on a dead body.
  7. Point, minimum temp at which a liquid fuel produces enough vapor to burn.
  8. instrument that links a microscope and a spectrophotometer.
  9. authentic sample used for comparison purposes.
  10. DNA, process of developing DNA profiles from buccal swab in 90 minutes or less compatible with CODIS.
Down
  1. individual charged with the responsibility of detecting and identifying the presence of drugs and poisons n body fluids, tissue, and organs.
  2. tag, translucent piece of tissue surrounding the hair's natural shaft near the root.
  3. process to analyze and store information on a human iris.
  4. of Custody, list of people who came into possession of an item of evidence.
  5. group of 8 bits.
  6. traditional method of modulating radio signals so that they can carry information.
  7. Method, process that uses strict guidelines to ensure careful and systematic collection, organization and analysis of information.
  8. bloodstain pattern that is created when blood is flung from a blood bearing object in motion onto a surface.
  9. substance usually a protein that stimulates the body to produce antibodies against it.
  10. technique that simultaneously detects more than one DNA maker in a single analysis.
  11. single test that specifically identifies a substance.

21 Clues: group of 8 bits.uniform body of matter.rear part of a firearm barrel.the decomposition of organic matter by heat.authentic sample used for comparison purposes.single test that specifically identifies a substance.process to analyze and store information on a human iris.surgical procedure performed by pathologist on a dead body....

Business Analytics Roll no 25455 Nikita Shinde 2025-11-04

Business Analytics Roll no 25455 Nikita Shinde crossword puzzle
Across
  1. Predictive model using a tree-like structure of decisions
  2. Visual display of key performance indicators and metrics
  3. Explains reasons for past outcomes or events
  4. Summarizes past data to understand what happened
  5. Analyzing data points collected over time
  6. Central repository of integrated data from multiple sources
  7. Delivery of computing services via the internet
  8. Moral principles governing responsible data usage
  9. Assigning data into predefined categories
  10. Process of discovering hidden patterns in large data sets
  11. Statistical method to find relationship between variables
  12. Technique that forecasts future outcomes using historical data
Down
  1. Extremely large and complex data sets analyzed computationally
  2. Suggests optimal decisions based on data analysis
  3. Simulation of human intelligence by machines
  4. Method used to test assumptions about a population
  5. Process of correcting or removing inaccurate data
  6. Subset of a data warehouse focused on a specific area
  7. Technologies and processes for analyzing business information
  8. Scientific process of transforming data into business insights
  9. Data organized in rows and columns format
  10. Representation of data through charts graphs and dashboards
  11. Algorithm that improves automatically through experience
  12. Metric used to evaluate success of objectives
  13. Computational model inspired by the human brain
  14. Framework for managing data policies and responsibilities
  15. Measure showing how two variables move together
  16. Process of extracting transforming and loading data into storage
  17. Grouping of data objects with similar characteristics
  18. Data without predefined structure or format

30 Clues: Data organized in rows and columns formatAnalyzing data points collected over timeAssigning data into predefined categoriesData without predefined structure or formatSimulation of human intelligence by machinesExplains reasons for past outcomes or eventsMetric used to evaluate success of objectivesComputational model inspired by the human brain...

Business Analyst 25466. Shravani pradip wathodkar 2025-10-29

Business Analyst  25466. Shravani pradip wathodkar crossword puzzle
Across
  1. Accuracy and consistency of stored data
  2. Technique that forecasts future outcomes using historical data
  3. Data point that differs significantly from other observations
  4. Suggests optimal decisions based on data analysis
  5. Computational model inspired by the human brain
  6. Scientific process of transforming data into business insights
  7. Metric used to evaluate performance toward business objectives
  8. Process of correcting or removing inaccurate data
  9. Statistical relationship between two or more variables
  10. Explains reasons for past outcomes or events
  11. Measure of profitability calculated as return divided by investment
  12. Decision-making approach based on analysis rather than intuition
  13. Framework for managing data availability and integrity
  14. Summarizes past data to understand what happened
  15. Converting data into a suitable format for analysis
  16. Language used to manage and query relational databases
Down
  1. Graphical representation of data
  2. Statistical method used to estimate relationships among variables
  3. Simulation of human intelligence by machines
  4. Tools and systems for analyzing business information
  5. Protection of data from unauthorized access
  6. On-demand delivery of computing services over the internet
  7. Visual display of key business metrics and analytics
  8. Algorithm that improves automatically through experience
  9. Statistical method for testing assumptions about data
  10. Central repository of integrated data from multiple sources
  11. Process of discovering hidden patterns in large data sets
  12. Extremely large and complex data sets
  13. Model used for classification and prediction
  14. Technique of selecting a subset of data for analysis

30 Clues: Graphical representation of dataExtremely large and complex data setsAccuracy and consistency of stored dataProtection of data from unauthorized accessSimulation of human intelligence by machinesExplains reasons for past outcomes or eventsModel used for classification and predictionComputational model inspired by the human brain...

Livestock Terminology 2023-03-09

Livestock Terminology crossword puzzle
Across
  1. mature female pig
  2. intact male sheep
  3. castrated male pig
  4. young,immature female cattle
  5. baby goat
  6. intact male cattle
  7. castrated male cattle
  8. scientific name for pigs
  9. castrated male sheep or goat
  10. animal bred from parents of the same breed
  11. castrated male horse
  12. baby sheep
  13. intact mature male horse
  14. immature female horse
Down
  1. intact male pig
  2. baby cattle
  3. intact young male horse
  4. scientific name for cattle
  5. animal bred from parents of different breeds
  6. scientific name for horses
  7. baby horse
  8. mature female cattle
  9. mature female horse
  10. female sheep
  11. baby pig
  12. immature female pig
  13. intact male goat
  14. female goat

28 Clues: baby pigbaby goatbaby horsebaby sheepbaby cattlefemale goatfemale sheepintact male pigintact male goatmature female pigintact male sheepcastrated male pigintact male cattlemature female horseimmature female pigmature female cattlecastrated male horsecastrated male cattleimmature female horseintact young male horsescientific name for pigs...

manuel 2021-02-15

manuel crossword puzzle
Across
  1. at the bottom of the sea shrubbery produce berrys
  2. howls at night
  3. are relacionated with dracula grass is on the soccer field
  4. It is used as a means of transport in movies
  5. his scientific name is Ustilago maydis
  6. some make us sick
  7. produce fruits
  8. is a mario item
  9. simba
  10. his scientific name is Lactarius deliciosus
  11. is uder land
  12. the best friend of humans
Down
  1. jump very hight
  2. two colors
  3. they likes bananas
  4. are much especies
  5. ssss
  6. they like mud
  7. is soo big
  8. his scientific name is Psilocybe semilanceata
  9. like mouses
  10. they laugh
  11. keeps her baby in a bag

23 Clues: sssssimbatwo colorsis soo bigthey laughlike mousesis uder landthey like mudhowls at nightproduce fruitsis a mario itemjump very hightare much especiessome make us sickthey likes bananaskeeps her baby in a bagthe best friend of humanshis scientific name is Ustilago maydishis scientific name is Lactarius deliciosus...

manuel 2021-02-15

manuel crossword puzzle
Across
  1. jump very hight
  2. his scientific name is Lactarius deliciosus
  3. produce fruits
  4. they laugh
  5. howls at night
  6. keeps her baby in a bag
  7. is soo big
  8. It is used as a means of transport in movies
  9. the best friend of humans
  10. at the bottom of the sea shrubbery produce berrys
Down
  1. are much especies
  2. his scientific name is Ustilago maydis
  3. like mouses
  4. his scientific name is Psilocybe semilanceata
  5. two colors
  6. ssss
  7. some make us sick
  8. is uder land
  9. is a mario item
  10. are relacionated with dracula grass is on the soccer field
  11. simba
  12. they likes bananas
  13. they like mud

23 Clues: sssssimbatwo colorsthey laughis soo biglike mousesis uder landthey like mudproduce fruitshowls at nightis a mario itemjump very hightare much especiessome make us sickthey likes bananaskeeps her baby in a bagthe best friend of humanshis scientific name is Ustilago maydishis scientific name is Lactarius deliciosus...

scientific revolution 2024-03-06

scientific revolution crossword puzzle
Across
  1. challenged the church and taught that the sun was the center of the universe and everything revolved around it
  2. anything bad that happened to the body was considered punishments from
  3. confirmed all matters fall at the same speed
  4. invented first modern telescope
Down
  1. introduced the scientific method
  2. used math to prove that copernicus was right
  3. the church taught the earth was

7 Clues: the church taught the earth wasinvented first modern telescopeintroduced the scientific methodused math to prove that copernicus was rightconfirmed all matters fall at the same speedanything bad that happened to the body was considered punishments from...

IPC Vocab Wk 2 2025-08-19

IPC Vocab Wk 2 crossword puzzle
Across
  1. – An educated guess based on observations.
  2. – A risk to human health from biological materials.
  3. – Items worn to protect from hazards (such as goggles, gloves, or lab coats).
Down
  1. Method – A process for solving problems using evidence and experiments.
  2. – The group in an experiment that does not receive the tested change.
  3. – Something that changes in an experiment.
  4. – Information collected during an experiment.

7 Clues: – An educated guess based on observations.– Something that changes in an experiment.– Information collected during an experiment.– A risk to human health from biological materials.– The group in an experiment that does not receive the tested change.Method – A process for solving problems using evidence and experiments....

GCSE ISA key terms 2013-05-14

GCSE ISA key terms crossword puzzle
Across
  1. All the materials you will use during your investigation
  2. During this investigation the ....of the water will be taken.
  3. The variable that is measured during an experiment
  4. The different beakers will have different s........ areas
  5. The initial building block of a scientific investigation
Down
  1. The variable that is changed during an experiment
  2. During this investigation the size of the ....will change
  3. Manufacturers are required to identify and assess all potential risks in the manufacturing environment. This is called ..... assessment
  4. The stages involved in the practical

9 Clues: The stages involved in the practicalThe variable that is changed during an experimentThe variable that is measured during an experimentAll the materials you will use during your investigationThe initial building block of a scientific investigationDuring this investigation the size of the ....will change...

Science vocab 2022-08-23

Science vocab crossword puzzle
Across
  1. the final step that tells if your hypotheses is supported or not
  2. 5th step in the scientific method
  3. to test out a question to find an answer
  4. something that is changed to answer a question
  5. stays the same throughout the experiment
Down
  1. changed because of the independent variable
  2. a set of procedures used by scientists in order to answer a question about the world
  3. things you see and write down after conducting an experiment
  4. to come up with possible results to an experiment

9 Clues: 5th step in the scientific methodto test out a question to find an answerstays the same throughout the experimentchanged because of the independent variablesomething that is changed to answer a questionto come up with possible results to an experimentthings you see and write down after conducting an experiment...

Vocabulary Crossword 2020-09-23

Vocabulary Crossword crossword puzzle
Across
  1. a living thing that affects all other living things
  2. variable A variable who depends on what of that is the independent variable
  3. this is measured by the quantity
  4. method ever since the 17th century a procedure that has normalized natural science
Down
  1. this is measured by the quality
  2. The way you look at something and make thoughts about it and share them
  3. having a guess to that observation
  4. variable A variable that does not need anything to depend on
  5. are non-living physical parts of the earth

9 Clues: this is measured by the qualitythis is measured by the quantityhaving a guess to that observationare non-living physical parts of the eartha living thing that affects all other living thingsvariable A variable that does not need anything to depend onThe way you look at something and make thoughts about it and share them...

Laboratory Week 2025 2025-04-08

Laboratory Week 2025 crossword puzzle
Across
  1. A scientist who studies living organisms
  2. A scientist who studies the properties and reactions of chemicals
  3. A substance used to cause a chemical reaction
  4. A device used to measure temperature
  5. A piece of equipment used to sterilize laboratory instruments
Down
  1. A place where scientific research is conducted (10 letters)
  2. A method of separating mixtures based on differences in their movement through a medium
  3. A process of determining the concentration of a substance in a solution
  4. A piece of equipment used to view very small objects

9 Clues: A device used to measure temperatureA scientist who studies living organismsA substance used to cause a chemical reactionA piece of equipment used to view very small objectsA place where scientific research is conducted (10 letters)A piece of equipment used to sterilize laboratory instruments...

Experiment. Fail, Learn. Repeat. 2022-02-10

Experiment. Fail, Learn. Repeat. crossword puzzle
Across
  1. "I think therefore I am." (2 words)
  2. midnight body snatcher (2 words)
Down
  1. loves bacon, and created the scientific method (2 words)
  2. believed the earth was round and published his work after his death
  3. developed the three laws of motion
  4. mathematical proof that the planets revolve around the sun
  5. pope Urban VII tried him for hersey (2 words

7 Clues: midnight body snatcher (2 words)developed the three laws of motion"I think therefore I am." (2 words)pope Urban VII tried him for hersey (2 wordsloves bacon, and created the scientific method (2 words)mathematical proof that the planets revolve around the sunbelieved the earth was round and published his work after his death

scientific revolution 2024-03-06

scientific revolution crossword puzzle
Across
  1. taught that the sun is the center of the universe
  2. invented the modern telescope
  3. created the scientific method
Down
  1. when people started to think logicly and not just what they hear
  2. when people stfocusto focase more on humanity
  3. proved that planets dont go in circles but ovals
  4. confirmed that matter drops at the same speed no matter the weight

7 Clues: created the scientific methodinvented the modern telescopewhen people stfocusto focase more on humanityproved that planets dont go in circles but ovalstaught that the sun is the center of the universewhen people started to think logicly and not just what they hearconfirmed that matter drops at the same speed no matter the weight

sr 2024-03-06

sr crossword puzzle
Across
  1. challenged the church and taught that the sun was the center of the universe and everything revolved around it
  2. anything bad that happened to the body was considered punishments from
  3. confirmed all matters fall at the same speed
  4. invented first modern telescope
Down
  1. introduced the scientific method
  2. used math to prove that copernicus was right
  3. the church taught the earth was

7 Clues: the church taught the earth wasinvented first modern telescopeintroduced the scientific methodused math to prove that copernicus was rightconfirmed all matters fall at the same speedanything bad that happened to the body was considered punishments from...

Unit 8 2022-12-20

Unit 8 crossword puzzle
Across
  1. / science that studies the properties of matter, radiation and energy in all its forms, based on the Scientific Method, using a mathematical language.
  2. / damage that occurs in the body
  3. / That assumes a commitment of an ethical nature in the political or social sphere
  4. house / teatro para opera
Down
  1. / tal vez
  2. / create a new drug to treat a disease
  3. / exposición

7 Clues: / tal vez/ exposiciónhouse / teatro para opera/ damage that occurs in the body/ create a new drug to treat a disease/ That assumes a commitment of an ethical nature in the political or social sphere...

Biology Vocabulary 2021-09-09

Biology Vocabulary crossword puzzle
Across
  1. Cells, DNA, Reproduce, Grow, Respond to Stimuli, Adapt over time, Energy, homeostasis
  2. A particular preference or point of view that is personal, rather than scientific.
Down
  1. statements, beliefs, or practices that claim to be both scientific and factual but are incompatible with the scientific method.
  2. Scientifically accurate information that is used in an unbiased way to convey a biological idea. Accurate + Unbiased = Valid
  3. particle made of proteins, nucleic acids, and sometimes lipids that can replicate only by infecting living cells

5 Clues: A particular preference or point of view that is personal, rather than scientific.Cells, DNA, Reproduce, Grow, Respond to Stimuli, Adapt over time, Energy, homeostasisparticle made of proteins, nucleic acids, and sometimes lipids that can replicate only by infecting living cells...

Scientific Method Crossword puzzle 2021-08-30

Scientific Method Crossword puzzle crossword puzzle
Across
  1. A variable that relies on the independent variable
  2. Something you do to get more answers on something
Down
  1. A variable that constantly changes
  2. A variable that stays the same throughout the experiment
  3. A method used to solve experiment question

5 Clues: A variable that constantly changesA method used to solve experiment questionSomething you do to get more answers on somethingA variable that relies on the independent variableA variable that stays the same throughout the experiment

Scientific Method Crossword Puzzle 2025-09-03

Scientific Method Crossword Puzzle crossword puzzle
Across
  1. A scientific test
  2. A process for studying and experimenting, to help reach scientific conclusions.
  3. The variable that relies on the scientist's changes
  4. A variable that never changes
Down
  1. The variable that you change on purpose

5 Clues: A scientific testA variable that never changesThe variable that you change on purposeThe variable that relies on the scientist's changesA process for studying and experimenting, to help reach scientific conclusions.

How Do Scientists Find Answer 2020-09-01

How Do Scientists Find Answer crossword puzzle
Across
  1. A ___________ model is made on a computer.
  2. __________ variable can be changed during the experiment.
  3. __________ method is a process of steps scientist use to study the natural world
Down
  1. An answer a scientist thinks might answer his question.
  2. A ________dimensional model has width and height.
  3. A _______ dimensional model has width, height and depth.
  4. _________ variable is observed and measured during the experiment.

7 Clues: A ___________ model is made on a computer.A ________dimensional model has width and height.An answer a scientist thinks might answer his question.A _______ dimensional model has width, height and depth.__________ variable can be changed during the experiment._________ variable is observed and measured during the experiment....

Crossword. Research concepts 2024-07-28

Crossword. Research concepts crossword puzzle
Across
  1. is a simplified representation of a system or phenomenon, used to explain, predict, or understand its behavior.
  2. is a learning theory suggesting that individuals construct their own understanding and knowledge of the world through experiences and reflecting on those experiences
  3. , refers to the entire group or set of items, individuals, or events that is being studied or that is relevant to the research question.
  4. refers to the foundational principles or base upon which a system, theory, or method is built. It is the underlying support or groundwork.
  5. is a well-substantiated explanation of some aspect of the natural world, based on a body of evidence and repeatedly tested and confirmed through observation and experimentation.
  6. , is a subset of a population selected for measurement, observation, or questioning, to provide statistical information about the population.
  7. , is the branch of philosophy that studies the nature of being, existence, and reality.
Down
  1. , is someone who studies or advocates for understanding the natural world through observation and empirical evidence, often emphasizing the rejection of supernatural explanations.
  2. , is the complete set of individuals or items that share one or more characteristics from which data can be collected. It is the entire group of interest in a research study.
  3. is a set of beliefs, values, and techniques shared by members of a scientific community that guides their research and practice.
  4. is a specific method or procedure used to achieve a particular result in research, experimentation, or any scientific process
  5. refers to the central point of attention or activity. In research, it is the specific area or subject matter that is being studied or investigated.
  6. is a testable statement or prediction about the relationship between two or more variables
  7. refers to the systematic, theoretical analysis of the methods applied to a field of study.
  8. , is a systematic approach to understanding the natural world through observation, experimentation, and evidence-based reasoning.

15 Clues: , is the branch of philosophy that studies the nature of being, existence, and reality.is a testable statement or prediction about the relationship between two or more variablesrefers to the systematic, theoretical analysis of the methods applied to a field of study....

Renaissance-Reformation-Sci Revolution Review 2023-11-06

Renaissance-Reformation-Sci Revolution Review crossword puzzle
Across
  1. This Church group supported Renaissance artists
  2. The fraction of land that the Roman Catholic Church owned during the Middle Ages, 1/___.
  3. A scientific theory that the Earth was the center of the universe
  4. Term for historical period of when M. Luther and others broke away from the Church (two words)
  5. Invented the printing press
  6. Scientists thought all knowledge should be based on ____ and observation.
  7. The reason artists began experimenting with new techniques to gain attention to their art
  8. Term that describes becoming more interested in worldly concepts than religious ones
  9. Galileo invented this device to better study the solar system
  10. A family of Italian bankers who supported artists
  11. Trade caused an increase in ___ in Italy to be spent on artists
  12. A main reason Renaissance began in Italy
  13. Artistic technique used for realistic art
  14. Isaac Newton invented this mathematical tool to study physics
  15. created very life-like sculptures & paintings
Down
  1. The main complaint M. Luther had toward the Roman Catholic Church practices
  2. Growth of large ___ in Italy caused the Renaissance
  3. Religious group that Catholics, Protestants and Orthodox Christians belong to.
  4. This was a list of 95 criticism M. Luther had about the Catholic Church
  5. He was the religious leader who spend money on artists
  6. The Catholic Church judged Galileo of being guilty of being a ____.
  7. German monk who led a protest against the Church
  8. Nobles were not allowed to ____ the property of the Church
  9. Many new Christian ______ split off from the Roman Catholic Church
  10. Astronomer who supported Heliocentric Theory
  11. Type of source that was created at the time of a historical event (like an eye-witness).
  12. Method used to precisely observe nature
  13. A style of writing that M. Luther used which connected with average people in Europe
  14. And ancient Romans inspired Renaissance artists
  15. He was the source of all scientific knowledge for 1,000 years before the Sci. Rev.
  16. Renaissance focused more on ___ achievement
  17. A punishment the Church used to expel someone from the Church
  18. The Catholic Church threated to ____ Galileo if he did not recant

33 Clues: Invented the printing pressMethod used to precisely observe natureA main reason Renaissance began in ItalyArtistic technique used for realistic artRenaissance focused more on ___ achievementAstronomer who supported Heliocentric Theorycreated very life-like sculptures & paintingsThis Church group supported Renaissance artists...

Politics 2024-02-01

Politics crossword puzzle
Across
  1. Approach Scientific, objective and value free study of political phenomenon; stress upon the use of scientific method
  2. it means "to know."
  3. Government should listen to the voices of the people.
  4. Science Believes that study of political science should be verified by eveidence
  5. the science of law
  6. Key to good governance.
  7. essentially the rule of law; people express their will and exercise through sovereignity
  8. Exist because people disagree about the aims and objects of human endeavor. it involves conflicts
  9. Decisions are made after making into consideration the different viewpoints
  10. collecting data, the researcher shows measure and quantify data
  11. Theory and research should go together
  12. Main alternative visions of the State
  13. approached concerned with the legal process, legal bodies or institutions, justice, and independence or judiciary
  14. According to him, "each city is a kind of association and that man by nature is a political animal."
Down
  1. Political Science should not be separated from values and other social sciences like history
  2. Logics Background and knowledge of current political problems
  3. Approach combination of view and orientations to politics in philosophical, ethical and institutional terms
  4. believes that to do objective research one has to be value free
  5. soil, climate, land use, vegetation and population Affect the political development
  6. the manner if steering or governing or of directing and controlling
  7. put emphasizes, testing and verifying everything; what can not be verified is not scientific
  8. of law Government should also act within the limits of the power prescribed by the
  9. put emphasis on the use of those research tools.
  10. there are certain unformalities in political behavior which can be expressed in generalizations or theories
  11. Human behavior
  12. Art stylizes man's consciousness to suit a person's political objectives..
  13. Branch of knowledge that records and explains the past events; the records of the past
  14. in greek it means "city", Sovereign States
  15. Government should make its decision and endeavors known to people
  16. Approach firmly believes that values cannot be separated from the study of politics and politocal science

30 Clues: Human behaviorthe science of lawit means "to know."Key to good governance.Main alternative visions of the StateTheory and research should go togetherin greek it means "city", Sovereign Statesput emphasis on the use of those research tools.Government should listen to the voices of the people....

Introduction to Psychology Final Exam Review #1 2018-05-14

Introduction to Psychology Final Exam Review #1 crossword puzzle
Across
  1. the most widely used biological therapy
  2. the scientific study of behavior and cognitive processes
  3. approach to psychology that emphasizes learning, the environment, and what we can see people do
  4. subfield of psychology that would work with law enforcement
  5. defense mechanism that means putting things off until the last minute
  6. when an individual feels less compelled to help because of the presence of a large group
  7. another name for behavior therapy
  8. approach to psychology that emphasizes the unconscious and early childhood experiences
  9. the most common of the psychological disorders
Down
  1. ritualistic behaviors meant to dispel repetitive thoughts
  2. the founder of modern psychology because he opened the first lab to study it scientifically
  3. memories we can recall best when we are in a mood similar to the one in which it was stored
  4. the only research method that allows cause-and-effect conclusions
  5. counseling or talk therapy
  6. in an experiment, they get the treatment
  7. research method that involves an in-depth look at a person or small group
  8. approach to psychology that emphasizes physiology and genetics
  9. formerly known as Multiple Personality Disorder
  10. our characteristic way of responding to the world that distinguishes us from others
  11. used to gather evidence to support hypothesis
  12. in an experiment, they don't get the treatment
  13. a common symptom of schizophrenia
  14. the easiest memory task
  15. founder of psychoanalysis
  16. statement about what you think you will find with your research

25 Clues: the easiest memory taskfounder of psychoanalysiscounseling or talk therapya common symptom of schizophreniaanother name for behavior therapythe most widely used biological therapyin an experiment, they get the treatmentused to gather evidence to support hypothesisin an experiment, they don't get the treatment...

Human Factors Terminology 2014-05-02

Human Factors Terminology crossword puzzle
Across
  1. Human eye is most sensitive to this color
  2. Selectively concentrating on one aspect of the environment and ignoring other things
  3. Step-by-step instructions to accomplish a task
  4. Interpretation of sensory inputs
  5. From the Greek words for “work” and “laws or study of”
  6. Survey tool to gather information from respondents
  7. Consistency and repeatability
  8. Ratio of output to inputs in production
  9. Deterioration in decision making due to concurrence seeking in a group
  10. Technique to aid information retention and retrieval
  11. Conducting a controlled test of a hypothesis using the scientific method
  12. Acceptable level of risk
  13. Perceptual or attentional narrowing
  14. U.S. standards and conformity assessment system
  15. Ease of use and learnability of an object
  16. Thinking, understanding, learning, and remembering
  17. Rule of thumb
Down
  1. Acquiring knowledge, behaviors, or skills
  2. Trusting in automation more than is warranted
  3. Indirect method of presenting information in reproduced or symbolic form
  4. Collection of equipment and people designed to perform a mission or function
  5. Accomplishment of a task in accordance with standards of accuracy, completeness, and efficiency
  6. Study and measurement of human body dimensions
  7. Context in which a system operates
  8. Amount of light energy striking the surface of an object
  9. Physical movements of the body and body parts
  10. Relationship between physical stimuli and their subjective correlates
  11. Carefully watching a process to collect information
  12. Knobs and dials
  13. Mistake or inaccuracy

30 Clues: Rule of thumbKnobs and dialsMistake or inaccuracyAcceptable level of riskConsistency and repeatabilityInterpretation of sensory inputsContext in which a system operatesPerceptual or attentional narrowingRatio of output to inputs in productionAcquiring knowledge, behaviors, or skillsHuman eye is most sensitive to this color...

Business analytics Roll no 25467 Anushka Yadav 2025-11-01

Business analytics Roll no 25467 Anushka Yadav crossword puzzle
Across
  1. Predictive model using a tree-like structure of decisions
  2. Visual display of key performance indicators and metrics
  3. Explains reasons for past outcomes or events
  4. Summarizes past data to understand what happened
  5. Analyzing data points collected over time
  6. Central repository of integrated data from multiple sources
  7. Delivery of computing services via the internet
  8. Moral principles governing responsible data usage
  9. Assigning data into predefined categories
  10. Process of discovering hidden patterns in large data sets
  11. Statistical method to find relationship between variables
  12. Technique that forecasts future outcomes using historical data
Down
  1. Extremely large and complex data sets analyzed computationally
  2. Suggests optimal decisions based on data analysis
  3. Simulation of human intelligence by machines
  4. Method used to test assumptions about a population
  5. Process of correcting or removing inaccurate data
  6. Subset of a data warehouse focused on a specific area
  7. Technologies and processes for analyzing business information
  8. Scientific process of transforming data into business insights
  9. Data organized in rows and columns format
  10. Representation of data through charts graphs and dashboards
  11. Algorithm that improves automatically through experience
  12. Metric used to evaluate success of objectives
  13. Computational model inspired by the human brain
  14. Framework for managing data policies and responsibilities
  15. Measure showing how two variables move together
  16. Process of extracting transforming and loading data into storage
  17. Grouping of data objects with similar characteristics
  18. Data without predefined structure or format

30 Clues: Data organized in rows and columns formatAnalyzing data points collected over timeAssigning data into predefined categoriesData without predefined structure or formatSimulation of human intelligence by machinesExplains reasons for past outcomes or eventsMetric used to evaluate success of objectivesComputational model inspired by the human brain...

BUSINESS ANALYTICS Dhanashri Aher Roll no. 25401 2025-10-29

BUSINESS ANALYTICS Dhanashri Aher Roll no. 25401 crossword puzzle
Across
  1. Accuracy and consistency of stored data
  2. Technique that forecasts future outcomes using historical data
  3. Data point that differs significantly from other observations
  4. Suggests optimal decisions based on data analysis
  5. Computational model inspired by the human brain
  6. Scientific process of transforming data into business insights
  7. Metric used to evaluate performance toward business objectives
  8. Process of correcting or removing inaccurate data
  9. Statistical relationship between two or more variables
  10. Explains reasons for past outcomes or events
  11. Measure of profitability calculated as return divided by investment
  12. Decision-making approach based on analysis rather than intuition
  13. Framework for managing data availability and integrity
  14. Summarizes past data to understand what happened
  15. Converting data into a suitable format for analysis
  16. Language used to manage and query relational databases
Down
  1. Graphical representation of data
  2. Statistical method used to estimate relationships among variables
  3. Simulation of human intelligence by machines
  4. Tools and systems for analyzing business information
  5. Protection of data from unauthorized access
  6. On-demand delivery of computing services over the internet
  7. Visual display of key business metrics and analytics
  8. Algorithm that improves automatically through experience
  9. Statistical method for testing assumptions about data
  10. Central repository of integrated data from multiple sources
  11. Process of discovering hidden patterns in large data sets
  12. Extremely large and complex data sets
  13. Model used for classification and prediction
  14. Technique of selecting a subset of data for analysis

30 Clues: Graphical representation of dataExtremely large and complex data setsAccuracy and consistency of stored dataProtection of data from unauthorized accessSimulation of human intelligence by machinesExplains reasons for past outcomes or eventsModel used for classification and predictionComputational model inspired by the human brain...

Business analytics 2025-11-04

Business analytics crossword puzzle
Across
  1. Accuracy and consistency of stored data
  2. Technique that forecasts future outcomes using historical data
  3. Data point that differs significantly from other observations
  4. Suggests optimal decisions based on data analysis
  5. Computational model inspired by the human brain
  6. Scientific process of transforming data into business insights
  7. Metric used to evaluate performance toward business objectives
  8. Process of correcting or removing inaccurate data
  9. Statistical relationship between two or more variables
  10. Explains reasons for past outcomes or events
  11. Measure of profitability calculated as return divided by investment
  12. Decision-making approach based on analysis rather than intuition
  13. Framework for managing data availability and integrity
  14. Summarizes past data to understand what happened
  15. Converting data into a suitable format for analysis
  16. Language used to manage and query relational databases
Down
  1. Graphical representation of data
  2. Statistical method used to estimate relationships among variables
  3. Simulation of human intelligence by machines
  4. Tools and systems for analyzing business information
  5. Protection of data from unauthorized access
  6. On-demand delivery of computing services over the internet
  7. Visual display of key business metrics and analytics
  8. Algorithm that improves automatically through experience
  9. Statistical method for testing assumptions about data
  10. Central repository of integrated data from multiple sources
  11. Process of discovering hidden patterns in large data sets
  12. Extremely large and complex data sets
  13. Model used for classification and prediction
  14. Technique of selecting a subset of data for analysis

30 Clues: Graphical representation of dataExtremely large and complex data setsAccuracy and consistency of stored dataProtection of data from unauthorized accessSimulation of human intelligence by machinesExplains reasons for past outcomes or eventsModel used for classification and predictionComputational model inspired by the human brain...

science vocabulary 2022-09-03

science vocabulary crossword puzzle
Across
  1. something that changes in a test
  2. the standard to which change is measured
  3. what you think will happen during a test
Down
  1. something you find out about the world
  2. step by step process to complete a task
  3. use of the scientific method to test a hypothesis

6 Clues: something that changes in a testsomething you find out about the worldstep by step process to complete a taskthe standard to which change is measuredwhat you think will happen during a testuse of the scientific method to test a hypothesis

RENAISSANCE WORD 2025-02-14

RENAISSANCE WORD crossword puzzle
Across
  1. How Francis Bacon died
  2. Where Francis Bacon was born and died.
  3. The process of proving facts by testing and experimenting
Down
  1. The name of this newspaper
  2. Invention that allows the printing process to be faster and easier.
  3. A philosopher and statesman who invented the Scientific Method

6 Clues: How Francis Bacon diedThe name of this newspaperWhere Francis Bacon was born and died.The process of proving facts by testing and experimentingA philosopher and statesman who invented the Scientific MethodInvention that allows the printing process to be faster and easier.

Scientific Discoveries 2025-09-16

Scientific Discoveries crossword puzzle
Across
  1. William Harvey discovered what about the human body?
  2. The First Law of Motion
  3. Andreas Vesalius wrote a book about what topic?
Down
  1. A new model of the solar system made by Copernicus
  2. The subject that Robert Boyle contributed to
  3. The philosopher who advocated the scientific method

6 Clues: The First Law of MotionThe subject that Robert Boyle contributed toAndreas Vesalius wrote a book about what topic?A new model of the solar system made by CopernicusThe philosopher who advocated the scientific methodWilliam Harvey discovered what about the human body?

FORENSIC FUSION: Science, Evidence & Innovation 2025-12-15

FORENSIC FUSION: Science, Evidence & Innovation crossword puzzle
Across
  1. Unique genetic blueprint used for individual identification
  2. Branch dealing with bullets, firearms, and tool marks
  3. Branch of forensic science dealing with fingerprints
  4. Innovative forensic technology using facial geometry for identification
  5. Innovative forensic tool used to reconstruct crime scenes in 3D
  6. Forensic innovation involving algorithms to predict criminal patterns
  7. The application of scientific principles to legal matters
  8. Study of questioned handwriting and signatures
Down
  1. Advanced forensic method to estimate time since death using body chemistry
  2. Chemical analysis of drugs, poisons, and trace materials
  3. Use of isotopes to trace geographic origin of evidence
  4. Digital trail left by an individual during online activities
  5. Digital evidence extracted from electronic devices
  6. Modern technique that uses body measurements for identification
  7. Artificial intelligence technique used for pattern recognition in forensics
  8. Forensic science branch that studies insect activity on corpses

16 Clues: Study of questioned handwriting and signaturesDigital evidence extracted from electronic devicesBranch of forensic science dealing with fingerprintsBranch dealing with bullets, firearms, and tool marksUse of isotopes to trace geographic origin of evidenceChemical analysis of drugs, poisons, and trace materials...

FORENSIC FUSION: Science, Evidence & Innovation 2025-12-15

FORENSIC FUSION: Science, Evidence & Innovation crossword puzzle
Across
  1. Branch of forensic science dealing with fingerprints
  2. Branch dealing with bullets, firearms, and tool marks
  3. Advanced forensic method to estimate time since death using body chemistry
  4. Innovative forensic technology using facial geometry for identification
  5. Modern technique that uses body measurements for identification
  6. Unique genetic blueprint used for individual identification
  7. Digital evidence extracted from electronic devices
  8. Forensic innovation involving algorithms to predict criminal patterns
  9. The application of scientific principles to legal matters
Down
  1. Study of questioned handwriting and signatures
  2. Digital trail left by an individual during online activities
  3. Artificial intelligence technique used for pattern recognition in forensics
  4. Innovative forensic tool used to reconstruct crime scenes in 3D
  5. Chemical analysis of drugs, poisons, and trace materials
  6. Forensic science branch that studies insect activity on corpses
  7. Use of isotopes to trace geographic origin of evidence

16 Clues: Study of questioned handwriting and signaturesDigital evidence extracted from electronic devicesBranch of forensic science dealing with fingerprintsBranch dealing with bullets, firearms, and tool marksUse of isotopes to trace geographic origin of evidenceChemical analysis of drugs, poisons, and trace materials...

Activity 1 2013-07-10

Activity 1 crossword puzzle
Across
  1. hot springs in the ocean floor
  2. the sum of all body activities
  3. active mainly during the day
  4. the father of the scientific method
  5. conditions not the same in all groups
  6. the study of living things
  7. a way of explaining an object or event by using a set of facts
  8. the study of organisms interacting with their surroundings and each other
Down
  1. living things
  2. the type of symmetry in which an organism can only be cut one way to create right and left halves
  3. the area between the highest and lowest points that the tide reaches
  4. a sensible explanation about the objects and events in nature
  5. the study of how an organism's internal structure functions
  6. animal life
  7. a small toe high on the leg that does not normally reach the ground
  8. everything surrounding the organism being studied

16 Clues: animal lifeliving thingsthe study of living thingsactive mainly during the dayhot springs in the ocean floorthe sum of all body activitiesthe father of the scientific methodconditions not the same in all groupseverything surrounding the organism being studiedthe study of how an organism's internal structure functions...

Garrett County Tick Surveillance 2024-07-23

Garrett County Tick Surveillance crossword puzzle
Across
  1. The common name for Ixodes scapularis is the ______ tick
  2. Lyme disease is a ____ infection
  3. ________ as soon as possible to wash away ticks after being outside
  4. Ticks should be removed with a pair of
  5. Once a larvae has a blood meal, it molts into a ______.
  6. Ticks go through ____ life stages
  7. The scientific name for the Dog Tick
  8. Ticks are not insects, they are __________.
  9. Lyme disease was first discovered in Lyme, ________.
Down
  1. The blacklegged tick is known for transmitting the pathogen that causes this disease
  2. When a tick is infected with more than one pathogen
  3. An invasive species of tick known as the Asian ______.
  4. clothes treated with this repellant can help protect you against ticks
  5. the method used by Black Legged ticks to find a host
  6. Common symptom of Lyme disease
  7. The hard shell is called the _________.

16 Clues: Common symptom of Lyme diseaseLyme disease is a ____ infectionTicks go through ____ life stagesThe scientific name for the Dog TickTicks should be removed with a pair ofThe hard shell is called the _________.Ticks are not insects, they are __________.When a tick is infected with more than one pathogen...

Word Scramble Chapter 1 2022-06-23

Word Scramble Chapter 1 crossword puzzle
Across
  1. the study of living things
  2. active mainly during the day
  3. the study is how an organism’s internal structure functions
  4. the sum of all body activities
  5. father of the scientific method
  6. animal life
  7. conditions not the same in all groups
  8. hot springs in the ocean floor
  9. the type of symmetry in which an organism can only be cut one way to creep right and left halves
Down
  1. the area between the highest and lowest points that the tide reaches
  2. the study of organisms interacting with their surroundings and each other
  3. everything surrounding the organism being studied
  4. a sensible explanation about the objects and events of nature
  5. living things
  6. a small toe high on the leg that does not normally reach the ground
  7. a way of explaining an object or event using a set of facts

16 Clues: animal lifeliving thingsthe study of living thingsactive mainly during the daythe sum of all body activitieshot springs in the ocean floorfather of the scientific methodconditions not the same in all groupseverything surrounding the organism being studiedthe study is how an organism’s internal structure functions...

KiDS Crossword 2013-02-13

KiDS Crossword crossword puzzle
Across
  1. Replacement to SAPscript forms, used for mass printing in SAP systems.
  2. Change the superclass’s method in sub class
  3. Method of a class that can be used independently of a class instance
  4. Function Module that displays a watch to represent the percentage progress
  5. SAP tool which enables the design and execution of business processes within SAP application systems to support user collaboration work
  6. Transaction that shows all SAP provided user-exits
  7. Type of class based on existing database tables
Down
  1. Counts the number of cells that are not empty in a range
  2. Technique to read in all fields of a database into an internal table at once
  3. Produces a resulting set containing all data records, regardless of whether a matching record exists
  4. Used to coordinate implementation activities with other groups and gain endorsements
  5. The scientific study of equipment design, as in office furniture or transportation seating, for the purpose of improving efficiency, comfort, or safety
  6. SAP's implementation of in-memory database technology
  7. For user service requests needing research, system/data changes, or approval to work
  8. EMIT's current safety theme
  9. Independent structures that allow you to enhance the class-specific public points of contact by implementing them in classes
  10. Acts that could have become an incident
  11. Most popular way to look for the value in excel
  12. Allows for joint processing of multiple screen fields
  13. A scheduled activity to observe how a task is performed compared to written safe standards or practices

20 Clues: EMIT's current safety themeActs that could have become an incidentChange the superclass’s method in sub classMost popular way to look for the value in excelType of class based on existing database tablesTransaction that shows all SAP provided user-exitsSAP's implementation of in-memory database technology...

Business Analytics Rutuja mukund kale roll no 25232 2025-10-29

Business Analytics  Rutuja mukund kale  roll no 25232 crossword puzzle
Across
  1. Accuracy and consistency of stored data
  2. Technique that forecasts future outcomes using historical data
  3. Data point that differs significantly from other observations
  4. Suggests optimal decisions based on data analysis
  5. Computational model inspired by the human brain
  6. Scientific process of transforming data into business insights
  7. Metric used to evaluate performance toward business objectives
  8. Process of correcting or removing inaccurate data
  9. Statistical relationship between two or more variables
  10. Explains reasons for past outcomes or events
  11. Measure of profitability calculated as return divided by investment
  12. Decision-making approach based on analysis rather than intuition
  13. Framework for managing data availability and integrity
  14. Summarizes past data to understand what happened
  15. Converting data into a suitable format for analysis
  16. Language used to manage and query relational databases
Down
  1. Graphical representation of data
  2. Statistical method used to estimate relationships among variables
  3. Simulation of human intelligence by machines
  4. Tools and systems for analyzing business information
  5. Protection of data from unauthorized access
  6. On-demand delivery of computing services over the internet
  7. Visual display of key business metrics and analytics
  8. Algorithm that improves automatically through experience
  9. Statistical method for testing assumptions about data
  10. Central repository of integrated data from multiple sources
  11. Process of discovering hidden patterns in large data sets
  12. Extremely large and complex data sets
  13. Model used for classification and prediction
  14. Technique of selecting a subset of data for analysis

30 Clues: Graphical representation of dataExtremely large and complex data setsAccuracy and consistency of stored dataProtection of data from unauthorized accessSimulation of human intelligence by machinesExplains reasons for past outcomes or eventsModel used for classification and predictionComputational model inspired by the human brain...

Unit 1 Key Terms 2015-10-26

Unit 1 Key Terms crossword puzzle
Across
  1. A professional who applies scientific knowledge to solve problems.
  2. Able to be shown to be right or reasonable; defensible:
  3. A legal document that engineers use to prove the validity of their work as well as designs.
  4. A way to evaluate and create assessments
  5. A part of design brief that challenges the designer and describes what a design solution should do.
  6. The systematic investigation into and study of materials and sources
  7. An idea or opinion about something
  8. Possessing having a sound basis in logic or fact
  9. Something that restricts something else from it’s full potential
  10. A first, typical or preliminary model of something
  11. The act of generating many ideas that are related to each otherp
  12. To plan and make something for a specific purpose
  13. A new method, idea, product, etc.
  14. An article or substance that is manufactured or refined for sale
Down
  1. A person who pays and organization for services
  2. A written document for a design
  3. A set of steps that engineers follow to get the solution to a problem. It is very long and dificult.
  4. Relating to or iteration, especially of a math or computer processes
  5. Being able to identify problems
  6. A person who plans the form, look, or workings of something
  7. The ability to think and create new ideas
  8. To make a judgement about something
  9. Something, typically a process or device, that has been invented:
  10. A method for creating a great quantity of ideas

24 Clues: A written document for a designBeing able to identify problemsA new method, idea, product, etc.An idea or opinion about somethingTo make a judgement about somethingA way to evaluate and create assessmentsThe ability to think and create new ideasA person who pays and organization for servicesA method for creating a great quantity of ideas...

Unit 1 Science Skills Test Review 2023-09-14

Unit 1 Science Skills Test Review crossword puzzle
Across
  1. data that is gathered in an experiment that is verbal descriptions
  2. process used by scientists to solve a problem
  3. average of a set of numbers
  4. items unchanged in an experiment
  5. tool used to measure a precise amount of liquid (Picture #1)
  6. tool used to dispense a small amount of liquid
  7. amount of matter in an object
  8. variable that is measured by the scientist
  9. educated guess, prediction of an outcome
  10. type of graph used to make a comparison
  11. tool used to measure liquids and heat them up (Picture #2)
  12. Letter F in the Graph
  13. method used to find the volume of an irregular object
  14. Letter A in the Graph
Down
  1. tool used to protect your eyes in the lab
  2. Letter D in the Graph
  3. group that is used a comparison
  4. variable that is changed by the scientist
  5. system of ideas that explains many related observations and is supported with a large body of evidence
  6. type of graph used to show change over time
  7. Letter B in the Graph
  8. tool used to measure the mass of an object
  9. step in the scientific method that lists your question
  10. data that is gathered in an experiment that consists of number
  11. mass per unit of volume (m=d/v)
  12. amount of space an object takes up
  13. Letter C in the Graph
  14. Letter E in the Graph

28 Clues: Letter D in the GraphLetter B in the GraphLetter C in the GraphLetter F in the GraphLetter E in the GraphLetter A in the Graphaverage of a set of numbersamount of matter in an objectgroup that is used a comparisonmass per unit of volume (m=d/v)items unchanged in an experimentamount of space an object takes uptype of graph used to make a comparison...

People of The Scientific Revolution and Enlightenment 2026-01-08

People of The Scientific Revolution and Enlightenment crossword puzzle
Across
  1. Social gatherings where people discussed Enlightenment ideas.
  2. Writer who criticized science and argued women should be educated.Work: Observations upon Experimental Philosophy
  3. Enlightenment thinker who argued people have natural rights.Work: Two Treatises of Governmen
  4. Dividing government into branches to limit power.
  5. Thinker who believed government should reflect the will of the people.Work: The Social Contract
  6. Early chemist who studied gases and helped form modern chemistry.Work: Boyle’s Law
  7. Economist who supported free markets and competition.Work: The Wealth of Nations
  8. Political thinker who argued for separation of powers.Work: The Spirit of the Laws
  9. Philosopher who believed reason was the key to knowledge.Work: Discourse on Method
Down
  1. Writer who argued women should have equal rights and education.Work: A Vindication of the Rights of Woman
  2. Doctor who used human dissection to accurately study anatomy.Work: On the Fabric of the Human Body
  3. Enlightenment thinkers who used reason to improve society.Voltaire
  4. Ancient doctor whose medical ideas shaped European medicine for centuries.Work: Medical writings based on animal anatomy
  5. Scientist who explained how motion and gravity work.Work: Principia Mathematica
  6. Promoted the scientific method based on observation and experiments.Work: Novum Organum
  7. Astronomer who discovered a comet but was denied recognition because she was a woman.Work: Astronomical calendars and comet observations
  8. Mathematician and scientist who studied probability and pressure.Work:Pensées
  9. Philosophe who helped spread knowledge through the Encyclopedia.Work: Encyclopedia
  10. Belief that government should stay out of the economy.
  11. Writer who helped develop the modern novel and used satire.Work: Tom Jones

20 Clues: Dividing government into branches to limit power.Belief that government should stay out of the economy.Social gatherings where people discussed Enlightenment ideas.Enlightenment thinkers who used reason to improve society.VoltaireMathematician and scientist who studied probability and pressure.Work:Pensées...

Business Analyst 25106 payal uttamrao bhone 2025-10-29

Business Analyst 25106 payal uttamrao bhone crossword puzzle
Across
  1. Accuracy and consistency of stored data
  2. Technique that forecasts future outcomes using historical data
  3. Data point that differs significantly from other observations
  4. Suggests optimal decisions based on data analysis
  5. Computational model inspired by the human brain
  6. Scientific process of transforming data into business insights
  7. Metric used to evaluate performance toward business objectives
  8. Process of correcting or removing inaccurate data
  9. Statistical relationship between two or more variables
  10. Explains reasons for past outcomes or events
  11. Measure of profitability calculated as return divided by investment
  12. Decision-making approach based on analysis rather than intuition
  13. Framework for managing data availability and integrity
  14. Summarizes past data to understand what happened
  15. Converting data into a suitable format for analysis
  16. Language used to manage and query relational databases
Down
  1. Graphical representation of data
  2. Statistical method used to estimate relationships among variables
  3. Simulation of human intelligence by machines
  4. Tools and systems for analyzing business information
  5. Protection of data from unauthorized access
  6. On-demand delivery of computing services over the internet
  7. Visual display of key business metrics and analytics
  8. Algorithm that improves automatically through experience
  9. Statistical method for testing assumptions about data
  10. Central repository of integrated data from multiple sources
  11. Process of discovering hidden patterns in large data sets
  12. Extremely large and complex data sets
  13. Model used for classification and prediction
  14. Technique of selecting a subset of data for analysis

30 Clues: Graphical representation of dataExtremely large and complex data setsAccuracy and consistency of stored dataProtection of data from unauthorized accessSimulation of human intelligence by machinesExplains reasons for past outcomes or eventsModel used for classification and predictionComputational model inspired by the human brain...

Business Analyst 25232 Rutuja Mukund Kale 2025-10-29

Business Analyst 25232 Rutuja Mukund Kale crossword puzzle
Across
  1. Accuracy and consistency of stored data
  2. Technique that forecasts future outcomes using historical data
  3. Data point that differs significantly from other observations
  4. Suggests optimal decisions based on data analysis
  5. Computational model inspired by the human brain
  6. Scientific process of transforming data into business insights
  7. Metric used to evaluate performance toward business objectives
  8. Process of correcting or removing inaccurate data
  9. Statistical relationship between two or more variables
  10. Explains reasons for past outcomes or events
  11. Measure of profitability calculated as return divided by investment
  12. Decision-making approach based on analysis rather than intuition
  13. Framework for managing data availability and integrity
  14. Summarizes past data to understand what happened
  15. Converting data into a suitable format for analysis
  16. Language used to manage and query relational databases
Down
  1. Graphical representation of data
  2. Statistical method used to estimate relationships among variables
  3. Simulation of human intelligence by machines
  4. Tools and systems for analyzing business information
  5. Protection of data from unauthorized access
  6. On-demand delivery of computing services over the internet
  7. Visual display of key business metrics and analytics
  8. Algorithm that improves automatically through experience
  9. Statistical method for testing assumptions about data
  10. Central repository of integrated data from multiple sources
  11. Process of discovering hidden patterns in large data sets
  12. Extremely large and complex data sets
  13. Model used for classification and prediction
  14. Technique of selecting a subset of data for analysis

30 Clues: Graphical representation of dataExtremely large and complex data setsAccuracy and consistency of stored dataProtection of data from unauthorized accessSimulation of human intelligence by machinesExplains reasons for past outcomes or eventsModel used for classification and predictionComputational model inspired by the human brain...

Business analytics Roll no 25444 Mamta Panchal 2025-10-29

Business analytics Roll no 25444 Mamta Panchal crossword puzzle
Across
  1. Decision-making approach based on analysis rather than intuition
  2. Data point that differs significantly from other observations
  3. Suggests optimal decisions based on data analysis
  4. Visual display of key business metrics and analytics
  5. Converting data into a suitable format for analysis
  6. Summarizes past data to understand what happened
  7. Model used for classification and prediction
  8. Algorithm that improves automatically through experience
  9. Accuracy and consistency of stored data
  10. Tools and systems for analyzing business information
  11. Scientific process of transforming data into business insights
  12. Metric used to evaluate performance toward business objectives
  13. Central repository of integrated data from multiple sources
  14. Technique that forecasts future outcomes using historical data
Down
  1. Graphical representation of data
  2. Computational model inspired by the human brain
  3. Explains reasons for past outcomes or events
  4. Process of discovering hidden patterns in large data sets
  5. Framework for managing data availability and integrity
  6. Statistical relationship between two or more variables
  7. Process of correcting or removing inaccurate data
  8. Technique of selecting a subset of data for analysis
  9. Statistical method used to estimate relationships among variables
  10. Statistical method for testing assumptions about data
  11. On-demand delivery of computing services over the internet
  12. Simulation of human intelligence by machines
  13. Protection of data from unauthorized access
  14. Measure of profitability calculated as return divided by investment
  15. Extremely large and complex data sets
  16. Language used to manage and query relational databases

30 Clues: Graphical representation of dataExtremely large and complex data setsAccuracy and consistency of stored dataProtection of data from unauthorized accessExplains reasons for past outcomes or eventsModel used for classification and predictionSimulation of human intelligence by machinesComputational model inspired by the human brain...

Business analytics 25341 2025-11-04

Business analytics 25341 crossword puzzle
Across
  1. Accuracy and consistency of stored data
  2. Technique that forecasts future outcomes using historical data
  3. Data point that differs significantly from other observations
  4. Suggests optimal decisions based on data analysis
  5. Computational model inspired by the human brain
  6. Scientific process of transforming data into business insights
  7. Metric used to evaluate performance toward business objectives
  8. Process of correcting or removing inaccurate data
  9. Statistical relationship between two or more variables
  10. Explains reasons for past outcomes or events
  11. Measure of profitability calculated as return divided by investment
  12. Decision-making approach based on analysis rather than intuition
  13. Framework for managing data availability and integrity
  14. Summarizes past data to understand what happened
  15. Converting data into a suitable format for analysis
  16. Language used to manage and query relational databases
Down
  1. Graphical representation of data
  2. Statistical method used to estimate relationships among variables
  3. Simulation of human intelligence by machines
  4. Tools and systems for analyzing business information
  5. Protection of data from unauthorized access
  6. On-demand delivery of computing services over the internet
  7. Visual display of key business metrics and analytics
  8. Algorithm that improves automatically through experience
  9. Statistical method for testing assumptions about data
  10. Central repository of integrated data from multiple sources
  11. Process of discovering hidden patterns in large data sets
  12. Extremely large and complex data sets
  13. Model used for classification and prediction
  14. Technique of selecting a subset of data for analysis

30 Clues: Graphical representation of dataExtremely large and complex data setsAccuracy and consistency of stored dataProtection of data from unauthorized accessSimulation of human intelligence by machinesExplains reasons for past outcomes or eventsModel used for classification and predictionComputational model inspired by the human brain...

Geological Hazards 2022-06-06

Geological Hazards crossword puzzle
Across
  1. The rigid outer part of the earth, consisting of the crust and upper mantle.
  2. What defines layers according to their physical properties.
  3. Point within the earth where an earthquake rupture starts.
  4. Denser, thinner, younger crust.
  5. The ......... discontinuity is the boundary between the crust and the mantle.
  6. Method used to locate the epicenter of an earthquake.
  7. Created the first scientific map of the entire ocean floor.
  8. Lower part of the mantle.
Down
  1. Continuous flow that occurs in a fluid because of differences in density.
  2. Upper part of the mantle.
  3. Thicker and older crust.
  4. The hypothetical landmass that existed when all continents were joined.
  5. What defines layers according to their chemical properties.
  6. Originator of the continental drift hypothesis.
  7. The zone of earthquakes and volcanoes surrounding the Pacific Ocean.
  8. Found evidence of sea-floor spreading.

16 Clues: Thicker and older crust.Upper part of the mantle.Lower part of the mantle.Denser, thinner, younger crust.Found evidence of sea-floor spreading.Originator of the continental drift hypothesis.Method used to locate the epicenter of an earthquake.Point within the earth where an earthquake rupture starts....

Swine Terms Cross word 2023-02-05

Swine Terms Cross word crossword puzzle
Across
  1. a mature female hog that can reproduce
  2. the scientific name for swine
  3. baby swine
  4. identification method used in the swine industry.
  5. Any meat from pigs
  6. the smallest-born piglet at the time of birth
Down
  1. a group of young animals born at a single birth
  2. to give birth to a litter of piglets
  3. any mammal of the family Suidae
  4. a male hog of any age that can reproduce
  5. Docking: removing part of a piglets tail to prevent tail biting
  6. a male hog castrated at an early age
  7. a young female hog that has not farrowed
  8. Teeth: the eight sharp teeth present in baby pigs at birth, four are incisors and four are canine teeth
  9. Removal of the testicles from male animals
  10. a young swine weighing less than 120 lbs

16 Clues: baby swineAny meat from pigsthe scientific name for swineany mammal of the family Suidaeto give birth to a litter of pigletsa male hog castrated at an early agea mature female hog that can reproducea male hog of any age that can reproducea young female hog that has not farroweda young swine weighing less than 120 lbs...

Unit 1 Science vocabulary 2023-09-28

Unit 1 Science vocabulary crossword puzzle
Across
  1. this is the information put in to a table
  2. this method lists 5-7 parts of an experiment.
  3. a letter that stands for a number or symbol
  4. which variable changes?
  5. the group the rest of the lab is compared to.
  6. the X axis is on this line
  7. an educated guess to the outcome of an experiment
  8. this variable goes on the X axis
  9. on a table the dependent variable goes on this
Down
  1. this variable goes on the Y axis
  2. which variable do I change in the experiment?
  3. a line or bar
  4. the Y axis is on this line
  5. this is something that must stay the same in a lab
  6. these two words must be used in the hyposthesis
  7. when you add data together and divide by how many.
  8. this scale is used to measure temperature
  9. on a table the independent variable goes on this side.

18 Clues: a line or barwhich variable changes?the Y axis is on this linethe X axis is on this linethis variable goes on the Y axisthis variable goes on the X axisthis is the information put in to a tablethis scale is used to measure temperaturea letter that stands for a number or symbolthis method lists 5-7 parts of an experiment....

PA-Environmental Health-Conventional Med 2023-10-30

PA-Environmental Health-Conventional Med crossword puzzle
Across
  1. A concentration of _________ gases causes global warming.
  2. Measures concentration of five air pollutants of concern to health.
  3. A component of health-related fitness.
  4. The biggest component of household trash in the US.
  5. The amount of force a muscle can produce in a singular maximum effort.
  6. _____ health grew out of efforts to control communicable diseases.
Down
  1. An example of renewable energy.
  2. The body’s ability to respond or adapt to the demands and stress of physical effort.
  3. A common mind-body intervention.
  4. One way to measure intensity of cardiorespiratory exercise.
  5. A good reason to visit the ER.
  6. A type of medicine based on scientific method.
  7. A subsidized government health program for people with low income.
  8. The life force in Chinese medicine.
  9. Based on the notion that "like kills like".
  10. AKA static exercise.

16 Clues: AKA static exercise.A good reason to visit the ER.An example of renewable energy.A common mind-body intervention.The life force in Chinese medicine.A component of health-related fitness.Based on the notion that "like kills like".A type of medicine based on scientific method.The biggest component of household trash in the US....

L7 Vocabulary 2025-05-22

L7 Vocabulary crossword puzzle
Across
  1. Trust is the ____ of any strong relationship.
  2. We binge-watched an entire ____ over the weekend.
  3. The scientist developed a new ____ for testing the theory.
  4. ____ studies show the benefits of regular exercise.
  5. He presented his research at an international ____ on climate change.
  6. The speaker captivated the ____ with his powerful message.
  7. Let’s ____ your ideas at the next team meeting.
  8. The painting is ____ millions due to its historical significance.
  9. Her ____ with space began when she was a child.
Down
  1. I prefer reading historical ____ to fantasy novels.
  2. The store offers a wide ____ of organic products.
  3. She traveled the world to ____ answers about her family's past.
  4. She has a ____ understanding of various scientific disciplines.
  5. He has an impressive ____ of rare stamps.
  6. ____ has transformed the way we communicate and learn.
  7. The company plans to ____ a new app next month.

16 Clues: He has an impressive ____ of rare stamps.Trust is the ____ of any strong relationship.Let’s ____ your ideas at the next team meeting.The company plans to ____ a new app next month.Her ____ with space began when she was a child.We binge-watched an entire ____ over the weekend.The store offers a wide ____ of organic products....

Unit 1 Key Terms 2015-10-27

Unit 1 Key Terms crossword puzzle
Across
  1. A way to evaluate and create assessments
  2. The systematic investigation into and study of materials and sources
  3. Notebook A legal document that engineers use to prove the validity of their work as well as designs.
  4. A new method, idea, product, etc.
  5. Able to be shown to be right or reasonable; defensible:
  6. A professional who applies scientific knowledge to solve problems.
  7. A first, typical or preliminary model of something
  8. Being able to identify problems
  9. Possessing having a sound basis in logic or fact
  10. To plan and make something for a specific purpose
  11. A written document for a design
  12. To make a judgement about something
  13. A person who pays and organization for services
  14. An idea or opinion about something
Down
  1. The ability to think and create new ideas
  2. A part of design brief that challenges the designer and describes what a design solution should do.
  3. An article or substance that is manufactured or refined for sale
  4. Something that restricts something else from it’s full potential
  5. The act of generating many ideas that are related to each otherp
  6. Something, typically a process or device, that has been invented:
  7. A method for creating a great quantity of ideas
  8. A set of steps that engineers follow to get the solution to a problem. It is very long and difficult.
  9. Relating to or iteration, especially of a math or computer processes
  10. A person who plans the form, look, or workings of something

24 Clues: Being able to identify problemsA written document for a designA new method, idea, product, etc.An idea or opinion about somethingTo make a judgement about somethingA way to evaluate and create assessmentsThe ability to think and create new ideasA method for creating a great quantity of ideasA person who pays and organization for services...

Year 10 Psychology 2021-06-10

Year 10 Psychology crossword puzzle
Across
  1. expressions, used to communicate without words
  2. explains a combination of how and what you need to complete your study
  3. observable patterns in humans and animals
  4. defining human behaviour under 7 categories
  5. goal, to understand, prescribe and predict and control human behaviour and mental processes.
  6. this is the result as it depends on something else
  7. someone with slightly more empathy but have experienced trauma
  8. refers to the likelihood of a person committing a serious act of violence with little provocation
  9. process, unobservable and often hard to assess
  10. the systematic study of the brain and mental processes including perception, cognition and emotion
  11. can prescribe medication but has to study for longer
  12. method, the seven steps used in psychological research
  13. a small group taken from your wider population
Down
  1. this is manipulated or changed
  2. expressions, tell us the truth before you attempt to lie
  3. explaining the aim and results of your study to participants after its over
  4. when people don't tell the truth
  5. any other variable that could impact the study
  6. a code of practice used by all Psychologists
  7. the entire group you're aiming to generalise your research too
  8. determining what you're going to test in a study
  9. someone who lacks empathy and is generally genetic.
  10. collected, analysed and interpreted in a study
  11. someone who is obsessed with themselves and has little regard for punishment
  12. a prediction about what is going to happen in the experiment

25 Clues: this is manipulated or changedwhen people don't tell the truthobservable patterns in humans and animalsdefining human behaviour under 7 categoriesa code of practice used by all Psychologistsexpressions, used to communicate without wordsany other variable that could impact the studycollected, analysed and interpreted in a study...

Business Analytics Roll no 25467 Anushka Yadav 2025-10-27

Business Analytics Roll no 25467 Anushka Yadav crossword puzzle
Across
  1. Predictive model using a tree-like structure of decisions
  2. Visual display of key performance indicators and metrics
  3. Explains reasons for past outcomes or events
  4. Summarizes past data to understand what happened
  5. Analyzing data points collected over time
  6. Central repository of integrated data from multiple sources
  7. Delivery of computing services via the internet
  8. Moral principles governing responsible data usage
  9. Assigning data into predefined categories
  10. Process of discovering hidden patterns in large data sets
  11. Statistical method to find relationship between variables
  12. Technique that forecasts future outcomes using historical data
Down
  1. Extremely large and complex data sets analyzed computationally
  2. Suggests optimal decisions based on data analysis
  3. Simulation of human intelligence by machines
  4. Method used to test assumptions about a population
  5. Process of correcting or removing inaccurate data
  6. Subset of a data warehouse focused on a specific area
  7. Technologies and processes for analyzing business information
  8. Scientific process of transforming data into business insights
  9. Data organized in rows and columns format
  10. Representation of data through charts graphs and dashboards
  11. Algorithm that improves automatically through experience
  12. Metric used to evaluate success of objectives
  13. Computational model inspired by the human brain
  14. Framework for managing data policies and responsibilities
  15. Measure showing how two variables move together
  16. Process of extracting transforming and loading data into storage
  17. Grouping of data objects with similar characteristics
  18. Data without predefined structure or format

30 Clues: Data organized in rows and columns formatAnalyzing data points collected over timeAssigning data into predefined categoriesData without predefined structure or formatSimulation of human intelligence by machinesExplains reasons for past outcomes or eventsMetric used to evaluate success of objectivesComputational model inspired by the human brain...

Business analytics 25341 2025-11-04

Business analytics 25341 crossword puzzle
Across
  1. Accuracy and consistency of stored data
  2. Technique that forecasts future outcomes using historical data
  3. Data point that differs significantly from other observations
  4. Suggests optimal decisions based on data analysis
  5. Computational model inspired by the human brain
  6. Scientific process of transforming data into business insights
  7. Metric used to evaluate performance toward business objectives
  8. Process of correcting or removing inaccurate data
  9. Statistical relationship between two or more variables
  10. Explains reasons for past outcomes or events
  11. Measure of profitability calculated as return divided by investment
  12. Decision-making approach based on analysis rather than intuition
  13. Framework for managing data availability and integrity
  14. Summarizes past data to understand what happened
  15. Converting data into a suitable format for analysis
  16. Language used to manage and query relational databases
Down
  1. Graphical representation of data
  2. Statistical method used to estimate relationships among variables
  3. Simulation of human intelligence by machines
  4. Tools and systems for analyzing business information
  5. Protection of data from unauthorized access
  6. On-demand delivery of computing services over the internet
  7. Visual display of key business metrics and analytics
  8. Algorithm that improves automatically through experience
  9. Statistical method for testing assumptions about data
  10. Central repository of integrated data from multiple sources
  11. Process of discovering hidden patterns in large data sets
  12. Extremely large and complex data sets
  13. Model used for classification and prediction
  14. Technique of selecting a subset of data for analysis

30 Clues: Graphical representation of dataExtremely large and complex data setsAccuracy and consistency of stored dataProtection of data from unauthorized accessSimulation of human intelligence by machinesExplains reasons for past outcomes or eventsModel used for classification and predictionComputational model inspired by the human brain...

Chapter 1 Terms 2023-01-15

Chapter 1 Terms crossword puzzle
Across
  1. A series of interconnected ideas or concepts that explains what is observed in research and that make predictions about the future.
  2. A sample of participants that fairly represents the population because each member of the population has an equal chance of being included.
  3. A variable in an experiment that the experimenter manipulates to examine its impact on the dependent variable.
  4. The beliefs, values, rules, and customs that exist within a group of people who share a common language and environment, which are transmitted through learning from one generation to the next.
  5. A a research method that examines how variables are naturally related in the real world without altering the variables and without revealing whether one factor causes changes in another.
Down
  1. A specific, testable prediction of what should be observed in a study if a theory is correct.
  2. A group in an experiment that receives either no treatment or a baseline manipulation that is expected to have little or no impact; this group serves as a comparison to the experimental group.
  3. A method that is a continuous five-step process that allows systematic observation and measurement of phenomena to reach one or more scientific goals.
  4. A variable in an experiment that is measured to determine how it was affected by the manipulation of the independent variable.
  5. Accepted standards of right and wrong that guide people's behavior.

10 Clues: Accepted standards of right and wrong that guide people's behavior.A specific, testable prediction of what should be observed in a study if a theory is correct.A variable in an experiment that the experimenter manipulates to examine its impact on the dependent variable....

Girling Angling Society - Methods and Feed 2020-04-19

Girling Angling Society - Methods and Feed crossword puzzle
Across
  1. Allows you to play out line when the fish goes on a run (8)
  2. Used to get bait down in the flow (4,7)
  3. Busy in out feed feed method for Carp up in the water (6,7)
  4. Introducing lots of Groundbait (7,2,2)
  5. Canal bait and method for Roach (5,5)
  6. Small bait dampened and introduced early on in the session (5,7)
  7. Ideal Roach feed (4,3,7)
  8. Fish taking before it gets to the bottom (2,3,4)
  9. Further out Pole method fishing off the bottom (4,4,2)
  10. Used to cloud up the swim (6,10)
  11. Bolo shotting method (8)
  12. Present in most Carp Groundbaits (8)
  13. Used when they are having it on the Hempseed (5)
  14. A little deeper than dead depth (4,5)
  15. A method to attach the bait without covering the Hook (4,3)
  16. Bait ball chucked long (6,6)
  17. Canal bait also used for Winter Carp (7)
  18. Throwing bait in by hand (12)
  19. Two elasticated sections (3,3)
  20. Busy short pole method catching shallow on River or Pool (7,3,4)
  21. Bait used trotting for Chub (5,5)
  22. Method to reduce the stretch to get the fish off the bottom (5,4)
  23. Twirling your rig to hit the surface simulating loose feeding (8)
  24. Lavae of the Bluebottle (7)
  25. Cage used to introduce live feed on River and Pools (6,6)
  26. Common Worm used in Fishing (10)
  27. Considered to be the ideal Stick Float Material (6)
  28. Method for Carp down the edge (6,7)
  29. Catching off the bottom with Rod or Pole (2,2,3,5)
  30. General Term for indicators used with the Pole (4,6)
  31. Getting Bites in the upper layers (8,7)
  32. Method used waiting for Carp to hook themselves (4,3)
  33. Float style used to combat flow on the river (10,5,5)
  34. Ideal place to start on a Canal (3,5)
  35. Simple method to attach a Hook to the mainline (4,2,4)
  36. Ideal canal float design (4,3,4,4)
  37. Stiffer equipment for big bottom feeders (6,3)
  38. Holds the Rig steady, can be together or Spread (4,4)
  39. This method of Feed works on Canals and for Winter Carp (7,4,3,6)
Down
  1. Float design for seeing bites on the drop (4,4)
  2. These are not Carp (6,4)
  3. Component used to attach the rig to the Pole (6,9)
  4. Type of Carp groundbait (7,6)
  5. Method to ensure soft uniform groundbait (8)
  6. Chuck and feed bottom method (4)
  7. Used when fishing in the wind or over a shallow margin (4,4,2,4)
  8. The Maggot Chrysalis (6)
  9. Small shot used on Pole Rigs (5)
  10. Tactic to encourage a bite on the Pole (4,3,4)
  11. The material used for the bush in the top of the Top Two (4)
  12. Feed used with the Bread Punch (10)
  13. Non manufactured fish food (7,5)
  14. River trotting method (5,5)
  15. Down the middle of the River method (3,7)
  16. Early Bream Indicator used on the Broads (5,3)
  17. Difficult Bait to obtain but Chub love it (4,4)
  18. Close in pole method (5,4)
  19. Used to get the hook out (9)
  20. Balanced bait for Carp on the bottom (7)
  21. A method for beating the wind that’s adversely affecting your rig (12)
  22. Natural bait for Roach, simmer before use (4,4)
  23. Introduce these in the groundbait for Bream (7)
  24. Bream float indication (4,6)
  25. Common leger rod indicator (6,3)
  26. Method of feeding over the top (8)
  27. Trying to get a bite from a basking Carp (7)
  28. The deepest part of the Canal (4,3,5)
  29. Method of preparing the Top Two (12)
  30. River far bank method spraying maggots using a float attached bottom only (3,3,3)
  31. Feeding from the Pole while fishing (4,3)
  32. Holds the line and spool without a Bailarm, mainly on rivers (6,4,4)
  33. Long rod big weight down method for deep river swims (4)
  34. Method using a rubber ring to keep the bait alongside the Hook (6,4)
  35. Further out Pole method fishing the bottom (4,4,4)
  36. Yellow & comes in a Can (9)
  37. Feeding using the Pole with a dedicated top two (7,2,2)
  38. Great Barbel and Carp Bait that comes in a can (8,4)
  39. Stopping the progress of the float (7,4)

78 Clues: These are not Carp (6,4)The Maggot Chrysalis (6)Ideal Roach feed (4,3,7)Bolo shotting method (8)Close in pole method (5,4)River trotting method (5,5)Lavae of the Bluebottle (7)Yellow & comes in a Can (9)Bait ball chucked long (6,6)Used to get the hook out (9)Bream float indication (4,6)Type of Carp groundbait (7,6)Throwing bait in by hand (12)...

Renaissance & Reformation 2023-02-13

Renaissance & Reformation crossword puzzle
Across
  1. the wife of (5 across)
  2. the "father" of observational astronomy and the scientific method
  3. the king who demanded he should have the final say in the Church of England
  4. the pope who refused to divorce (5 across) from (3 across)
  5. the leader of the church
Down
  1. creator of the mona lisa
  2. creator of the statue of david
  3. the time between the 1300's and the 1700's in which people wanted to revive the "old ways"
  4. the time before the renaissance

9 Clues: the wife of (5 across)creator of the mona lisathe leader of the churchcreator of the statue of davidthe time before the renaissancethe pope who refused to divorce (5 across) from (3 across)the "father" of observational astronomy and the scientific methodthe king who demanded he should have the final say in the Church of England...

Introduction to Biology & Biochemistry 2022-05-26

Introduction to Biology & Biochemistry crossword puzzle
Across
  1. The smallest unit of life
  2. amino acids are the building blocks of this biomolecule
  3. The maintenance of an organism's internal conditions
  4. sugars are this type of biomolecule
  5. type of bond that involves the giving/taking of electrons between two atoms
Down
  1. Biology is the study of
  2. the term to describe an atom with an unequal distribution of charge
  3. the second step of the scientific method that involves the creation of an "if, then" statement
  4. type of bond that involves the sharing of electrongs

9 Clues: Biology is the study ofThe smallest unit of lifesugars are this type of biomoleculetype of bond that involves the sharing of electrongsThe maintenance of an organism's internal conditionsamino acids are the building blocks of this biomoleculethe term to describe an atom with an unequal distribution of charge...

Crack the Code: Research Edition 2025-09-10

Crack the Code: Research Edition crossword puzzle
Across
  1. - involves people who self-select into the interview
  2. - a portion or part of a population
  3. - method or way of doing something in any context
  4. - asking a participant to suggest someone else who might be willing or appropriate for the study
  5. - deliberate sampling by strata to ensure key group inclusion, regardless of population proportion
Down
  1. - process of selecting the participants of the study
  2. - choosing participants at the convenience of the researcher
  3. - handpicking subjects, usually to suit very specific intentions
  4. - not a scientific way of selecting participants

9 Clues: - a portion or part of a population- not a scientific way of selecting participants- method or way of doing something in any context- process of selecting the participants of the study- involves people who self-select into the interview- choosing participants at the convenience of the researcher...

Scientific Practices: Explanations & Models 2025-09-17

Scientific Practices: Explanations & Models crossword puzzle
Across
  1. information gained by observation or experimentation that can be verified or tested.
  2. an answer or method that addresses a problem or question in an experiment.
  3. being free from contradictions; all parts of an argument or explanation align without conflict.
Down
  1. using evidence and reasoning to support or refute a scientific claim or hypothesis.
  2. a detailed description that makes scientific evidence clear and understandable.

5 Clues: an answer or method that addresses a problem or question in an experiment.a detailed description that makes scientific evidence clear and understandable.using evidence and reasoning to support or refute a scientific claim or hypothesis.information gained by observation or experimentation that can be verified or tested....