Which telemetry is used for monitoring astronauts in space​

Answers

Answer 1

Answer:

I believe it is medical telemetry

Answer 2
It’s Astroskin for there health the use the to help them in space

Related Questions

Can people survive without technology?
As technology advances, does technology become more or less complex?
As technology advances, do the things we make, become: more reliable? Safer? More durable? Perform better?
As technology advances, does it require more or fewer science and math applications?

Answers

Answer:

1)Nowadays no one can survive without technology.

2)more complex

3) yes

4)yes ofc

Types of cloud storag?

Answers

Answer:

There r 3 types of data storage: object storage, file storage, and block storage. Each offers their own advantages and have their own use cases: Object Storage - Applications developed in the cloud often take advantage of object storage's vast scalablity and metadata characteristics.

(a) Distinguish between hyperlink and homepage.​

Answers

Homepage is the entire page that opens when you open the browser and hyperlink is a link that takes you to another page.

Please help. I don't know how to do this.

Answers

Answer: I need to know what the problem is tho.

Explanation: (0L0)

What is printed when the following code has been executed?
int x = 15;
int y = 4;
System.out.println((2 * x + y) % x);
15
4
34
2
19

Answers

Hey it is 15 hope this helps

What is the purpose of a computer network needs assessment? to evaluate how to move from the current status to the desired goal to determine what steps employees can take to increase company revenue to analyze which workers need more training to improve their performance to compare worker productivity

Answers

Answer:

to evaluate how to move from the current status to the desired goal

what is a program or collection of programs that enable a person to manipulate a visual images on a computer​

Answers

In computer graphics, graphics software refers to a program or collection of programs that enable a person to manipulate images or models visually on a computer. ... In addition to static graphics, there are animation and video editing software.

which is used for making documentation file from microsoft office package​

Answers

Answer:

the word is use for making docs

Answer:

Explanation:

To create a document, open Word, select a blank document or template, and start typing. Discover professionally designed templates for Microsoft Word.

Define cloud, and explain the three key terms in your definition. Compare and contrast cloud-based and in-house hosting using the comparison presented in Q6-1 as a guide. In your opinion, explain the three most important factors that make cloud-based hosting preferable to in-house hosting.

Answers

Cloud computing is making hardware, software and data available on demand via a network.

The cloud stands for a network that, with all the computers connected to it, forms a kind of 'cloud of computers', where the end user does not know how many or which computer the software runs on or where those computers stand exactly.

In this way, the user no longer needs to be the owner of the hardware and software used and is therefore not responsible for maintenance. The details of the information technology infrastructure are hidden from view and the user has his own virtual infrastructure, scalable in size and possibilities.

Learn more in https://brainly.com/question/8645052

how do you identify the active file if more than one has been opened simultaneously and are being displayed on the screen​

Answers

Explanation:

On the View tab, in the Window group, click New Window.

On the View tab, in the Window group, click View Side by Side .

In the workbook window, click the worksheets that you want to compare.

To scroll both worksheets at the same time, click Synchronous Scrolling in the Window group on the View tab.

Note This option is available only when View Side by Side is turned on.

Tips

If you resize the workbook windows for optimal viewing, you can click Reset Window Position to return to the original settings.

To restore a workbook window to full size, click Maximize at the upper-right corner of the workbook window.

View two worksheets of different workbooks side by side

Open both of the workbooks that contain the worksheets that you want to compare.

On the View tab, in the Window group, click View Side by Side.

Why would you use a computer's secondary memory?
O A. To look at files created on your home computer on a public
computer
B. To run word processing software on your computer
O C. To save a slide show presentation on your computer
D. To start up your computer and perform its basic tasks

Answers

Answer:

I think B

Explanation:

Secondary storage is needed to keep programs and data long term. Secondary storage is non-volatile , long-term storage. Without secondary storage all programs and data would be lost the moment the computer is switched off.

A computer's secondary memory would be used to look at the files created on the home screen of the computer.

Option A is the correct answer.

A computer is an electronic device that is used to do various kinds of operations automatically.

Now, Secondary memory can be utilized to store the data or information which can be instantly recovered.

It is also known as backup memory. USB drives, hard disk drives, optical drives, etc. are some examples of secondary memory.

Therefore, the task of locating the files in the computer is to be done by using the computer's secondary memory. So option A is true.

Learn more about the secondary memory in the related link:

brainly.com/question/24901228

#SPJ6

Hey all! How would you write write this code?

Write a C++ program using variables and loops in order to implement the Hi-Low strategy of card counting and keep a running count. The Hi-Low strategy of card counting assigns one of three values to a card, based on its face value. The table below breaks down these values. FACE VALUE ASSIGNEDVALUE 2, 3, 4, 5, 6 +1 7, 8, 9 0 10, J, Q, K, A -1 In a typical game of Blackjack, a card counter will start with a fresh deck and a count of 0. Each time a card is played, its assigned value is added (or subtracted) from what is known as the running count. The running count rolls over from hand to hand. For instance, if the first 7 cards of a game were: Queen, Jack, 4, 6, 7, Jack, 9, then the running count would be (0) -1 -1 + 1 + 1 + 0 –1 + 0 =-1

Answers

The program is an illustration of loops.

Loops are used to perform repetitive actions.

The program in C++ where comments are used to explain each line, is as follows:

#include <string>

#include <iostream>

using namespace std;

int main(){

   //This declares all variables

   int n, count = 0; string k;

   //This gets input for the number of cards

   cin>>n;

   //The following is repeated n-times

   for(int i = 0;i <n;i++){

       //This gets input for the current card value

       cin>>k;

       //If the card is a digit

       if(isdigit(k[0])){

           //This checks if the card number is between 2 and 6 (inclusive)

           if(stoi(k) >= 2 && stoi(k) <= 6){

               //If yes the face value is increased by 1

               count+=1;

           }

           //This checks if the card number is 10

           else if(stoi(k) == 10){

               //If yes the face value is decreased by 1

               count-=1;

           }

       }

        //This checks if the card number is J, Q, K or A

       else if (k == "J" || k == "Q" || k == "K" || k == "A") {

           //If yes the face value is decreased by 1

           count-=1;

       }

   }

   //This prints the face value

   cout<<count;

   return 0;

}

At the end of the program, the face value is printed.

Read more about similar programs at:

https://brainly.com/question/24578223

For what purpose does a programmer use flowcharts and pseudocode?

A- to execute code
B- to translate code into assembly language
C- to communicate the steps needed to write a program
D- to communicate methods to test code

Answers

When there’s a quizlet theirs a way. So the answer is C. Pls give brainliest.

please answer this now I need please.


write a statement to do the following.
a)to give yellow colour to the for writing text on the graphics window
b)To give green as background colour to the graphics window
c)to give pink colour to the brush which is used to fill the shapes in the graphics window​

Answers

Answer:

You can change the color of text in your Word document. Select the text that you want to change. On the Home tab, in the Font group, choose the arrow next to Font Color, and then select a color.

You can display a graphics window and draw colorful shapes in it if you use the Show operation of the GraphicsWindow object. You can also specify properties of the graphics window, such as its title, height, width, and background color.

Explanation: Sorry I couldn't do the third question but hope it helps.

Answer:

hii , you are an army?

reply in the comment

how does communication promotes team building​

Answers

Team members must communicate with one another in a way that encourages collaboration and mutual understanding. Trust, message clarity, and loyalty are all enhanced by effective communication. Trust and motivation are eroded by ambiguous, poorly structured communication.

Answer:

Effective communication within a team will build a common purpose among team members that will allow them to reach their goals. ... Strong group communication will create understanding and that understanding will create powerful relationships within a team.

Please answer the following question in Verilog.

To test our functions we will generate a 3-bit vector that counts up by one every cycle which we will use as the inputs to the decoder. The decoder output will then be fed into the inputs of the encoder to produce an inverted version of the original 3-bit test vector. For every input vector you should toggle the enable signal to both the encoder and decoder function which can be easily done by using the clock waveform used to determine when to increment the input vector as the enable signal as well.

Answers

Answer:

345678909 my number

Explanation:

Philip took pictures with his smartphone and save them into his computer unless you delete the photos from the computer they will remain strong because the a computer has a​

Answers

Answer:

Storage drive

Explanation:

1. Philip took pictures on a smartphone; given

2. Philip saved pictures from smartphone onto computer; given

Philip saved the pictures onto the computer. This means that the data was transferred from the phone's storage drive onto the computer's storage drive. Storage drives are strong/hard storage mediums. This means that the storage drive will not be deleted on each start-up, unlike weak/soft storage of random access memory (RAM).

HDD = Hard Disk Drive; strong/hard medium (non-volatile); a mechanical actuator etches data into magnetic platters.

SSD = Solid State Drive; strong/hard medium (non-volatile); NAND logic gates on electronically erasable programmable read-only memory (EEPROM) chips are controlled through a SSD controller

RAM = Random Access Memory; weak/soft medium (volatile); Double Data Rate (DDR) Synchronous Dynamic Random Access Memory modules (SDRAM) are controlled most commonly through a central processor unit (CPU) or through a dedicated memory chip (specialized tasks most commonly).



Where do you place the logical test argument in an IF function formula?
O before the IF function
O the first argument listed after IF
the second argument listed after IF
O the third argument listed after IF
Intro
Don

Answers

Answer:

the first argument listed after IF

yw

Identify the following verb by number and person by checking on the appropriate boxes.

SHE WANTS!!


second person
singular
plural
same form for both singular and plural
third person
first person PLEASE HELP!!!!!! LAUNGUAGE ARTS

Answers

second person ig Imao yeah

Answer:

Singular and third person

Explanation:

Second person: this answer is not correct as second person refers to pronouns such as “you, yourself” like in a recipe.

Singular: this is correct as a singular verb is when there is only one subject. You can also tell it’s a singular verb as the present tense ends with a “s”.

Plural: this is not plural because there is only one subject. Plus the present tense of the verb ends with an s so it’s not a plural verb. Plural verb’s present tense never ends with an s.

Third person: this is correct because the subject of the sentence is someone else. Third person pronouns include: “her, she, he, him, they, then” basically, third person is when you talk about someone else.

First person: this answer is not correct because first person refers to one’s self. So first person pronouns are: “I, me, myself”

what is keyboard buffer tell me the answer nicely and I will give brainlitst​

Answers

Answer:

A keyboard buffer is a very small partition of memory that is usually stored in the computer memory in random access memory (RAM) and captures all the keystrokes made on a keyboard.

Explanation:

If known vulnerabilities in software are entry points for an attacker, why are the software vulnerabilities not corrected before the software is released?

Answers

Answer:

we dont knoqw

Explanation:

The developer hasn't had enough time to address them, these flaws are referred to as "zero days." is the software vulnerabilities not corrected before the software is released.

What is software?

Software is a set of instructions, information, or computer programs that are used to operate equipment and perform certain tasks. Hardware, which is a term for a computer's external components, is the opposite of it. In this usage, "software" refers to the running scripts, programs, and apps on a device.

The procedures and software that make it possible for a computer or other electrical equipment to operate are referred to as software. Examples of the processes and programs that make up a computer system are Excel, Windows, and iTunes.

System software consists of the programs and processes required to run the computer. System software, utility software, and application software are the three subcategories of software.

Thus, The developer hasn't had enough time to address them.

For more information about software, click here:

https://brainly.com/question/985406

#SPJ2

Draw a conceptual sketch of your laptop. Identify the keyboard, screen, power source, and storage device and etc. using arrows and labels.

Answers

Answer: 12345678910111213141516171819202122

What is the relationship between the speed of an object in the amount of energy it has? explain

Answers

Light energy into Chemical energy

12zener diode is connected in a series with resistance of 150ohms a load resistance of 1kiloohms is connected across the zener diode the maximum zener current should not exceed 20mA and the minimum zener current is nearly zero .calculate the operating range of the input voltage?

Answers

Answer:

please answer my question by visiting my profile please I want it urgently

DUE SOON NEED HELP FAST!!
It is 6:30pm GMT, if it is 2:00PM where are you, what is your longitude?

Answers

Answer:

From 2007 to 2016 the correct answer would've been Caracas, Venezuela. With a longitude of 66° 56' W.

Their timezone at that time was GMT-4.5, which means they'd be four and a half hours behind GMT.

As of 2021, there are no countries using that timezone for international trade and travel.

Explanation:

Had to make some assumptions. If no other context is given, then this would be the correct answer.

IT professionals ensure servers connected to the network operate properly. (2 points) True False

Answers

Answer:

True

Explanation:

Thats one of their most important jobs

Which option is the output of the Functional Requirements of the SRS document?
A.
program modules
B.
data formats
C.
storage capabilities
D.
hardware interfaces
E.
communication interfaces

Answers

Answer:

E

communication interface

Number 1 is what part of an application







Title Bar


Ribbon


Quick Access Toolbar


Status Bar

Answers

Answer:

The correct answer is Quick acces tool bar. You litteraly probably don't even use brainly anymore lol.

Explanation:

I absolutly confirm this is correct.

The number 1 is the part of an application that is considerably known as the Quick Access Toolbar. Thus, the correct option for this question is C.

What does the Quick Access toolbar contain 1 point?

The customizable Quick Access Toolbar contains a set of commands that are independent of the currently displayed tab on the ribbon. You can move the Quick Access Toolbar from one of the two possible locations, and you can add buttons that represent commands to the Quick Access Toolbar.

According to the context of this question, the quick access toolbar is located in the title bar of the application window but can be configured to display below the ribbon usually consisting of the number 1 part of an application.

Therefore, number 1 is the part of an application that is considerably known as the Quick Access Toolbar. Thus, the correct option for this question is C.

To earn more about Quick access toolbar, refer to the link:

https://brainly.com/question/13523749

#SPJ6

We know that February has either 28 or 29 days, but there is a year in the future, February will have 30 days
What exactly is this year?

Answers

Answer:

39 days is the offensive number

Explanation:

cuz calendar no have that numer

What do you understand by the term input, output, processing and storage.​

Answers

Explanation:

The hardware responsible for these four areas operates as follows: Input devices accept data in a form that the computer can use; they then send the data to the processing unit. ... Output devices show people the processed data-information in a form that they can use. Storage usually means secondary storage.

Answer:

input is any information that are given by user and output is the meaningful results that displays in screen and processing means the actions of computer to convert input into output and storage is the last stage where the data and information held for future. I hope you like the answer

Other Questions
What is length of Ef? Lena can knit 14 square inches of a blanket in 3 1/2 hours.Find the number of square inches knit per hour and the number of hours spent knitting per square inch Find the missing side of each triangle. Leave your answer in simplest radical form. (Please show ur work) -12 1/2 + 4 1/2I need the work how many moles of of Al are needes to form 2.43 mol of Al2Br6?A. 7.29 molB. 1.22 molC. 2.43 molD. 1.62 mol E. 4.86 mol Economics of MigrationA woman working in Dubai who sends money home to her family is participating in the sending ofremittanceseconomic migration(voluntary migrationDintervening opportunityEintervening obstacles 1. What types of words show up in story titles that are related to the story's theme?multiple-meaning wordsoppositesO vague wordshard-to-spell words HELP PLEASE I need help with this question: if a 280g with 32 pieces chocolate bar contains 20% of fat. How much fat is in 4 pieces? To what extent does voting mater in the US? the greatest common factor of 12 and 26 pls explain the steps NEEEEEEEEEEEEEEED HEEEEEEEEELP ASP ASP AS-P PLXPLXPLXPLXPLXPLXPLXPLX NOW NOW NOW NOW can anyone heelp me pls colorless, odorless, tasteless, and transparentAll of these are what kind of properties of water?Chemical or physical? Let p and q represent the following simple statements: in what cell organelle is the green pigment, chlorophyll found? il y a des lves trangers dans la classe, n'est-ce pas? inverse what is 160% of 80kg What was the mood that Europe showed to France, even after her bloody rampage through Europe? what is the most important factor driving metamorphism?