what sound played when logging on to aol instant messenger?

Answers

Answer 1

Answer:you know buddy

Explanation:


Related Questions

An object with a density of 871.0 kg/m3 and a mass of 1255.0 kg is thrown into the ocean. Find the volume that sticks out of the water.

Answers

The object can only stick out of the water because of the Archimede's principle.

What is the Archimede's principle?

Archimedes' principle states that the buoyant force acts vertically and upwards on bodies totally or partially immersed in fluids, moreover, according to this principle, such force has the same value as the weight of the fluid, displaced by the insertion of the body.

With that being said, following the Archimede's principle:

Weight of water displaced by floating object = Weight of object; so

Volume of water displaced = Part below water line; changing values and using the pseawater = [tex]1024kg/m^{3}[/tex]:

[tex]\frac{m}{\rho} \\\\\frac{1255}{1024} = 1,2255859375m^{3}[/tex]

Volume of entire object = [tex]\frac{m}{\rho}[/tex]

[tex]\frac{1255}{871} = 1,4408725603m^{3}[/tex]

Volume that sticks out of the water: Volume of entire object - Volume of water displaced; so: 1,4408725603 - 1,2255859375 = 0,2152866228m3

See more about buoyancy at: brainly.com/question/19168433

#SPJ1

In linux, an ____ stores everything about a file, except for the filename and the file data.

Answers

In Linux, an inode or index node  stores everything about a file, except for the filename and the file data.

What is in an inode?

An inode is known to be often called  index node. This is known to be a  data structure that pertains to UNIX operating systems that has all the vital information that is regards to files that are found within a file system.

Not that if a file system is made in UNIX, a set amount of inodes is formed and Linux often uses  an index node (or inode) to save all the key or relevant information about a file.

Hence according to the above,In Linux, an inode or index node  stores everything about a file, except for the filename and the file data.

Learn more about Linux from

https://brainly.com/question/25480553

#SPJ1

You use a custom application that was developed in-house. On a periodic basis, the application writes or modifies several registry entries. You want to monitor these registry keys so that you can create a report that shows their corresponding settings over the next 5 days. What should you do

Answers

In the case above, the right thing that a person should do is to Configure a configuration data collector in the Performance Monitor.

What does a Performance Monitor do?

The Microsoft Windows is known to have a Performance Monitor and this is known to be a tool that  is one where the administrators often use to evaluate how programs functions on their computers influence the computer's performance.

Note that this tool is one that can be used in real time and therefore, In the case above, the right thing that a person should do is to Configure a configuration data collector in the Performance Monitor.

Learn more about custom application from

https://brainly.com/question/1393329

#SPJ1

When we determine the age of the universe using the Hubble Time, what important simplifying assumption goes into our calculations

Answers

The factor that is important in simplifying assumption that goes into our calculations is:

Option a. that the expansion of the universe has been happening at the same rate - neither speeding up or slowing down.What is Hubble time?

The Hubble time is  known to be a form of an estimate that is given to the age of the universe and it is one that is often based on the Hubble constant.

Note therefore, The factor that is important in simplifying assumption that goes into our calculations is:

Option a. that the expansion of the universe has been happening at the same rate - neither speeding up or slowing down.

See full question below

When we determine the age of the universe using the Hubble Time (1/H0), what important simplifying assumption goes into our calculations?

a. that the expansion of the universe has been happening at the same rate - neither speeding up or slowing down

b. that all the galaxies are moving away from us at exactly the same speed, no matter how far away they are

c. that the cosmological principle doesn't hold: the universe is not isotropic and homogeneous

d. that we have accounted correctly for the effects of dark energy e. that the universe is actually contracting instead of expanding

Learn more about assumption from

https://brainly.com/question/2875871

#SPJ1

If an algorithm created to help make hiring decisions is based on previous unfair decisions, then the algorithm may be

Answers

If an algorithm created to help make hiring decisions is based on previous unfair decisions, then the algorithm may be flawed.

What are algorithms being used for?

Algorithms are known to be tools that are made to help in calculation, data processing, and a kind of automated reasoning.

Hence, If an algorithm created to help make hiring decisions is based on previous unfair decisions, then the algorithm may be flawed.

Learn more about algorithm from

https://brainly.com/question/23282908

#SPJ1

Answer:

biased

Explanation:

Write the removeevens() method, which receives an array of integers as a parameter and returns a new array of integers containing only the odd numbers from the original array. the main program outputs values of the returned array.
hint: if the original array has even numbers, then the new array will be smaller in length than the original array and should have no blank element.
ex: if the array passed to the removeevens() method is [1, 2, 3, 4, 5, 6, 7, 8, 9], then the method returns and the program output is:
[1, 3, 5, 7, 9]
ex: if the array passed to the removeevens() method is [1, 9, 3], then the method returns and the program output is:
[1, 9, 3]
lab: remove all even numbers from an array
labprogram.java l.
1 import java.util.arrays;
2
3 public class labprogram {
4
5 public static int[] removeevens(int [] nums) {
6
7
8 }
9
10 public static void main(string[] args) {
11
12 int [] input {1,2,3,4,5,6,7,8,9};
13 int [] result = removeevens(input);
14
15 // helper method arrays.tostring() converts int[] to a string
16 system.out.println(arrays.tostring(result)); // should print [1, 3, 5, 7, 9]
17 }
18 }

Answers

Answer:

import java.util.*;

import java.util.Arrays;

public class LabProgram

{

// called function

public static int[] removeEvens(int [] nums)

{

// calculates the length of array

int len = nums.length;

int j=0;

// loop to keep count how many odd are there in array

for(int i=0;i<len;i++)

{

// condition for odd

if(nums[i]%2!=0)

{

// keeps count of odd

j++;

}

}

// declaration of array for odd nums

int newarray[] = new int[j];

j = 0;

// loop

for(int i=0;i<len;i++)

{

// condition for odd

if(nums[i]%2!=0)

{

// assigning odd number to new array

newarray[j] = nums[i];

// increment of j

j++;

}

}

// returning new array

return newarray;

}

// main program

public static void main(String[] args)

{

// array declaration

int [] input = {1,2,3,4,5,6,7,8,9};

// calling a function, passing the paramtere

int [] result = removeEvens(input);

//

System.out.println(Arrays.toString(result));

}

}

Explanation:

Write a while loop that adds 5 to userNum while userNum is less than 20, displaying the result after each addition. Ex: For userNum

Answers

Using the computational knowledge in JAVA it is possible to write a code that Write a while loop that adds 5 to userNum while userNum

Writting the code in JAVA:

// declaring variable userNum

var userNum = 5;

// variable ans to store all answers and print them in single line

// (as expected in sample output)

var ans = "";

// while loop, while userNum is <= 20

// (to get output 25 on screen, we need to run loop till less-than-equal)

while(userNum <= 20) {

 userNum += 5;

 ans += userNum + " ";

}

// displaying final output on console

console.log(ans);

See more about JAVA at brainly.com/question/12975450

#SPJ1

How do budget constraints, even for the largest game design companies, affect the development schedule for a game development team? If you were building the budget for a proposed game, where would you allocate the most money? Defend your decision, explaining why this stage of the design to the production process is supported with the largest percentage of budget funds. pls help

Answers

Budget constraints affect the development schedule for a game  as  its includes

Technical bugs or some forms of limitations. A game that has pre-existing Intellectual Property (IP). When there is Limited resources and others

What is  game development?

This is known to be the act of making games. Know that the feature listed above can affect:

The time for the release of the gameLegal issuesFinancial loss and others.

Hence, Budget constraints affect the development schedule for a game  as  its includes

Technical bugs or some forms of limitations. A game that has pre-existing Intellectual Property (IP). When there is Limited resources and others

Learn more about game development from

https://brainly.com/question/24564714

#SPJ1

What type of digital marketing is exemplified by a company rewriting the code for its website to contain more keywords, or by finding creative ways to place its URL in multiple spots on the web

Answers

A type of digital marketing that is exemplified by a company rewriting the code for its website to contain more keywords, or by finding creative ways to place its URL in multiple spots on the web is referred to as social media marketing.

What is digital marketing?

Digital marketing can be defined as a type of marketing technique which typically involves the process of developing promotional techniques and sales strategies through the use of multimedia resources and electronic devices, so as to enhance the sales of goods and services that meet the needs of the customers or end users.

In this context, we can infer and logically deduce that social media marketing refers to a type of digital marketing that is exemplified by a company rewriting the code for its website to contain more keywords, or by finding creative ways to place its URL in multiple spots on the web.

Read more on marketing here: https://brainly.com/question/27534262

#SPJ1

When using sftp to share files, what is encrypted in addition to the authentification information?.

Answers

In using SFTP to share files, the encryption in addition to the authentication information is seen in the user's email address.

What is authentication information?

Authentication Information is known to be that which tells about the usernames, passwords, electronic certificates, etc., that a one can use to know or be assured of a User's true identity.

Note that In using SFTP to share files, the encryption in addition to the authentication information is seen in the user's email address.

Learn more about email address from

https://brainly.com/question/24688558

#SPJ1

To set up scenarios, you need to first use ______ to set up a list, then ______ to set up the reference cell. Last you need to use ______ to set up the cells that display the output results from the scenario.

Answers

To set up scenarios, you need to first use Goal seek to set up a list, then data table  to set up the reference cell. Last you need to use  VLOOKUP to set up the cells that display the output results from the scenario.

What is a Goal Seek in Excel?

Microsoft Excel is known to have a goal seeking tool that is said to be built-in and it is one that gives room for the user to know the desired input value for any kind of  formula if the output value is said to be already known.

Hence, To set up scenarios, you need to first use Goal seek to set up a list, then data table  to set up the reference cell. Last you need to use  VLOOKUP to set up the cells that display the output results from the scenario.

See full question below

To set up scenarios, you need to first use to set up a list, then to set up the reference cell. Last you need to use to set up the cells that display the output results from the scenario. CHOOSE; VLOOKUP; data table Goal seek; data table; VLOOKUP Data validation; VLOOKUP; CHOOSE Data table; VLOOKUP;

Learn more about  VLOOKUP from

https://brainly.com/question/14042837

#SPJ1

Salesforce organizes your data into: A. Objects and records, like tabs and rows on a spreadsheet. B. Objects and fields, like columns on a spreadsheet. C. Fields and records, like different databases. D. Objects and spreadsheets, like columns in a database.

Answers

Salesforce organizes your data into option A. Objects and records, like tabs and rows on a spreadsheet.

How does Salesforce organize data?

Salesforce is known to be a tool that helps one to put together their your into objects and records and it is said to have standard objects that has been set up and ready for use.

Hence, Salesforce organizes your data into option A. Objects and records, like tabs and rows on a spreadsheet.

Learn more about Salesforce from

https://brainly.com/question/7452075

#SPJ1

Program ________ graphically present the detailed sequence of steps needed to solve a programming problem.
i. flowcharts
ii.pseudocode
iii. loops
iv. modules

Answers

Software program flowcharts graphically present the detailed sequence of steps needed to solve a programming problem.

What is a flowchart?

A flowchart is also referred to as flow diagram and it can be defined as a graphical representation of an algorithm for a work process or workflow.

This ultimately implies that, a flowchart make use of the following standard symbols to graphically represent the sequential steps that are needed to solve a programming problem and are typically associated with a system, work process or workflow i.e from the beginning (start) to the end (finish):

ArrowsRectangleDiamondOvalParallelogram

Read more on flowchart here: brainly.com/question/6532130

#SPJ1

Program flowchart graphically present the detailed sequence of steps needed to solve a programming problem.

What is Program flowchart?

The program flowchart can be regarded as the  data flow  which help to display the data flow while writing a program or algorithm.

This chart user to explain the process quickly  when dealing or  collaborating  with others, hence, Program flowchart graphically present the detailed sequence of steps needed to solve a programming problem.

Learn more about Program flowchart on:

https://brainly.com/question/24735155

#SPJ1

The _________ tag allows a web page to include interactive content, which the browser assumes to be javascript unless indicated otherwise.

Answers

The <script> tag allows a web page to include interactive content, which the browser assumes to be javascript unless indicated otherwise.

What is a script tag?

The <script> tag is known to be a tool that is often employed or used in regards of or to embed a client-side script (JavaScript).

Hence, The <script> tag allows a web page to include interactive content, which the browser assumes to be javascript unless indicated otherwise.

Learn more about tags from

https://brainly.com/question/13153211

#SPJ1

2023 murano’s available intelligent awd adjusts the ________ to help maintain cornering control.

Answers

2023 Murano's available intelligent awd adjusts the Torque delivered to the wheels to help maintain cornering control.

How does torque moves wheels?

The torque from the engine is known to be that tool that moves a car. A lot of torque can be transferred to the wheels in first gear and it is better than in fifth gear.

Hence, 2023 Murano's available intelligent awd adjusts the Torque delivered to the wheels to help maintain cornering control.

Learn more about cornering control from

https://brainly.com/question/17371984

#SPJ1

a uniform density sheet of metal is cut into a shape of an isosceles triangle, which is oriented with the base at the bottom and a corner at the top

Answers

The horizontal center of mass will be located at the horizontal center of mass will be located on the center line. This is further explained below.

What is Location?

Generally, a location or place that is inhabited, open for occupation or distinguished by some distinctive feature: situation The setting of the property contributes significantly to its overall allure.

In conclusion, The center line will serve as the location for the horizontal center of mass, which will be found at the same location as the center line.

Read more about Location

https://brainly.com/question/11718756

#SPJ1

Your computer's sound stops working after updating the driver. What should you do to recover from this problem with the least amount of administrative effort

Answers

The thing to do in order to recover from this problem with the least amount of administrative effort is to Reboot the computer into Safe Mode and use Device Manager to roll back the driver.

What is a Device Driver?

This refers to the computer program that is in charge of a particular type of device that controls a computer part.

Hence, we can see that based on the fact that the audio in the computer beings to malfunction after updating the device drivers, the best step to take is to Reboot the computer into Safe Mode and use Device Manager to roll back the driver.

Read more about device drivers here:

https://brainly.com/question/17151563

#SPJ1

What features should you present when demonstrating 2023 murano’s confident cornering?.

Answers

Answer:

features of muranos confident cornering 2022:-

-Intelligent All-Wheel Drive

-4-wheel independent suspension

-Electrically driven hydraulic power steering

Based on the automobile analysis, the features one should present when demonstrating 2023 Murano's confident cornering include "4-wheel independent suspension."

What is Cornering in a vehicle?

Cornering is a term that describes the extent of the force wielded on the vehicle's center of gravity.

Other features one should present when demonstrating 2023 Murano's confident cornering

Intelligent All-Wheel DriveElectrically driven hydraulic power steering

2023 Murano is a modern vehicle produced by Nissan Manufacturer. It comes with the latest design, swift navigation component, and easy-to-handle features.

For 2023, the Murano is seen to be having a lot of overdue makeovers and it is one that includes a feature of improvements such as revamp of the outside and interior.

Hence, in this case, it is concluded that the 2023 Murano is one of the latest vehicles to possess.

Learn more about the vehicle features here: brainly.com/question/17183497

#SPJ6

You would like to see only the last 15 lines of /home/user/log file on your linux machine. Which command line interface (cli) command would you use?

Answers

In Linux computer systems, "tail -n 15 /home/user/logfile" is a command line interface (cli) command that should be used to view only the last 15 lines of /home/user/log file.

What is a Linux command?

A Linux command can be defined as a software program that is designed and developed to run on the command line, in order to enable an administrator (end user) of a Linux network perform both basic and advanced tasks by entering a line of text.

In Linux computer systems or machines, a command line interface (cli) command that should be used by an administrator (end user) to view only the last 15 lines of /home/user/log file is "tail -n 15 /home/user/logfile."

In conclusion, the above command would reveal only the last 15 lines of /home/user/log file on a Linux computer system.

Read more on Linux commands here: brainly.com/question/25480553

#SPJ1

Frankie used the ps command to find the process id of an application that he needs to stop. What command-line tool should he use to stop the application based on its process id?

Answers

In the case above, the command-line tool should he use to stop the application based on its process id is e option

What is the use of ps command?

The ps command is known to be one that helps enables a person to be able to look at the status of any kind of active processes on a system, and also that of display technical information in regards to the processes.

Note that In the case above, the command-line tool should he use to stop the application based on its process id is e option

Learn more about command-line tool from

https://brainly.com/question/3737699

#SPJ1

Suppose you have an interface called ShakesHands with the following method listed in that interface: public void shakeHands(ShakesHands other); and three classes (Student, Teacher, Parent) all of which implement the ShakesHands interface, determine which of the following code fragments would compile:

Answers

The following exercise is about spotting which program or code fragment would compile and that which would not.

What is a code fragment?

A code fragment is a minor or irrelevant section of the source code (determined in relation to the functionality of the Work Product as a whole).

In order to provide a product that is functionally identical to the Work Product including such Code Fragments, the Service Provider will not mix Code Fragments.

What does it mean to compile?

When a piece of code is compiled, it signifies that it has been transformed into machine code or another lower-level form that allows the program to run.

Which fragments will compile?

ShakeHands x = new ShakeHands();

This won't compile because there was no instantiation of the Interfaces.

ShakeHands x = new Student();

Because this is a valid and legal statement, it will definitely compile.

Student x = new ShakeHands();

This will not compile. The reason is that Student and Teacher are two different objects. The only thing these two classes have in common is that they both implement the ShakeHands interface, but even then, unless Student and Teacher are parent/child classes, they cannot be paired up.

ShakeHands x;

x=new Student();

x=new Teacher();

x=new Parent();

All of the aforementioned claims are true since they are all lawful. Since the ShakeHands interface is implemented by the Student, Teacher, and Parent classes, any child class's objects may be initialized using the ShakeHands class reference or object.

It is to be noted that  can access only shakeHands() method defined in ShakeHands interface.

Learn more about compiling at;
https://brainly.com/question/25823499
#SPJ1

True or false: A many-to-many relationship between classes A and B (where the maximum multiplicity on both sides of the association is *) is implemented by posting foreign keys in both A and B.

Answers

A many-to-many relationship between classes A and B (where the maximum multiplicity on both sides of the association is *) is implemented by posting foreign keys in both A and B is a false statement.

What is a many-to-many relationship?

A many-to-many relationship is known to be one that exist if one or more items that is found in one table can have an association to one or more items in another given table.

Hence,  A many-to-many relationship between classes A and B (where the maximum multiplicity on both sides of the association is *) is implemented by posting foreign keys in both A and B is a false statement.

Learn more about foreign keys from

https://brainly.com/question/17465483

#SPJ1

In order for css to work with HTML5 elements, you need to use a javascript HTML5 shiv or shim. What is this placed in?

Answers

For CSS to work with HTML5 elements, the command that is placed in the above CSS is given in the image attached.

What are the HTML5 elements?

The Tags (Elements) are:

<article> - this stands for  an independent piece of issue of a document, such as a blog entry and others.

<aside > - this stands for  a piece of  writing or a content that is said to be in a little way or only slightly linked to the rest of the page.

Does HTML5 use JavaScript?

HTML5 is known to be one of the element that is often used to make the basic structure and depict content in WWW, but Javascript is known to be a vital aspect of HTML5.

Therefore, For CSS to work with HTML5 elements, the command that is placed in the above CSS is given in the image attached.

Learn more about HTML5 elements from

https://brainly.com/question/14036175

#SPJ1

If you're connected to a switch and your NIC is in promiscuous mode, what traffic would you be able to capture

Answers

If you're connected to a switch and your NIC is in promiscuous mode, the traffic would you be able to capture would be broadcast traffic.

What is Broadcast traffic?

Broadcast traffic is used to send packets to all hosts on the network using the network's broadcast address. With a broadcast, the packet contains a destination IP address that only has numbers one (1s) in the host portion. This means that all hosts on that local network (broadcast domain) will receive and verify the packet. Many network protocols, such as DHCP, use broadcasts. When a host receives a packet sent to the network's broadcast address, the host processes the packet as a packet addressed to its unicast address.

Also, there are two types of broadcasts: directed broadcast and limited broadcast.

See more about computing at: brainly.com/question/10873104

#SPJ1

Canvas allows instructors to utilize powerful edtech apps to create dynamic learning environments for their students. In canvas, apps are identified as.

Answers

In canvas, apps are identified as:

LTIs External Tools

What are Canvas External Tools?

An External Tool is one that helps Canvas users along with the use of LTI learning resources and activities gotten from other websites and academic technologies.

Note that Canvas is known to have a unique features that are said to be available so that one can link to courses such as external tools.

Hence,  In canvas, apps are identified as:

LTIs External Tools

Learn more about Canvas from

https://brainly.com/question/5527678

#SPJ1

Multiple Select
It is important to be polite to people when you are online because
it reflects your level of professionalism
it helps build a good reputation
you can be fined if you are impolite
it says a lot about your character
you must avoid getting into trouble
Select 3 options.

Answers

It is important to be polite to people when you are online because

it reflects your level of professionalism.it helps build a good reputation.it says a lot about your character.

What is online presence?

Online presence is said to be the numbers or all activity and content that an individual or a business entails under their name in regards to the internet.

Note that It is important to be polite to people when you are online because

it reflects your level of professionalism.it helps build a good reputation.it says a lot about your character.

Learn more about Online presence from

https://brainly.com/question/27830306

#SPJ1

Why are digital computers more popular these days?​

Answers

Answer:

The small size of the transistor, its greater reliability, and its relatively low power consumption made it vastly superior to the tube.

Because people can easily use it to browse, read and play games. It is also a way for others to communicate

Basil was reading about a new attack that forces the system to abandon a higher cryptographic security mode of operation and instead fall back to an older and less secure mode. What type of attack is this

Answers

Since Basil was reading about a new attack that forces the system to abandon a higher cryptographic security mode of operation and the kind of attack is known to be Downgrade attack.

What is downgrade security attack?

A downgrade attack is known  to be a kind of of cyber attack that is made up of the fact that an attacker is known to often forces a network channel to make a switch to a kind of an unprotected or one that is said to be less secure data transmission standard.

Note also that the  Downgrading of a given protocol version is said to be a key element of  a type of a  man-in-the-middle attacks, and it is known to be one that is often used to take or hijack encrypted traffic.

Hence, Since Basil was reading about a new attack that forces the system to abandon a higher cryptographic security mode of operation and the kind of attack is known to be Downgrade attack

Learn more about Downgrade attack from

https://brainly.com/question/24304791

#SPJ1

Question 3 options: Abstractions in a BNF description that can have two or more distinct definitions, representing two or more possible syntactic forms in the language.

Answers

Abstractions in a BNF description that can have two or more distinct definitions, representing two or more possible syntactic forms in the language and this is known to be  Nonterminal symbols.

What are these symbols about?

Nonterminal symbols are known to be a kind of symbols that one can be able to replaced.

Note that they are often called simply syntactic variables and as such,  Abstractions in a BNF description that can have two or more distinct definitions, representing two or more possible syntactic forms in the language and this is known to be  Nonterminal symbols.

Learn more about Abstractions from

https://brainly.com/question/7994244

#SPJ1

Create a conditional expression that evaluates to string negative if user_val is less than 0, and non-negative otherwise.

Answers

Answer: I am supposed to write a few lines of code to create a conditional expression (ternary operation) that evaluates to string "negative" if user_val is less than 0 and "non-negative" if 0 or greater than 0.

The code I currently have prints "negative" when the number is less than zero but when a number 0 or greater is assigned to user_val it doesn't print "non-negative."

Other Questions
let f(x, y) = 4ex y. find the equation for the tangent plane to the graph of f at the point (2, 2). The difference of the two numbers is 18. The sum is 84 what is the larger number? what is the smaller number allow the user to issue commands by selecting icons, buttons, menu items, and other objectstypically with a mouse, pen, or finger ropean Colonies in Africa and AsiaQuestion 1 of 10What was true about the British approach to colonialism?OA. Britain wanted colonists to know how to govern themselves.OB. Britain encouraged colonists speak their native languages.OC. Britain expected that colonies would always remain under itscontrol.OD. Britain used ideas about race to encourage their colonies tobecome independent. "An integral part of all healthy societies"Causes members to connect, close ranks Prompts members to organize against future deviance Clarifies beliefs and expectations of group Teaches norms by providing examples of deviance Acts as safety valve, inhibiting greater deviance The position of a particle for t > 0 is given by r (t) = (3.0t 2 i ^ 7.0t 3 j ^ 5.0t 2 k ^ ) m. (a) What is the velocity as a function of time? (b) What is the acceleration as a function of time? (c) What is the particles velocity at t = 2.0 s? (d) What is its speed at t = 1.0 s and t = 3.0 s? (e) What is the average velocity between t = 1.0 s and t = 2.0 s? Based on the figure, blue cones maximally absorb light of what wavelength? Green Red Relative absorbance Wavelength of light (nom) A. 750 nm B. 650 nm C. 550 nm D.450 nm who won the battle of bull run? describe the roles that rose greenhow and stone wall jackson played in the vitory Which of the following is the best evidence that social interaction is preprogrammed in humans and does not need to be learned? 13.what are the three purchase situations commonly encountered by organizations? how do organizations typically respond to each situation? Given the following factor notation what value with this generate F = A(F/A,i,n) a. The Annuity of a Future b. none of these C. The Future of an Annuity Present d. The Future of a Present NO LINKS!!!! URGENT HELP PLEASE!!!!!Find the area of ABC5. B= 141, a = 7, c = 86. C=70, a=30, b= 247. A = 100, b = 20, c = 25 stabilizing commodity prices around long-term trends tends to benefit exporters at the expense of importers in markets characterized by: FILL IN THE BLANK a is referring to the ______. (1 point) trapezius frontalis gracilis triceps At Chairs and More, assemblers are paid according to the following differential piece rate scale: 125 chairs in a week, $10 each; 2640 chairs, $13 each; and $17.50 each for every chair over 40. Salina Grant assembled 47 chairs in one week. Find her gross pay. You plan a trip that involves a 40-mile bus ride and a train ride. The entire trip is 140 miles. The time (in hours) the bus travels is y1=40x, where x is the average speed (in miles per hour) of the bus. The time (in hours) the train travels is y2=100x+30. Write a simplified model in factored form that shows the total time y of the trip in terms of x.y=____ of the following, the strongest relationship exists between childhood obesity and: explain knowledge management and its primary benefits. Sylvan drove 128. 6 km each day for 8 days. He drove 44. 3 km each day for 12 days. What was the total distance Sylvan drove resonance structures contribute to the stability of the given carbocation. follow the directions to complete the resonance structure drawn. Add one curved arrow to show the movement of an electron pair that results in the positive charge moving to the 1-position of the ring. Draw two double bonds to complete the resonance structure that has a positive charge at the 1-position of the ring. H H 1 BrH BrH Q2 Q Q2 Q