Scientist Galileo Galilei used the
telescope
to observe the stars and planets. This same tool has allowed modern
astronomers
to see objects that are billions of light years from Earth. This tool also detects things such as

Answers

Answer 1

Scientist Galileo Galilei used the telescope to observe the stars and planets.

What was the story of Scientist Galileo Galilei?

Galileo was a natural philosopher, astronomer, and mathematician who made major contributions to the creation of the scientific method and the disciplines of motion, astronomy, and strength of materials.

He also made ground-breaking telescopic discoveries, such as the discovery of Jupiter's four biggest moons.

Hence the correct option is A

Learn more about Scientist Galileo Galilei:

https://brainly.com/question/12024475

#SPJ1


Related Questions

Select 3 true statements about Python class.

If a class inherits from multiple classes, the order of inheritance does not matter.

(In Python 3 or higher) If no class is inherited, it implicitly inherits the object class.

A class attribute exists as a unique object regardless of how many instances of the class are.

A class attribute can be used without an instance of that class.

Properties whose names start with _ (e.g. _name) are private properties and cannot be accessed outside of the corresponding class.

Answers

The true statement is that (In Python 3 or higher) If no class is inherited, it implicitly inherits the object class.

A class attribute can be used without an instance of that class.A class attribute exists as a unique object regardless of how many instances of the class are.

Do all classes in Python inherit from object?

All classes in Python are known to have objects of the type class, and this is said to be a Metaclass.

Note that Each class in Python, by setting,  often take in from the object base class.

Learn more about Python  from

https://brainly.com/question/26497128

#SPJ1

Continuing with the program in problem #4: Box #10 has identical attributes to Box #07. Create box #10. Then, write two statements that will print out: one will compare the contents of Box #07 and Box #10, and the other will compare the contents of Box #21 and Box #23.

Answers

The program illustrates the use of conditional statements i.e. the if keyword

The two statements

The statements that compare the boxes written in Python are as follows:

#Statement 1

if box07 > box10:

  print("Box 07")

else

  print("Box 10")

#Statement 2

if box21 > box23:

  print("Box 21")

else

  print("Box 23")

Read more about python programs at:

https://brainly.com/question/13246781

#SPJ1


Which option is designed by software engineers?
A. Programming languages that help computers operate
B. Computer components such as monitors and mice
C. Operating systems that run computers
D. Networks that connect computers

Answers

Answer:

Software engineers make programming languages that help computer operation

Explanation:

Select the four tactics that cyber criminals use for stealing information from the list below.
baiting
click-jacking
Ospamming
defamation
cross-site scripting
Opharming
Mark this and return

Answers

Baiting clickjacking pharming spamming

Using for loop write an alogarithm flow program to find simple interest fo three steps? ​

Answers

Answer:

The difference between a shallow and a deep depth of field is how much of your photo is in focus.

Explanation:

What is the accurate description

Answers

Answer:

an accurate description exact stresses a very strict agreement with fact, standard, or truth. Exact measurements precise adds to exact an emphasis on sharpness of definition or delimitation.

PLEASE MARK ME AS BRAINLIEST ANSWER THANKS

10. When does teasing become cyberbullying?
A. When the words, images, or videos shift from humorous to hurtful.
B. When the comment gets over 100 likes.
C. When the victim finally gives away their personal information.
D. When the victim experiences physical harm.

Answers

Answer:

A) When the words, images or videos shift from humorous to hurtful.

Unlike kids who are being bullied, kids who are being teased can influence whether it continues or ends. If they get upset, the teaser usually stops.

The Linux tail command prints the last maximum n lines of a file. When writing a function that performs this function, choose the correct statements that can go in the ?????.



lines[-n]

lines[-n:]

lines[len(lines)-n:]

lines[-1:-n-1:-1]

lines.pop(n)

Answers

The Linux tail command prints the last maximum n lines of a file. When writing a function that performs this function, in this case is lines[-n:].

Writing code in Linux:

def tail(filename, n=10) :

 with open(filename, "r") as

     lines = f.readlines()

  for line in lines[-n:] :

    print (lines)

See more about linux at brainly.com/question/15122141

#SPJ1

What is necessary to execute a Python program?

Answers

A Python interpreter and typically a collection of modules must be installed on the computer system in order for Python programs to work.

What is a python language?

Python is a general-purpose, high-level, interpreted programming language. Code readability is prioritized in its design philosophy, which makes heavy use of indentation.

Python is a language for writing source code, not binary code. You can (usually must) build obj files for C or C++ and link them into an executable after that. The C/C++ executable is a sourceless binary executable file.

The Python compiler/interpreter, on the other hand, executes Python source code directly. Naturally, the procedure itself is more intricate behind the scenes. However, the Python compiler/interpreter really runs the source from the user's perspective.

Learn more about the Python program:

https://brainly.com/question/15385804

#SPJ1

Choose 2 statements that correctly describe the time complexity of data structures with N data.

The average time complexity of the data lookup in a hash table is O(N).

The average time complexity of the data lookup in a complete binary tree is O(logN).

The average time complexity of deleting an item from an array is O(1).

The average time complexity of accessing the kth element in a linked list is O(1).

The average time complexity of inserting data into a heap is O(logN)

Answers

The  statements that correctly describe the time complexity of data structures with N data are:

The average time complexity of the data lookup in a hash table is O(N).The average time complexity of inserting data into a heap is O(logN)

What is time complexity of data structures?

Time Complexity of an algorithm is known to be the depiction of the amount of time needed by the algorithm to carry out to completion.

Note that The  statements that correctly describe the time complexity of data structures with N data are:

The average time complexity of the data lookup in a hash table is O(N).The average time complexity of inserting data into a heap is O(logN)

Learn more about data from

https://brainly.com/question/17350816

#SPJ1

A trucking company is expanding its business and recently added 50 new trucks to its fleet delivering to numerous locations. The company is facing some challenges managing the new additions. Which of the company's problems could be solved more easily using quantum computing

Answers

The company's problems that could be solved more easily using quantum computing is commute optimization task.

What is optimization task?

The level or rate of hardness of of the commute optimization task is known to be in the areas

Components processing waiting commuting time

In the case above, Quantum-assistance is one that can helps firms to be able to handle the time issues and to find solutions for the problem above.

Learn more about quantum computing from

https://brainly.com/question/25513082

#SPJ1

The Linux tail command prints the last maximum n lines of a file. When writing a function that performs this function, choose the correct statements that can go in the ?????.



lines[-n]

lines[-n:]

lines[len(lines)-n:]

lines[-1:-n-1:-1]

lines.pop(n)

Answers

In writing a function that performs this function, the right statements that can go in the is lines[-n:] .

What tail command is seen in Linux?

Linux tail command is known to be a form of command that is used to show the last ten lines of one or a lot of files.

Note that Its key aim is to read the error message and as such In writing a function that performs this function, the right statements that can go in the is lines[-n:] .

Learn more about Linux  command  from

https://brainly.com/question/24822807

#SPJ1

how could environmental and energy problem Kenya faces as far computer installations are concerned be avoided​

Answers

The environmental and energy problem Kenya faces as far computer installations are concerned can be avoided​ by

Knowing and finding out the key aspect of ICT strength. Create an holistic judgements in the assessment of ICT capability. Promote the use of solar power.

How can we overcome ICT challenges?

There are a lot of Energy Challenges in terms of ICT  in Kenyan and it is good the government and the people work towards energy in terms of sustainable ICT.

Therefore, The environmental and energy problem Kenya faces as far computer installations are concerned can be avoided​ by

Knowing and finding out the key aspect of ICT strength. Create an holistic judgements in the assessment of ICT capability. Promote the use of solar power.

Learn more about computer installations from

https://brainly.com/question/11430725

#SPJ1

would it be feasible to combine fixed length field and variable length field format in single disk

Answers

it is very easy or possible to combine both fixed length and variable length on a single disk.

What is the above case about?

Fixed length field is known to be a a field that is said to have the same number of characters and it is said to be fixed length field.

Note that Variable-length records  is one that has the length of all record as it varies.  it is very easy or possible to combine both fixed length and variable length on a single disk.

Learn more about fixed length field from

https://brainly.com/question/13014336

#SPJ1

difference between primary and secondary storage​

Answers

Answer:

Primary storage also called as main memory. RAM is an example of primary memory.

Secondary storage are popular as we use them for permanent storage.

Explanation:

Primary storage are temporary such RAM which are required for your program to execute. Without these storage, we can't use the computer for any operations. These memory keeps intermediate data and garbage out when the data no longer required.

On the other hand, when we need to store the data for future reference such as files, photos and videos we use secondary storage devices such as usb drive, hard disk etc.

In Python write a program that reads a list of integers into a list as long as the integers are greater than zero, then outputs the values of the list.
Ex: If the input is:

10
5
3
21
2
-6
the output is:

[10, 5, 3, 21, 2]

Code hints: while user_input >0: #This is the number that is greater than 0 from the list that is entered.

print(user_numbers) #Prints out the numbers greater than zero that are inputted at the top part.

Answers

See the comments for explanations of what each line does.

Code

integers = []  # Create an empty list to store the values

user_input = int(input())  # Get the first input

while user_input > 0:  # Loop as specified

   integers.append(user_input)  # Add the value to the list

   user_input = int(input())  # Get another input

print(integers)  # Print the full list

Five roles of propaganda in communication

Answers

These are five roles of propaganda in communication:

Propaganda is different from advertising although they share some techniques. Advertising tries to persuade to sell and propaganda persuades for many reasons.Propaganda is common in politics because it is the way to show the citizens public policies or persuade people to get votes.Propaganda usually has an agenda and from that specific agenda is the communication based of.Propaganda in communication can be used to manipulate messages in the media.Propaganda in communication can be used strictly informative.

What does propaganda means?

Propaganda is the distribution of an idea, piece of information, practice, statements with an agenda or planning behind.

It differs from advertising, which persuades to sell.

Check more information about propaganda here https://brainly.com/question/12686211

#SPJ1

what are the three stages of the system development life cycle?​

Answers

Answer:

Explanation:

design ,develop ,testing

c. Explain the mechanical era of computer.​

Answers

Answer:

why should I say mother and if you r urmia l love you


Which of the following is not a reason to choose a community college?

Answers

They do not make as big of a impression than a famous university when applying for jobs.

This was the template given for my assignment: class Login:
def __init__(self):
self.login_name = 'none'
self.login_password = 'none'

# TODO: Define class method - check_credentials(self, user_login, user_passwd)


if __name__ == "__main__":

login = Login()
timeout = 5 #variable used for login attempts
login = input()
password = input()

# TODO: Create boolean variable that receives return value from
# calling check_credentials(login, password)

# TODO: Create a loop that will continue until login attempts run out or a successful login is returned

# TODO: Create a loop that only allows 5 failed login attempts
I have tried a trillion different ways to get this solved and I cannot figure out what I am doing wrong

Answers

Using the code in python it is possible to use the code given in the statement it is possible to make the change so that it fits with all topics.

Writing code in python:

class Login:

def __init__(self):

 self.login_name = 'none'

 self.login_password = 'none'

def check_credentials(self, user_login, user_passwd):

 simlogin = 'Test'

 simpass = 'test1234'

 if user_login == simlogin and user_passwd == simpass:

  print("Successful login!")

  return True

 elif user_login == simlogin and user_passwd != simpass:

  print("Login name is correct, incorrect password!")

  return False

 elif user_login != simlogin and user_passwd == simpass:

  print("Login name incorrect, password accepted!")

  return False

 elif user_login != simlogin and user_passwd != simpass:

  print("Unsuccessful login attempt!")

  return False

if __name__ == "__main__":

ob = Login()

timeout = 5

login = input()

password = input()

valid_login = ob.check_credentials(login, password)

while True:

 if valid_login:

  break

 else:

  timeout = timeout - 1

  if timeout == 0:

   print("5 failed login attempts. No more login attempts.")

   break

  login = input()

  password = input()

  valid_login = ob.check_credentials(login, password)

See more python at brainly.com/question/18502436

#SPJ1

what is the use of word processing software?​

Answers

Answer:

A typical word processor enables the user to create documents, edit them using the keyboard and mouse, store them for later retrieval, and print them to a printer. Common word processing applications include Microsoft Notepad, Microsoft Word, and Corel WordPerfect.

Write an algorithm that describes the second part of the process of making change (counting out the coins and bills).

Answers

An Algorithm that describes the second part of the process can be written as listed below :

Algorithm describing the second part of the process of making change (counting out the coins and bills )

First step : Initialize the required variables to zero to determine the number of coins and bills.

Second step : Prompt and read the amount to convert. amount to Hundreds

Third step : Compute hundred bill note as 100 amount equal to  ( amount% * 100 fifties - amount )

Fourth step : Compute fifty bill notes as :  ( amount% * 50 fifty bill notes )

Fifth Step : Compute Twenty bill notes as amount equal to ( amount% *20 Twenties - amount )

Sixth Step : Compute Tens bill notes as : ( amount% * 10 Tens bill notes )

Note : continue the process for fives, Quarters, Dimes, Nickels, and Pennies.

Learn more about Algorithm : https://brainly.com/question/13800096

#SPJ1

Attached below is the missing part of the question

Write an algorithm that describes the second part of the process of making change (counting...

The Bank of Commerce Caribbean (BCC) is a fairly new financial institution. It started off with one bank in Jamaica and now is opening another Jamaican branch within a month and expanding to St Kitts in the months thereafter. At present, it has a local area network connecting all of its devices. However, the main method of communication among the bank departments is printed circulars. Printed circulars are also sent to investors, stakeholders and customers. You are a member of an IT team advising the bank on its networking needs. The team consists of students from your class.
1. What is a major problem that BCC will face when it expands?
2. What are three possible reasons for this problem?
3. Use a step-by-step approach to explain how your team will work out a solution to the problem.
4. Recommend a solution to the problem facing the bank that you stated in question 1. Use posters or any other media tools that you can use competently to produce a presentation that you can show to the bank managers. 5. What challenges did you face while working out a solution, and how did you overcome them?​

Answers

The major problem that BCC will face when it expands is the lack of digital coverage to all its branches because they are currently using only local area network that is connecting only on branch devices.

The three possible reasons for this problem is that:

They are just starting new and are limited in what they know.They lack exposureThey h]lack the needed  technology

What are the factors to be considered when opening a new bank branch?

The issues one need to look if opening a New Bank

Site Selection. The Nearby Businesses.Onsite Customer Experience.ATM/ITM Accessibility.

Therefore, The major problem that BCC will face when it expands is the lack of digital coverage to all its branches because they are currently using only local area network that is connecting only on branch devices.

Learn more about bank branch from

https://brainly.com/question/14160129

#SPJ1

Which of the following can be called a form of discriminant analysis?

Answers

Decision tree can be called a form of discriminant analysis.

What do you mean by Analysis?

Analyzing something entails dissecting it into its component parts and then coming to your own conclusions by asking questions like WHY and HOW.

Based on results from one or more quantitative predictor variables, observations are divided into non-overlapping groups using the statistical approach known as discriminant analysis. A clinician could, for instance, use a discriminant analysis to find patients with high or low stroke risk.

Discriminant analysis is a regression-based statistical technique used to identify the category or group to which a piece of data or an object belongs based on its traits or distinguishing characteristics.

Therefore, Decision tree can be called a form of discriminant analysis.

Learn more about Analysis, here;

https://brainly.com/question/5040600

#SPJ6

Write a program that converts a decimal height in feet into feet and inches.
For instance; an input of 4.75 feet should become 4 feet and 9 inches.

Answers

The program to illustrate the conversion of the height is illustrated below.

How to illustrate the program?

The information here is to convert 1 inch = 2.54 cm. First, we will take user input of height in cm. We first convert this to inches by dividing by 2.54

After that, we use Floor Division // and Modulo % by 12 to get feet and inches respectively.

The inches will be in a lot of decimals. We round this off to 2 decimal places and finally print out the converted height.

The code will be:

# Take user input for height in cm

height_cm = float(input("Enter your height in cm: "))

# Convert height to inches

height_in = height_cm / 2.54

# Get feet by taking floor division with 12

feet = height_in // 12

# Get inches by taking modulo division with 12

inches = height_in % 12

# Round off the inches to 2 decimal places

inches_rounded = format(inches, ".2f")

# Print out the height in feet and inches

print(f"Height is {feet} ft {inches_rounded} in")

Learn more about program on:

https://brainly.com/question/26134656

#SPJ1

Consider the following language:

L={ |M is a Turing Machine and M accepts at least one palindrome,

and rejects at least one palindrome}

a. Is L a decidable language? Prove your answer.

b. Is L a recognizable language? Prove your answer.

Answers

L is a decidable language because the Turing machine accepts it.

L is a recognizable language if  TM M recognizes it.

How do you know if a language is decidable?

A language is said to be decidable only when there seems to exists a Turing machine that is said to accepts it,

Here, it tends to halts on all inputs, and then it answers "Yes" on words that is seen in the language and says "No" on words that are not found in the language. The same scenario applies to recognizable language.

So,  L is a decidable language because the Turing machine accepts it.

L is a recognizable language if  TM M recognizes it.

Learn more about programming language from

https://brainly.com/question/16936315

#SPJ1

The Horse table has the following columns:

ID - integer, primary key
RegisteredName - variable-length string
Breed - variable-length string
Height - decimal number
BirthDate - date
Write a SELECT statement to select the registered name, height, and birth date for only horses that have a height between 15.0 and 16.0 (inclusive) or have a birth date on or after January 1, 2020.

Answers

The way to write the select statement has been written below.

How to write the query

The query that is going to be written in this statement would be

First use the select command and then add the variables that are of interest.

This would be written as

SELECT

RegisteredName,

Height,

BirthDate

Next you have to specify where you want the select statement to read from so you write

FROM horse

WHERE height BETWEEN  15.0 and 16.0 OR BIRTHDATE  >='2020-01-01'.

The query that is written above if followed would show the data that the operator is seeking for.

Read more on python select statements here:

https://brainly.com/question/14350111

#SPJ1



Select the WRONG statement about Slide Transitions.

a. Slide transitions can be considered a different type of animation.

b. Each and every slide in PowerPoint should have a slide transition.

c. You can apply slide transitions to only a few selected slides.

d. You can apply slide transitions to every slide in a presentation

Answers

Answer:

c. You can apply slide transitions to only a few selected slides.

Explanation:

If you want to, you could literally apply slide transitions to every slide.

C

You can apply slide transitions to any amount of slides you wanted

explanation: how to have a good database?

Answers

For one to have a good database design one has to:

Share your information into a form of subject-based tables to lower the redundant data.Give an Access with the information it needs to add to the information in the tables altogether as required.Act as a form of aid and make sure of the accuracy and integrity of the information one has provided.

What is a database?

A database is known to be often set up so that there can be easy storage and access to any information.

Note that For one to have a good database design one has to:

Share your information into a form of subject-based tables to lower the redundant data.Give an Access with the information it needs to add to the information in the tables altogether as required.Act as a form of aid and make sure of the accuracy and integrity of the information one has provided.

Learn more about database  from

https://brainly.com/question/26096799

#SPJ1

Other Questions
Look at this triangle.AWork out length BC.13 cm8 cmB If two parallel lines are cut by a transversal, the alternateexterior angles are After the thunderstorm, the sky was bright, and the open barrels were brimming with rainwater. What type of phrase is the underlined phrase?. SEVEN TIMES THE SUM OF THREE CONSECUTIVE EVEN INTEGERS IS 140 MORE THAN ELEVEN TIMES THEMIDDLE INTEGER. FIND THE INTEGERS The gravitational force, F, between an object and the Earth is inversely proportional to the square of the distance from the object to the center of the Earth. If an astronaut weighs 196 pounds on the surface of the Earth, what will this astronaut weigh 300 miles above the Earth? Assume that the radius of the Earth is 4000 miles. (Round off your answer to the nearest pound.) Please help! will give 14 points and brainliest! Sarah has 15 naira and bobo has 39 naira .how much must Sarah give to bobo so that bibo shall have 5 times as much as Sarah Identify and describe the stages of cell growth and reproduction in both plant and animal cells. A plane takes off from an airport on a bearing of 270 and travels at a speed of 320 mph. after sometime and flight, space the plane encounters a 35 mph wind blowing directly north. Find the speed of the airplane after it encounters the wind.A.322mph B.330mph C.285mph D.355mph Which is the best question for Sunil to ask to gain clarityon Kimi's statement?O Which rhetorical question is the most intriguing?O What rhetorical questions did the speaker pose?Why does the speaker use examples of engagementrather than directives?O Is the speaker's purpose a positive ambition that thegroup should discuss? Question 14 of 32What is the equilibrium expression for the reaction below?C(s) + O(g)CO(g) .OB.O C.OD.[0][C][CO][CO][0][CO][0][C]1 Which factor does not increase the rate of a reaction? decreasing the concentration of the reactants increasing the temperature of the system increasing the surface area of the reactants adding an effective catalyst to the system A Juan __________ los pies. (doler)les duelense duelenses duelenle duelen How does body composition influence cardiorespiratory endurance? using ruler and set square draw AB 8cm long. construct line PQ parallel to line AB such that distance apart is 2.5cm HELP THIS IS MY LAST QUESTION The questions below refer to the selection "How it Feels to be Colored Me."The overall tone of this essay could best be described asa. bitter.b. tender.c. positive.d. guarded or distant.Please select the best answer from the choices provided An earthquake destroys a good portion of the capital stock but does not affect the production function. Capital per worker will _______ in the short run and _______ in the long run. A. decrease, decrease B. decrease, stay the same C. stay the same, decrease D. stay the same, stay the same PLEASE HELP Which of the following expressions could not be used to determine the exact value of cos 60? Anthropologists, as compared to other social scientists, have spent a great deal of time studying kinship because they: