Which statement best describes how the information systems discipline is
different from the information technology discipline?
A. Information systems incorporates physical computer systems,
network connections, and circuit boards.
B. Information systems focuses on connecting computer systems
and users together.
C. Information systems incorporates all facets of how computers
and computer systems work.
D. Information systems focuses on organizing and maintaining
computer networks.

Answers

Answer 1

A statement which best describes how the information systems discipline is different from the information technology discipline is: B. Information systems focuses on connecting computer systems and users together.

What is an information system?

An information system (IS) can be defined as a collection of computer systems and Human Resources (HR) that is used by a business organization or manager to obtain, store, compute, and process data, as well as the dissemination of information, knowledge, and the distribution of digital products from one location to another.

In this context, we can reasonably infer and logically deduce that a statement which best describes how the information systems discipline is different from the information technology discipline is that information systems is typically focused on connecting computer systems and users together.

Read more on information systems here: https://brainly.com/question/25226643

#SPJ1

Answer 2

Answer

B. Information systems focuses on connecting computer systems

and users together.

Explanation:


Related Questions

in a rack setup, a device called a kvm allows multiple consoles to connect to a single device on the rack.

Answers

in a rack setup, a device called a kvm allows multiple consoles to connect to a single device on the rack is a False statement.

What is a rack and what is its purpose?

A rack is known to be a term that is used in computing as well as in an IT (information technology).

The term is known to be one that connote the act that is acting as a supporting framework that tends to holds hardware modules.

In the above context, racks are seen as a kind of  contain servers, hard disk drives as well as  other forms of computing equipment.

The Racks are known to be tools that make it possible to place in a lot of equipment in a little physical footprint without  the need for shelving.

Therefore, in a rack setup, a device called a kvm allows multiple consoles to connect to a single device on the rack is a False statement.

Learn more about consoles  from

https://brainly.com/question/27031409

#SPJ1

in a rack setup, a device called a kvm allows multiple consoles to connect to a single device on the rack. True or False. .

two routers, r1 and r2, connect using an ethernet over mpls service. the service provides point-to-point service between these two routers only, as a layer 2 ethernet service. which of the following are the most likely to be true about this wan? (choose two answers.)

Answers

a. R1 will connect to a physical Ethernet link, with the other end of the cable connected to R2.

b. R1 will connect to a physical Ethernet link, with the other end of the cable connected to a device at the WAN service provider point of presence.

c. R1 will forward data link frames to R2 using an HDLC header/trailer.

d. R1 will forward data link frames to R2 using an Ethernet header/trailer.

B (R1 will link to a physical Ethernet link, with the other end of the cable attached to a device at the WAN service provider point of presence.) and D (R1 will transmit Ethernet header/trailer-encoded data link frames to R2 for transmission).

Each router connects to an SP device in an SP facility known as a point of presence using a physical Ethernet link in the physical installation (POP).

Each customer's device is not connected through an Ethernet link. Both routers employ the same Ethernet standard header and trailer used on LANs from a data link standpoint; HDLC is irrelevant on these Ethernet WAN links.

Learn more on routers here:

https://brainly.com/question/9490122

#SPJ4

What were two weaknesses of the First New Deal?

A. It failed to end massive unemployment.
B. It created a huge national deficit.
C. It created tension within labor unions.
D. It failed to properly regulate the banks.
E. It caused people to distrust the banks.

Answers

Answer:B. It created a huge national deficit.

Explanation:

B.The New Deal failed because Roosevelt created uncertainty through experimentation, protectionism, regulation, and raising taxes.

The New Deal failed because the NRA, by fixing prices, damaged American business. Folsom explains that the traditional free market system, where businesses compete and innovate to sell products of varying price and quality to choosy customers was overthrown

D. It failed to properly regulate the banks.

.The next day, Roosevelt declared a four-day bank holiday to stop people from withdrawing their money from shaky banks. On March 9, Congress passed Roosevelt’s Emergency Banking Act, which reorganized the banks and closed the ones that were insolvent.

The Great Depression: Causes and Early Events: Mastery Test

-

Hope this helps :)

Which property of a plaintext password is most effective at defeating a brute-force attack?

Answers

The property of a plaintext password is most effective at defeating a brute-force attack is The length of the password.

Which property of a plaintext password is used for defeating a brute-force attack?

The length of the password is known to be very vital in this type of an attack.

Note that when the password is one that do not have any kind of complexity that is of it is just simple dictionary words, it is one that can make a system to  be still be vulnerable but if it is seen as a long password, the system may still be in a vulnerable state but when the output space is small it makes it hard and difficult.

Therefore, The property of a plaintext password is most effective at defeating a brute-force attack is The length of the password.

Learn more about brute-force attack from

https://brainly.com/question/17277433

#SPJ1

What comparison operator is used to test whether an expression does not equal another expression?

Answers

A comparison operator which is used to test whether an expression does not equal another expression is: !=

What is programming?

Programming can be defined as a process through which software developer and computer programmers write a set of instructions (codes) that instructs a software on how to perform a specific task on a computer system.

In Computer technology, a comparison operator can be defined as a type of binary operator that is used for comparing the data values in a field (expression) to either the data values in another field (expression) or a constant.

In conclusion, a comparison operator which can be used to test whether an expression does not equal another expression is the != operator.

Read more on comparison operator here: https://brainly.com/question/2647100

#SPJ1

__________ software aids architects, engineers, and many others who need to create a digital model of an object.

Answers

CAD software aids architects, engineers, and many others who need to create a digital model of an object.

What is CAD software used for?

CAD design is  known to be a kind of a software that is often used by architects, construction managers, as well as engineers and it is one that has said to have taken over manual drafting.

Note that it is said to be a tool that helps its users to be able to make designs in 2D as well as in 3D form.

Therefore, CAD software aids architects, engineers, and many others who need to create a digital model of an object.

Learn more about CAD software from

https://brainly.com/question/14350050

#SPJ1

what are some websites you commonly use​

Answers

Answer:

boredpanda.com

Explanation:

it has fun collections of tweets, stories, photos etc.

your colleague has 15 years of log files full of performance data. the data needs to be sorted, but the file siz

Answers

Given that your colleague has 15 years of log files full of performance data. the data needs to be sorted, using a merge sort to divide the data into smaller chunks, sort them recursively, then merge results to produce the final sorted file with all data is given below:

The Merge Sort

import java.util.*;

public class Main {

public static void merge(String data)

{

String arr[]=data.split(";");

if(arr[0]==null||arr[1]==null) {

System.out.println(data);

return ;

}

String sorted_result=""; // to store the sorted alhanumeric character separated by comma

String pair=""; // to store the comparision pair

int i=0,j=0;

while(i<arr[0].length()&&j<arr[1].length())

{

char a=arr[0].charAt(i);

char b=arr[1].charAt(j);

if(a<b) // if the character of first array is smaller than second

{

sorted_result+=a+",";

pair+="("+a+","+b+") ";

i=i+2;

}

else

{

sorted_result+=b+",";

pair+="("+b+","+a+") ";

j=j+2;

}

}

while(i<arr[0].length())

{

char a=arr[0].charAt(i);

sorted_result+=a+",";

i+=2;

}

while(j<arr[0].length())

{

char b=arr[0].charAt(j);

sorted_result+=b+",";

j=j+2;

}

sorted_result=sorted_result.substring(0, sorted_result.length()-1);

System.out.println(sorted_result);

System.out.println(pair);

}

public static void main(String[] args) {

String input1="1,4,7,8;2,3,5,6";

merge(input1);

System.out.println();

String input2="H,L,M,P,P,R,S,b,d,i,n,o,o,p,s;1,5,5,6,7,8,C,U,V,V,W,f,h,r,s";

merge(input2);

System.out.println();

String input3="B,E,E,F,J,N,O,P,U,W,D;G,J,L,N,R,S,V,X,Y";

merge(input3);

}

}

Read more about programming here:

https://brainly.com/question/23275071

#SPJ1

A file path is a complete address that describes the exact location of a file. true false

Answers

It is true that a complete address that specifies a file's precise location is known as a file path. That question is related to file system.

A file system stores and arranges files on some type of storage device—typically one or more hard drives—in a way that makes it simple to access and retrieve them. The majority of current file systems store the files in a tree-like (or hierarchical) form.

One or more root nodes can be found at the top of the tree. There are directories and files beneath the root node (folders in Microsoft Windows). Each directory has the ability to hold files and subdirectories, which in turn have the ability to hold files and subdirectories, and so on, potentially indefinitely.

The sample directory tree with a single root node is depicted in the accompanying diagram. Multiple root nodes are supported by Microsoft Windows. Each root node corresponds to a volume, like C: or D: The root node that the Solaris OS supports is identified by the slash (/).

Learn more about file system https://brainly.com/question/11994563

#SPJ4

Why is John Von Neumann a remarkable name in the history of the computer?​

Answers

Answer:

John Von Neumann is one of the most famous people in the history of computers because of the fact that he came up with the concept of speedy computers with data, "the storage program technique". He introduced idea to help out with high speed digital data

One of his important contributions in this field was the development of a logical design for computers that paid attention to such concerns as data storage and the processing of instructions. This design, called “von Neumann architecture,” became the basic concept of most computers

Explanation:

Answer: John Von Neumann is one of the most famous people in the history of computers because of the fact that he came up with the concept of speedy computers with data. "the storage program technique".

Explanation:

in this clip, the filmmakers connect each shot using a technique called – . these editing choices are intended to maintain cinematic – and hide the edit.

Answers

The filmmakers connect each shot using a technique called Cutting on action.

These editing choices are intended to maintain cinematic hides the shift from one shot to the next and hide the edit.

What is meant by cutting on action?

Cutting on Action is known to be a term that is said to be used by editor and it is one that implies the  cuts in the middle of a given action to another shot that tends to matches the first shot's  said action.

Note that it is seen as a common editing method that tends to hides the shift from one shot angle  to another shot angle and this is often done  by stopping the first shot in the middle of another continuing action and then beginning the next shot at some distance along in the similar action.

Therefore,  The filmmakers connect each shot using a technique called Cutting on action. These editing choices are intended to maintain cinematic hides the shift from one shot to the next and hide the edit.

Learn more about filmmakers from

https://brainly.com/question/28110104
#SPJ1

define a function calcpyramidvolume with double data type parameters baselength, basewidth, and pyramidheight, that returns as a double the volume of a pyramid with a rectangular base. relevant geometry equations: volume

Answers

The defined function is given below:

The C++ Code

#include <iostream>

using namespace std;

/*

Define a function PyramidVolume with double parameters baseLength, baseWidth, and pyramidHeight, that returns as a double the volume of a pyramid with a rectangular base. Relevant geometry equations:

 Volume = base area x height x 1/3

 Base area = base length x base width.

 (Watch out for integer division).

*/

/* Your solution goes here  */

double PyramidVolume(double baseLength, double baseWidth, double pyramidHeight){

double baseArea = baseLength * baseWidth;

double vol = ((baseArea * pyramidHeight) * 1/3);

return vol;

}

int main() {

 cout << "Volume for 1.0, 1.0, 1.0 is: " << PyramidVolume(1.0, 1.0, 1.0) << endl;

  return 0;

}

Read more about C++ programming here:

https://brainly.com/question/15411348

#SPJ1

in which domain of a typical it infrastructure is the first layer of defense for a layered security strategy?

Answers

The domain of a typical IT infrastructure that is the first layer of defense for a layered security strategy is the firewall.

What is a Firewall?

This refers to the set of protection that determines what external network traffic(internet) should or should not be allowed to pass the internal network.

Hence, we can see that The domain of a typical IT infrastructure that is the first layer of defense for a layered security strategy is the firewall and this is because it protects and filters incoming network.

This firewall helps to act as the first layer of defense for a layered security strategy as it allows or prevents network access.

Read more about firewalls here:

https://brainly.com/question/13693641

#SPJ1

During which phase of the development of the internet was the domain name system (dns) introduced?

Answers

Institutional phase of the development of the internet was the domain name system (DNS) introduced.  Thus, option B is correct.

What is a domain name system?

Web addresses are converted to email accounts via the Domain Name System (DNS), what computers utilize to view online articles.

In the institutional phase of the development, the major changes are happening in this the DNS or the domain name system is being introduced which helps in connecting the internet address to the IP of the customer or the person who is being accounted for. Therefore, option B is the correct option.

Learn more about the domain name system, here:

https://brainly.com/question/28145453

#SPJ1

The question is incomplete, the complete question will be:

A) Commercialization phase

B) Institutional phase

C) Innovation phase

D) Consolidation phase

Write a program that preprocesses the collection. this preprocessing stage should specifically include a function that tokenizes the text. in doing so, tokenize on whitespace and remove punctuation.

Answers

The code that performs the above results given below:


import java.util.*;

Class Preprocessing

{

   public static void main(String args[])

   {

       StringTokenizer inputText=new StringTokenizer("You! can! enter! input! here!"," ");

       while(inputText.hasMoreTokens())

       {

           System.out.println("Next Token:"+inputText.nextToken("!"));

       }

   }

}

What is a code?

In computer programming, computer code is a set of instructions or a set of rules expressed in a specific programming language (i.e., the source code).

It is also the name given to source code after it has been compiled and is ready to execute on a computer (i.e., the object code).

Coding is the process of directing a computer's behavior using a programming language.

Every line of code in Python instructs the computer to do something, and a document full of lines of code is referred to as a script. Each script is intended to do a certain task.

Learn more about codes:
https://brainly.com/question/25658352
#SPJ1

What will be stored in the variable age after this code snippet executes? public static void main(string[] args) { int age = 16; age ; age--; age ; }

Answers

The age that will be stored in the variable age after this code snippet executes is 17.

What is code snippet?

Code snippets are known to be little blocks of codes that are known to be reusable and they are also said to be codes that can be placed inside of a code file through the use of a right-click menu (context menu) command or  one can be able to make use of a combination of hotkeys.

Note that they are the ones that has the commonly used code blocks and in the case above, the age is push forward by one.

Therefore, The age that will be stored in the variable age after this code snippet executes is 17.

Learn more about code snippet from

https://brainly.com/question/24080680

#SPJ1

What will be stored in the variable age after this code snippet executes?

public static void main(String[] args)

{

int age = 16;

age++;

age--;

age++;

}

____ work to prevent an attack by blocking viruses, malformed packets, and other threats from getting into the company network.

Answers

Intrusion prevention systems work to prevent an attack by blocking viruses, malformed packets, and other threats from getting into the company network.

An intrusion prevention system abbreviated as IPS is a tool that plays a major role in the network security of an organization. This system continuously scans for any activity or viruses that may harm the company network and provides measures to prevent such types of activity.

It is more useful compared to the intrusion detection system as it performs the function of both detecting and blocking the threat to the network while the intrusion detection system can only disclose the threat.

Mostly, the intrusion prevention system works by detecting the threat and reports to the administrator to prevent any harmful activity or automatically blocks the source of threatful activity, or transforms the firewall to stop such further attacks hereafter.

To learn more about intrusion prevention systems, click here:

https://brainly.com/question/18883163

#SPJ4

Indirect attacks originate from a compromised system or resource that is malfunctioning or working under the control of a threat. _________________________

Answers

Indirect attacks originate from a compromised system or resource that is malfunctioning or working under the control of a threat is a true statement.

What is compromised system in networking?

A network or system that is known to be compromised is one when  there has been a breach in regards to confidentiality, as well as integrity or presence of its infrastructure or components in any type.

Therefore, based on the above, one can say that Indirect attacks originate from a compromised system or resource that is malfunctioning or working under the control of a threat is a true statement.

Learn more about compromised system from

https://brainly.com/question/28482553

#SPJ1

Indirect attacks originate from a compromised system or resource that is malfunctioning or working under the control of a threat. true or false.

A/an _______________ may be required for a position such as information technology consultant, information systems manager, or information security analyst.

Answers

A certification may be required for a position such as information technology consultant, information systems manager, or information security analyst.

What is certification?

Certification can be defined as a process which describes the formal recognition that is given to a graduate student for the successful completion of an academic programme, course of study such as:

FinanceEducationInformation technology consultant.Information systems manager.Information security analyst.Engineering

In this context, we can reasonably infer and logically deduce that a certification may be required for a position such as information technology consultant, information systems manager, or information security analyst.

Read more on certification here: https://brainly.com/question/13412233

#SPJ1

A computer can be a flexible and powerful tool by using what type of software?

Answers

A computer can be a flexible and powerful tool by using an application software.

What is an application software?

Application software is known to be a type of computer program that is known to often carry out a particular task such as personal, educational, as well as  business function.

Note that all application is set up so that they can be able to assist end-users in carrying out a lot of tasks that are linked to productivity, creativity, etc.

Therefore, A computer can be a flexible and powerful tool by using an application software.

Learn more about application software from

https://brainly.com/question/26954052

#SPJ1

1. Why is it important to learn about cybersecurity?
2. What are you most excited to learn more about in the world of
cybersecurity?

Answers

1. To protect your device from getting bugged.

an attack that takes place before the security community and/or software developers become aware of and fix a security vulnerability is called a zero-day attack.

Answers

An attack that takes place before the security community and/or software developers become aware of and fix a security vulnerability is called a zero-day attack is a true statement.

What is security?

Security can be defined as the way where a secure environment or the surrounding are being present, this is basically of danger or threat place. It reduces or a lot of insecurities as well as provides safety to the people are an individual group

A zero-day attack is what happens when a hacker successfully exploits a weakness while software engineers can identify a remedy.

Due to their capacity to present as any type of more general software weakness, zero-day bugs can start taking on nearly any shape which may result in great damage and loss.

Learn more about security, here:

https://brainly.com/question/28070333

#SPJ1

you work as the it administrator for a small corporate network. to accommodate specific network communication needs for an upcoming project, you need to upgrade the network connection's speed for the windows workstation located in the executive office.

Answers

We need to upgrade the network connection's speed for the windows workstation located in the executive office for that we will Install the network interface card and configure the Ethernet cable connection between the computer and the LAN network.

The connecting and communication of computer equipment is the function of the computer networking system. An adapter known as a network interface card allows the computer to connect to a network (NIC). The NIC's operations are managed by the operating system.

The speed and port state of the NIC are configured, and it is linked to the LAN using a straight through cable.

To check for LAN network connectivity on the PC, use the ipconfig/all and netstat commands. Another option is to use the ping command.

Launch Start. To open the console, perform a search for "Command Prompt," then select the top result. To check the connection speeds of all the Ethernet and Wi-Fi adapters, use the command after typing it: where netEnabled=true in wmic nic get name and speed.

Learn more about workstation:

https://brainly.com/question/17121112

#SPJ4

which of the following should go in the place of /* missing line */ to get this input from the user and store it in the variable favoritemeal?

Answers

favoriteMeal = scan.nextLine(); should be used to get an input from the user and store it in the variable favoriteMeal.

What is a variable?

A variable can be defined as a specific name which refers to a location in computer memory and it is typically used for storing a value such as an integer.

This ultimately implies that, a variable refers to a named location that is used to store data in the memory of a computer. Also, it is helpful to think of variables as a container which holds data that can be changed in the future.

In Computer technology, there are two main methods for passing variables to functions and these include the following:

Pass-by-value.Pass-by-reference.

Based on the given lines of code, favoriteMeal = scan.nextLine(); should be used to get an input from the user and store it in the variable favoriteMeal.

Read more on variable here: brainly.com/question/12978415

#SPJ1

Complete Question:

The following code is to be used to get the favorite meal from the user.

Scanner scan = new Scanner(System.in);

String favoriteMeal;

System.out.println("Enter favorite meal");

/ missing line /

Which of the following should go in the place of /* missing line */ to get this input from the user and store it in the variable favoriteMeal?

A) Identify and describe your computer or laptop’s hardware, software, and operating system. B) Describe the installation process for printers and scanners. Identify possible malfunctions relating to this installation process. C) Research and describe how you would ensure computer and Internet safety. Describe how you would use ergonomics to minimize the detrimental effects of excess computer usage on your body.

Answers

My computer hardware is Lenovo Ideapad3; to install a printer we must connect it and follow the steps of the automatic software; protection on the pc is guaranteed by using an antivirus; injuries are prevented by taking active breaks and using ergonomic tools.

What is the hardware, software and operating system of my computer?

To know the specific data of our computer we must follow the following steps (Windows):

Hit the WIN+R keys on your computer to open RunA window will open at the bottom left of your monitorType Dxdiag in that windowPress Enter or OK to run it

The first thing that Windows will do is ask us if we want to go ahead and tell us that our computer may be connected to the Internet. Afterwards, it will take a few seconds to scan everything on it. After those seconds, we will be shown a window with the diagnostic tool in which we find a lot of information organized by tabs. In my case the hardware of my computer is:

Lenovo Ideapad 3.

How to install printers and scanners?

To install printers and scanners to our computer we can use different methods, one of them is to insert the CD that comes with our printer; the other process is to connect the device via cable or bluetooth and follow the steps in the automatic installation.

In general, this process is easy and usually has no errors. However, when it has errors and does not work correctly, we must uninstall and reinstall the software.

How to ensure safety when using the computer?

To prevent the security of our computer from being circumvented by a hacker, we must have an updated antivirus and periodically scan our computer to avoid malicious programs or files that harm our security.

How to avoid damage from overuse?

To avoid diseases, injuries or damage to our body due to excessive use of the computer, we must carry out the following actions:

Use filter lenses to protect our eyes.Use an ergonomic mouse and keyboard.Take active breaks during our work on the computer.Have a correct position while using our computer.

Learn more about computers in: https://brainly.com/question/21080395

#SPJ1

write the header file (.h file) of a class acc2 containing: a data member named sum of type int. a constructor accepting no parameters. a function named getsum that accepts no parameters and returns an int.

Answers

// acc2.h

// c++ class header for acc2
class acc2
{
public:

// getsum()
int getsum()
{
return sum_;
}

// Default constructor
acc2()
{
sum_ = 0;
}

private:
int sum_;
}

operating systems are the programs that allow you to edit documents, make presentations and create spreadsheets.

Answers

An operating systems are the programs that allow you to edit documents, make presentations and create spreadsheets is a false statement.

What are operating systems?

An operating system is known to be one of the most vital software that runs on a computer and it is one that helps you  manages the computer's memory as well as processes.

Note therefore, An operating systems are the programs that allow you to edit documents, make presentations and create spreadsheets is a false statement because the Word processing software does that work.

Learn more about operating systems  from

https://brainly.com/question/22811693

#SPJ1

operating systems are the programs that allow you to edit documents, make presentations and create spreadsheets.True or false

Linux a user typed in the command pwd and saw the output: /home/jim/sales/pending. how could that user navigate to the /home/jim directory?

Answers

Linux a user typed in the command pwd and saw the output: /home/jim/sales/pending. the way in which that user can navigate to the /home/jim directory? is cd ../..

What is a Directory?

This refers to the special type of file that has only the information needed to access files.

Hence, we can see that Linux a user typed in the command pwd and saw the output: /home/jim/sales/pending. the way in which that user can navigate to the /home/jim directory? is cd ../..

This would take him back to the root directory which is home in the Jim directory and he can start viewing the files in their parent-child order.

Read more about directories here:

https://brainly.com/question/28391587

#SPJ1

Which of the following is a responsibility of the hardware? (1 point)
O processing
O runtime prioritization
O memory allocation
O managing hardware

Answers

The option that is a responsibility of the hardware is option a: processing​.

What is a hardware in a computer?

Hardware is known to be a term that is seen as  the computer's tangible parts or its delivery systems.

It is one that helps in processing as well as saves or store and run the written instructions that is known to be given  by the software.

Therefore, based on the above, The option that is a responsibility of the hardware is option a: processing​.

Learn more about hardware  from

https://brainly.com/question/24370161

#SPJ1

freddy wants to take up a few platform-specific courses for his new job. which courses can he take? to be able to perform for programming languages specific to a certain platform, freddy can take courses such as and .

Answers

Freddy can enrol in classes in HTML5 and CSS3 to learn how to function for programming languages particular to a particular platform.

The term "CSS 3" refers to Cascading Style Sheets revision 3, which is a style sheet programming language created for describing and enhancing the presentation of a webpage (document) expressed in a markup language like:

XMLHTML

What is it HTML 5?

The term HTML 5, which stands for hypertext markup language revision 5, can be referred to as a standard computer language used for creating and presenting websites or webpages.

Freddy can attend classes in HTML5 and CSS3 to learn how to use platform-specific programming languages to do a number of things.

Learn more about programming languages:

https://brainly.com/question/27905377

#SPJ4

Other Questions
How does the Bohr shift help deliver O to very active tissues? explain the progression of ideas from a variety of scientists that led to the current understanding of atomic theory. (1 point) Is it necessary to have sugar in our body? In a statistics test, the class average is 76 with a standard deviation of 8. emmy is told that the z-score of her exam score is -1.50. what was emmy's actual score on the exam? HELP I WILL GIVE BRAINLIEST!!!! 14. Select all the situations that could be represented by the expression 40. (-18).A hot air balloon descends 18 inches per a second for 40 seconds.A hot air balloon ascends 40 inches per a second for 18 seconds.Trey withdraws $18 from his checking account once a week for 40 weeks.Suzanne deposits $18 into her savings account once a week for 40 weeks.Morty withdraws $40 from his checking account once a month for 18 months. Nora has a points card for a movie theater. She receives 20 rewards points just for signing up. She earns 12.5 points for each visit to the movie theater. She needs at least 155 points for a free movie ticket. What is the least number of visits she needs to make in order to earn a free movie ticket? What is the length of RT? A 5units B 7units C 8units D 9units Can someone tell me who this is? If you have 140. ml of a 0.100 m mops buffer at ph 7.20 and you add 4.00 ml of 1.00 m hcl, what will be the new ph? (the pka of mops is 7.20.) The fear of physical harm, a large financial outlay required to buy the product, fear of poor product performance, and fear of disapproval from friends can all contribute to (3.85 x 103) - (1.4 x 102) In scientific notation I need ASAP plssIll give points 2. In at least 4 sentences, describe some of the similarities and differences between the colonies. How do you think these similarities and differences affected the colonies ability to be unified throughout history? Do you think the differences between regions and colonies came into play im the future? If so, in what ways? -4d -3 + 5d4 - 8d4 + 7 the slave code of 1705 was created by the house of burgesses, and it incorporated legislation from the previous century on slavery. Episode 4: Empire of liberty the men who built America frontiersman CHAPTER I, an excerptFrom Sir Gawain and the Green KnightThe coming of the Green KnightNow I will say no more of the service, but that ye may know there was no lack, for there drew near a venture that the folk might well have left their labour to gaze upon. As the sound of the music ceased, and the first course had been fitly served, there came in at the hall door one terrible to behold, of stature greater than any on earth; from neck to loin so strong and thickly made, and with limbs so long and so great that he seemed even as a giant. And yet he was but a man, only the mightiest that might mount a steed; broad of chest and shoulders and slender of waist, and all his features of like fashion; but men marvelled much at his colour, for he rode even as a knight, yet was green all over.The fashion of the knightFor he was clad all in green, with a straight coat, and a mantle above; all decked and lined with fur was the cloth and the hood that was thrown back from his locks and lay on his shoulders. Hose had he of the same green, and spurs of bright gold with silken fastenings richly worked; and all his vesture was verily green. Around his waist and his saddle were bands with fair stones set upon silken work, 'twere too long to tell of all the trifles that were embroidered thereonbirds and insects in gay gauds of green and gold.Which line most clearly shows the conflict in this text? And yet he was but a man, only the mightiest that might mount a steed; broad of chest and shoulders and slender of waist, As the sound of the music ceased, and the first course had been fitly served, there came in at the hall door one terrible to behold, For he was clad all in green, with a straight coat, and a mantle above; all decked and lined with fur was the cloth and the hood that was thrown back from his locks and lay on his shoulders. Hose had he of the same green, and spurs of bright gold with silken fastenings richly worked; and all his vesture was verily green. The nurse caring for a 2-year-old near-drowning victim monitors for what possible complication? Write an import statement that imports just the functions sqrt and log from the math module. water main valves should be located: select one: a. at infrequent intervals in a grid system. b. so that they correspond with landmarks such as intersections. c. so that they correspond with areas most likely to fail in the system. d. at frequent intervals in a grid system. Which term describes a geometric statement that is assumed to be true without proof?