Answers

Answer 1

Answer:

1.75

Explanation:

It is marked at 3/4 (.75) of the line so it would be 1.75

Answer 2
The answer is 1.75. You can see where the ruler shows the number one and d is in between 1 and 2. It is not directly in the middle and is at 1.75. I hope this helps you.

Related Questions


Using state.area a vector measuring the area of
each U.S. state in square miles, find which values are
greater than or equal to 100,000 but less than 200,000.
Assign a logical vector for this comparison called
gt_100k as your answer.
R programming language

Answers

Explanation:

The second way to index vectors is with logical vectors. A logical vector is a vector that only contains TRUE and FALSE values. In R, true values are designated with TRUE, and false values with FALSE. When you index a vector with a logical vector, R will return values of the vector for which the indexing vector is TRUE. If that was confusing, think about it this way: a logical vector, combined with the brackets [ ], acts as a filter for the vector it is indexing. It only lets values of the vector pass through for which the logical vector is TRUE.

Given a list of numbers, use a while loop to print the square of each element in python.
Start of with: list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
ILL GIVE 50 POINTSSS

Answers

Answer:

list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

counter = 0

lenlist = len(list) - 1

while counter < lenlist :

num = list [lenlist]

squ = num * num

print (squ)

counter += 1

Explanation:

as it goes through the list, it takes the element with that index and squares it, printing the squared number. it then increments the counter and starts again with the next element in the list.

What are the different types of Network Connectivity Devices? Minimum If 5 Network Connectivity Devices

Answers

Answer:

Different types of Network Connectivity Devices are;

1) Network Interface Card (NIC)

2) Network router

3) The hub

4) Modem

5) Wireless Access Point

Explanation:

Network Connectivity Devices are network equipment that is used to receive and transmits data signals in analog or digital format to and other devices within the network through either wired or wireless connection

1) The network interface card enables the wired connection of a computer to an external network

2) A router is used for connecting two or more networks by routing packets to the different networks

3) A network hub transmits data it receives through one port to all the other ports in the hub and vice versa

4) The modem which is an abbreviation of modulator demodulator is used to transmit and receive data through telephone lines by converting digital signals into analog signals and vice versa

5) A wireless access point is made up of a device used to create a wireless network by using a transmitting and receiving data that allows wireless interconnectivity between users in the network.

Which of these is a standard for describing a wifi network?
4G
802.11ac
100BaseT
mesh

Answers

Answer:

4g

Explanation:

i say 4g because its a standard for describing a wifi network.

Answer:802.11ac

Explanation:for me on k12 its 802.11ac not 4g

3.21 LAB: Smallest number
Write a program whose inputs are three integers, and whose output is the smallest of the three values C++

Answers

Answer:

#include <iostream>

using namespace std;

int main(){

   int a, b, c;

   cout<<"Enter three integers: ";

   cin>>a>>b>>c;

   if(a<=b && a<=c){

       cout<<"Smallest: "<<a;    }

   else if(b<=a && b<=c){

       cout<<"Smallest: "<<b;    }

   else{

       cout<<"Smallest: "<<c;    }

   return 0;

}

Explanation:

This line declares three integer variables a, b and c    

int a, b, c;

This line prompts the user for three integer inputs

   cout<<"Enter three integers: ";

This line gets the inputs

   cin>>a>>b>>c;

This checks if the first is the smallest

   if(a<=b && a<=c){

If yes, it prints the first as the smallest

       cout<<"Smallest: "<<a;    }

This checks if the second is the smallest

   else if(b<=a && b<=c){

If yes, it prints the second as the smallest

       cout<<"Smallest: "<<b;    }

If the above conditions are not true, then the third number is printed as the smallest

   else{

       cout<<"Smallest: "<<c;

   }

Bitmap images are ________ into different software applications.

Answers

Answer:

Bitmap images are easier to import into different software applications

Explanation:

Bitmap images, also known as raster images are images stored as tiny dots which are known as pixels which are tiny color assigned squares that are ordered within an area to create the image. Zooming in on a bitmap image allows the pixels that form the image to be seen

A bitmap file has the mapping of the image which can easily be reconstructed by a rendering application without considering the structural elements that reference the image and therefore, bitmap images are more easily imported into several applications than vector files which provide the information of the image for the rendering application to construct the image

Hey i need some help with code.org practice. I was doing a code for finding the mean median and range. the code is supposed to be including a conditional , parameter and loop. I'm suppose to make a library out of it and then use the library to test the code? please help!
here is the link to the code.
https://studio.code.org/projects/applab/YGZyNfVPTnCullQsVFijy6blqJPMBOgh5tQ5osNhq5c
P.S. you cant just type on the link i shared you have to click view code and then remix to edit it. thanks

Answers

Answer:

https://studio.code.org/projects/applab/YGZyNfVPTnCullQsVfijy6blqJPMBOgh5tQ5osNhq5c

Explanation:


Why is John Von Neumann to a remarkable name?
si​

Answers

Answer:

John von Neumann is remarkable for his vast knowledge of mathematics, and the sciences as well as his ability to correlate the pure and applied sciences.

Explanation:

John von Neumann who was born on December 28 1903, and died on February 8,1957 was known for his extensive knowledge of mathematics, physics, computer, economics, and statistics. In computing, he was known to conceive the idea of the self-replicating machines that thrive in the automata cellular environment, the von Neumann architecture, stochastic computing and linear programming.

He developed the game theory in Economics, and laid the foundation for several mathematical theories. He contributed greatly to quantum mechanics and quantum physics. Little wonder, he was dubbed "the last representative of the great mathematicians."

What is the main advantage of the WebM video file format?


A. WebM files are smaller and download faster than other video file formats, but do not sound as good.


B. WebM files are smaller than and effectively compete with other video file formats, but are not open-source.


C. WebM files are larger, download faster, and look as good as other audio file formats.


D. The WebM file format is open-source and effectively competes with proprietary file types.

Answers

Answer:

C. WebM files are larger, download faster, and look as good as other audio file formats.

PLEASE HELP! :)
A 2018 survey of South African households found that only 10.4% of households have Internet access and
21.5% have a computer.
Which of these would be the least effective way to reduce the digital divide across households?
Choose 1 answer:
A
Providing free subscriptions to an online video courses about digital literacy
B
Partnering with an Internet Service Provider to offer discounted rates for Internet access
C
Setting up Internet infrastructure in highly populated areas
D
Donating refurbished laptops to low-income families

Answers

Answer:

A

Providing free subscriptions to an online video courses about digital literacy

Explanation:

Internet access would be needed to access the courses because they are online. It would only help those who already have Internet access.

Help please!!


Calculate a student's weight (70 kg) on Earth using the Universal Gravitational Law



Calculate a student's weight (70 kg) on Mercury using the Universal Gravitational Law



Calculate a student's weight (70 kg) on the Sun using the Universal Gravitational Law

Answers

Answer:

1) The student's weight on Earth is approximately 687.398 N

2) The student's weight on Mercury is approximately 257.85 N

3) The student's weight on the Sun is approximately 19,164.428 N

Explanation:

The mass of the student, m = 70 kg

1) The mass of the Earth, M = 5.972 × 10²⁴ kg

The radius of the Earth, R = 6,371 km = 6.371 × 10⁶ m

The universal gravitational constant, G = 6.67430 × 10⁻¹¹ N·m²/kg²

Mathematically, the universal gravitational law is given as follows;

[tex]F_g =G \times \dfrac{M \cdot m}{R^{2}}[/tex]

Therefore, we have;

[tex]F_g=6.67430 \times 10^{-11} \times \dfrac{5.972 \times 10^{24} \cdot 70}{(6.371 \times 10^6)^{2}} \approx 687.398[/tex]

[tex]F_g[/tex] = W ≈ 687.398 N

The student's weight on Earth, W ≈ 687.398 N

2) On Mercury, we have;

The mass of Mercury, M₂ = 3.285 × 10²³ kg

The radius of Mercury, R₂ = 2,439.7 km = 2.4397 × 10⁶ m

The universal gravitational constant, G = 6.67430 × 10⁻¹¹ N·m²/kg²

The universal gravitational law is [tex]F_g =G \times \dfrac{M_2 \cdot m}{R_2^{2}}[/tex]

Therefore, we have;

[tex]F_g=6.67430 \times 10^{-11} \times \dfrac{3.285 \times 10^{23} \cdot 70}{(2.4397 \times 10^6)^{2}} \approx 257.85[/tex]

[tex]F_g[/tex] = W₂ ≈ 257.85 N

The student's weight on Mercury, W₂ ≈ 257.85 N

3) On the Sun, we have;

The mass of the Sun, M₃ ≈ 1.989 × 10³⁰ kg

The radius of the Sun, R₃ ≈ 696,340 km = 6.9634 × 10⁸ m

The universal gravitational constant, G = 6.67430 × 10⁻¹¹ N·m²/kg²

The universal gravitational law is [tex]F_g =G \times \dfrac{M_3 \cdot m}{R_3^{2}}[/tex]

Therefore, we have;

[tex]F_g=6.67430 \times 10^{-11} \times \dfrac{1.989 \times 10^{30} \cdot 70}{(6.9634 \times 10^8)^{2}} \approx 19,164.428[/tex]

[tex]F_g[/tex] = W₃ ≈ 19,164.428 N

The student's weight on the Sun, W₃ ≈ 19,164.428 N

TRUE OR FALSE: THE BUILDER'S CLUB IS A PAID SUBSCRIPTION.

Answers

Answer:

true

Explanation:

It's true it a paid subscription

which measuring instrument is used in measring current in a circuit?​

Answers

Explanation:

Ammeter is used to measure current in a circuit.

Answer:

ammeter

Explanation:

ammeter is measuring device used to measure the electric current of a circuit

What kinds of new input devices do you think might be invented in 10, 20, or 50 years? How might those devices change the world?

Answers

Answer: An input that can maybe act as a place to store your USB

Explanation:too many USB’s go missing so if there’s a storage area where it can be inputted and held it’ll be somewhere else so if it does go missing then it’ll be held on a tablet like device maybe ? Like a second I cloud

How do we “read” and “write” in MAR and MDR memory unit, please help I am very confused :)

Answers

Answer:

No entiendo

Por favor traduce al español

What is the output by:
print(len(stuff))

Answers

Answer:

The output will print out whatever the length is for stuff.

Explanation:

You use len() to get the length of the given string, array, list, tuple, dictionary, etc. Thus, passing in stuff using len will let the program to get the length of it.

Cameron connects a battery, a lightbulb, and electrical wires to make a simple circuit. Which choice correctly lists the forms of energy found in the circuit?

Answers

Answer:

The answer is "chemical, electrical, light, heat".

Explanation:

The simple circuit contains a single origin of voltage as well as a single resistance. In this in the voltage moves thru the leading route to just the resistor, which works. It provides useful energy throughout your home for such a range of tasks, which transfers heat from its light bulb as well as the wire resistance Light from the light bulb Chemical battery electricity because of the electric current.

A group of grade 11 students decide to have a party at the end of the school year. In order to decorate the
venue, they fill balloons with hydrogen gas and helium gas. Hydrogen filled balloons took 28.4 hours to go flat. How
long would it have taken the helium filled balloons to go flat?​

Answers

Answer:

don't know jjwkwkowowu

Explanation:

hjh89uh

Draw a flow chart to input some numbers and calculate and their total , stop when the total is greater
than 200.
Output the total , average and how many numbers where their total is less than 200.

Answers

Answer:

See attachment for flowchart

Explanation:

Using the attachment as a point of reference:

1. Start

2. sum and count were initialized to 0

3. The flowchart gets input from the user

4. The sum is calculated and the count is updated (by adding 1)

5. Check if sum is greater than 200.

If yes, go to 6, if no go back to 3.

6. Print sum

7. Calculate average

8. Print average and count of numbers

9. Stop

Arrange the Jumbled letters 1.eilf ngrihsa ________________ 2.cersityu ourreecs ________________ 3. ngrihsa ________________ 4. mmocnoitacin ________________ 5. exiflble ecscsa

Answers

Answer:

1. file sharing

2. security recourse

3.sharing

4.communication

5.flexible access

Explanation:

-

Do you think tracking your screen time will reduce your usage? Why or Why not?

Have a Good day​

Answers

Answer:

I dont think it will help much

Explanation:

Well, just tracking it will not necessarily make you stop. I would recommend putting app limits or downtime (if you have a mac). Also make a log. Write down how much time you need for different things, like 1 hour of free time, 5 hours of schoolwork. Also, make a schedule based off the things you put on your log.

I found doing this helped me reduce my time on screen and made me more productive.

Discuss briefly four types of websites and the criteria you will use to evaluate the content of a website

Answers

Answer: I would look at who made it, what date it was published, what it is about and if it says .gov, .com or etc.

Explanation:

how does a programmer use digital waves to transfer sound?

Answers

An analogue sound wave is picked up by a microphone and sent to an Analogue to Digital (ADC) converter in the form of analogue electrical signals. The ADC converts the electrical signals into digital values which can be stored on a computer. Once in a digital format you can edit sounds with programs such as audacity.

An analogue sound wave is picked up by a microphone and sent to an analogue to digital converter which converts the electrical signals into digital values which can be stored on a computer.

What is analogue to digital (ADC)?

Analogue to Digital (ADC) is refer to as a system which converts an analog signal, such as a sound picked up by a microphone or light entering a digital camera, into a digital signal.

Once in a digital format that can edit sounds with programs such as audacity. To play digital audio convert the sound from digital values into analogue electrical signals using the DAC, these signals are then passed to a speaker that vibrating the speaker cone, moving the air to create sound waves and analogue noise.

For more information regarding analogue to digital, visit:

https://brainly.com/question/20827936

#SPJ2

What are the features of MS Excel​

Answers

Then here are the excel features that you need to get a hold of:

Learn to use shortcuts. Once you are able to live without the mouse, you get the speed that counts. There are two types of shortcuts - one where you press a set of keys sequentially - like Alt>H>O>I to adjust column width. And the second where you simultaneously press a combination of keys - like Ctrl+Shift+L for applying filters or Ctrl+1 for the format numbers dialog box. It takes repetition to get the speed but once you are there, you get an edge.
Learn excel functions and apply them to build formulas. Start with easy ones like SUM, COUNT, SUMIF, COUNTIF, IF etc, then move to VLOOKUP, SUMIFS, COUNTIFS, HLOOKUP, INDEX, MATCH, then move to building nested complex formulas like IF inside an IF, VLOOKUP with HLOOKUP, INDEX+MATCH and so on.
Learn about data analysis and data aggregation. This includes tools like Pivot table, solver, goal seek, data tables, descriptive statistics, regression.
Learn about conditional formatting. Style and colour your spreadsheets.

Who wants to play Among Us as My hero Academia characters?

Answers

Answer:

this is brainly uhhhhhhh

Explanation:

y

Aight, I missed it walpp

Write a static method reOrder56(int[] nums) that return an array that contains exactly the same numbers as the given array, but has been reorderd so that every 5 is immediately followed by a 6. You may choose to move every other number with the exception of 5; You are not to move 5. The array contains the same number of 5's and 6's, every 5 has a number after it that is not a 5, and a 6 appears in the array before any 6.

Answers

Answer:

Follows are the code to the given question:

static int[] reOrder56(int[] nums)//defining a static method reOrder56 that holds an array in parameter

{

   int x,y;//defining integer variables

   for(x=0;x<nums.length;x++)//using for loop that counts array  

   {

       if(nums[x]==5 && nums[x+1]!=6) //defining if block checks arry values

       {

           for(y=0;y<nums.length;y++)//use for loop to count array value again  

           {

               if(nums[y]==6 && nums[y-1]!=5)//defining if block checks arry values  

               {

                   nums[y] = nums[x+1];//swap the array element value

                   nums[x+1] = 6;//holing value in array

                   break;//break the condition

               }

           }

       }

   }

}

Explanation:

In this code, a static method "reOrder56" is declared that takes an integer array "nums" in its parameter, and inside the method, two integer variable "x, y" is defined, which is used in the nested loop.

In the first loop, it holds array values and uses the if block to check the array element value and define another loop to check the same condition, and this block, swap the value and holds the value in the array and breaks the condition.

You have learned a lot about the types of careers that are involved with building a playground. Create two job descriptions of positions you would like on the construction team. List at least three skills that each position needs. Suggest at least one career field for each position. Respond to at least two of your classmates. Suggest another position on the construction team that would complement the two positions that your classmate suggested. List at least three skills and a career field for your position. Read the responses to your own post. Explain how all three positions would work together on the construction team to get the playground built. Remember that sharing your ideas with your classmates is an important part of this course. Don’t forget to read and reply to your classmates’ posts. You may offer advice, support, suggestions, or encouragement to your classmates.

Answers

Answer:

Learn some easy and hard careers

Explanation:

People are known to have different kinds of Careers. The job descriptions of positions I would like on the construction team are Playground designer  and Carpenters.

The Playground designer needs a design skill, must be able to draw and also be able to estimate how much the design will cost

The Carpenter must have knowledge/ skills of the carpentry work, how to use the tools for the work and  must know how to make sketches and layouts.

Another position on the construction team that would complement the two positions are Construction Laborer or ground crew.

What is a construction team?

There are different kinds of professionals and career paths in the construction industry. They include;

ArchitectsEngineersBuildersEstate surveyors, and others.

Conclusively, They are work hand in hand to ensure a  good and perfect construction work.

Learn more about construction team from

https://brainly.com/question/25795065

Which types of networks cover large geographical areas such as several states? PAN
MAN
LAN
WAN

Answers

MAN

Explanation:

Metropolitan Area Network

Local Area Network

Wide area Network

Jack has a fear of getting up in front of a group of people and giving a presentation. When he gave his last presentation, he talked quickly, which made it hard for people to understand him.

What constructive criticism could you give Jack?

You did an amazing job on the research. When I present, I find it helpful to take a deep breath. It helps me relax and slow down, which helps my audience.
You do not have confidence in your ability, and it shows. You need to get training on presenting.
You had a lot of great points in your presentation. Everyone walked away understanding what you were saying.
You need to slow down. People do not like it when you talk so fast.

Answers

Answer:

The constructive criticism I would give Jack is the 1st one. You did an amazing job on the research. When I present, I find it helpful to take a deep breath. It helps me relax and slow down, which helps my audience. Hope this helps :)

Answer:

c

Explanation:

4
Select the correct answer.
Which language is widely used to write programs to process large amounts of numerical data?

A. PHP
B. FORTRAN
C. Prolog
D. Python

Answers

B.
MARK KE BRAINLEST

Answer:

The correct answer is B. FORTRAN.

Explanation:

I got it right on the Edmentum test.

Other Questions
This reaction supports the Law of Conservation of Mass (hint: is the equation balanced?):2KOH K20 + H2O True or False Please find the product of (a^3-a^2)7a change this into ur own words someone pls helppp plsss HELP PLEASEEEEEEEEEE ITS DUE SOOON!!!!!!!!! 1. Any gentle wind is called a r/3 - 9 >= -2how do i do this? provides the reason for your point of view in my opinion Sunrise, a bed-and-breakfast hotel, charges a one-time deposit of $25 plus $85 per night. Another bed-and-breakfast hotel called Bright Eyes charges a flat rate of $95 per night. Craig wants to book a hotel for 5 nights. simplify the algebraic expression to simplest form by combining like terms. c+c+c+d+c+d+d+c There are 90 girls and 60 boys in the sixth grade at a middle school of the students 9 girls and three boys write left-handed what percent of the 6th graders at this Middle School right left handed write a speech on "" find the unit rate 39 plates in 3 stacks =plates per stack In the equation, 23 + b= 456 the variable is what What is the equation of the circle shown in the graph? The coach was ____ with his performance. EXERCISE 2: Explore and say something about the Music of East AsiaDirection: Based on what you have learned, fill in the complete information regardingMusic of Japan, China and Korea.Socio-HistoricalContextMusicInstrumentsheard in thevideo ofit'ssoneMusic of JapanFunction ofMusicMusic Vocals What is the best way to write sentence 5? Let U = {c, d, e, f, g, h, i) and A = {c, e, h, i). Use the roster method to write the set A'.A' =(Use a comma to separate answers as needed.)HELP MEEE find the area of 4,4,8,2 5(3x + 7)+6Distributive PropertyWill mark brainliest