1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Butoxors [25]
3 years ago
13

For each of these statements find a domain for which the statement is true and a domain for which the statement is false. a) Eve

ryone speaks Hindi. b) There is someone older than 21 years. c) Every two people have the same first name. d) Someone knows more than two other people.
Computers and Technology
1 answer:
Anastaziya [24]3 years ago
3 0

Answer:

a) Everyone speaks Hindi

True Domain: Everyone in Uttar Pradesh (This makes the statement true as everyone cannot speak hindi, but everyone in Uttar Pradesh, an Indian community of indian people can speak Hindi

False Domain: Everyone in the New Jersey (This makes the statement false, as not everyone in New Jersey, which is in the United States can speak Hindi. Probably Indians in New Jersey can speak Hindi, but not everyone

b) There is someone older than 21 years

True Domain: All students in college (This makes it true because there is always someone older than 21 years from all the students in college since many students are over 21 years of age)

False Domain: All the kids in Kindergarten (This statement is false because children in kindergarten are usually between the ages of 2 and say 7 or 8. Hence there is no way to find someone older than 21 years in this domain)

c) Every two people have the same first name

True Domain: Michael Scoffield, Michael Ballack, Michael Owen, Michael Oliver (This is true for this domain since everyone in the domain has the same first name)

False Domain: All the teenagers in the world (The statement is false for this domain because we can find so many first names from this domain)

d) Someone knows more than two other people

True Domain: All the people in the world (From all the people in the world, you can always find someone who knows more than two other people in the world)

False Domain: Everyone living alone in an island that is uninhabited (An uninhabited island means that someone lives alone there and hence he or she cannot know more than two other people since he is alone)

Explanation:

a) Everyone speaks Hindi

True Domain: Everyone in Uttar Pradesh (This makes the statement true as everyone cannot speak hindi, but everyone in Uttar Pradesh, an Indian community of indian people can speak Hindi

False Domain: Everyone in the New Jersey (This makes the statement false, as not everyone in New Jersey, which is in the United States can speak Hindi. Probably Indians in New Jersey can speak Hindi, but not everyone

b) There is someone older than 21 years

True Domain: All students in college (This makes it true because there is always someone older than 21 years from all the students in college since many students are over 21 years of age)

False Domain: All the kids in Kindergarten (This statement is false because children in kindergarten are usually between the ages of 2 and say 7 or 8. Hence there is no way to find someone older than 21 years in this domain)

c) Every two people have the same first name

True Domain: Michael Scoffield, Michael Ballack, Michael Owen, Michael Oliver (This is true for this domain since everyone in the domain has the same first name)

False Domain: All the teenagers in the world (The statement is false for this domain because we can find so many first names from this domain)

d) Someone knows more than two other people

True Domain: All the people in the world (From all the people in the world, you can always find someone who knows more than two other people in the world)

False Domain: Everyone living alone in an island that is uninhabited (An uninhabited island means that someone lives alone there and hence he or she cannot know more than two other people since he is alone)

You might be interested in
Design the logic for a program that allows a user to enter 20 numbers, then displays each number and its difference from the num
Svetach [21]

Answer:

Logic for a program

Explanation:

//Here ind = index

//declare the number

number ind

number sum

number avg

number SIZE = 20

number num[SIZE] = {0,0,0,0,0,0,0,0,0,0 ,0,0,0,0,0,0,0,0,0,0}

getReady()

while ind < SIZE

getNumbers()

stop

getReady()

ind = 0

sum = 0

return

getNumbers()

cout<< “Enter a number for position ”, ind

input numbers[ind]

sum = sum + numbers[ind]

ind = ind + 1

return ;

finishUp()

avg = sum/SIZE

ind = 0

while ind < SIZE

output numbers[ind], avg – numbers[index]

ind = ind + 1

return

Modify the program in 2a

number index

number sum

number avg

number actualSize

number SIZE = 10

number number[SIZE] = 0

7 0
3 years ago
What is Patch tool ???<br><br>​
AfilCa [17]

Answer:

<u><em>DEAR HERE IS YOUR ANSWER:</em></u>

<u><em>T</em></u>he Patch Tool is part of the healing brush set of tools. These are the go-to tools for retouching and repairing your images. The Patch Tool is primarily used to repair larger areas of an image, or get rid of any distractions or blemishes.

  • The patch tool was introduced into Photoshop at the same time as the Healing Brush
  • You don’t have to use the Patch tool to define a selection. You can use any selection tool and then select the Patch tool.  <em><u> </u></em>

<em><u>HOW TO USE PATCH TOOL IN PHOTOSHOP:</u></em>

  1. Click and hold the Healing Brush tool to select the Patch tool; on the Options bar, select the Destination radio button
  2. With the Patch tool still selected, drag to create a marquee around the source you want to use as the patch
  3. After you create the marquee, drag the selected source area to the destination to be repaired.

<em><u>I HOPE IT WILL WORK DEAR THANKS FOR ASKING  QUESTION</u></em>

Explanation:

4 0
2 years ago
Read 2 more answers
Raw materials have two basic types what are the 2?
marissa [1.9K]
The answer Direct and inderect
8 0
2 years ago
Read 2 more answers
The algorithm for solving the problem of average of five (5) numbers​
PilotLPTM [1.2K]

Answer:

Explanation:

Denote the five numbers as a, b, c, d and e.

The average is:

(a + b + c + d +e) ÷ 5.

Easily:

Learn how to do input and output operations in your programming language of choice.

Learn what average is (see Arithmetic mean - Wikipedia)

Learn how to code arithmetic operations in your PL of choice.

Put all that together and code the program.

Oh, did you expect the code snippet? Sorry, I don’t do peoples’ homework for them on principle. Homework is for you to learn something. If you can’t be bothered, accept that you’ll fail your class. If you want to pass, LEARN.

3 0
2 years ago
One foot equals 12 inches. Write a function named feet_to_inches that accepts a number of feet as an argument and returns the nu
fenix001 [56]

Answer:

def feet_to_inches( feet ):

      inches = feet * 12

      print(inches, "inches")

feet_to_inches(10)

Explanation:

The code is written in python.  The unit for conversion base on your question is that 1 ft = 12 inches. Therefore,

def feet_to_inches( feet ):

This code we define a function and pass the argument as feet which is the length in ft that is required when we call the function.

inches = feet * 12

Here the length in ft is been converted to inches by multiplying by 12.

print(inches, "inches")

Here we print the value in inches .

feet_to_inches(10)

Here we call the function and pass the argument in feet to be converted  

       

8 0
3 years ago
Other questions:
  • Which of the following sentences uses the correct verb tense?
    8·2 answers
  • Define networks, marketplaces, and platforms and discuss their differences.
    15·1 answer
  • How would you compare and contrast the impact of the printing press with the impact of the internet?
    15·1 answer
  • Your organization uses a type of cryptography that provides good security but uses smaller key sizes and utilizes logarithms tha
    9·1 answer
  • Write a program that takes a decimal number from the user and then prints the integer part and the decimal part separately. For
    13·1 answer
  • What are the origins of the parking barrier?
    12·1 answer
  • Hi there! I just started my beginner computer science class and I was wondering if anyone wants to help with an assignment i'm h
    15·1 answer
  • Microsoft word 2010 lab 6-1
    7·2 answers
  • What is the difference between a crosstab query and a subquery?
    11·2 answers
  • What does the following process describe?
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!