What is Naptha used for?

Answers

Answer 1

Answer:

Naphtha is used to dilute heavy crude oil to reduce its viscosity and enable/facilitate transport; undiluted heavy crude cannot normally be transported by pipeline, and may also be difficult to pump onto oil tankers. Other common dilutants include natural-gas condensate, and light crude.

Answer 2

Answer:

Naphtha is used for laundry soaps and clearing fluids

High Hopes^^

Barry-


Related Questions

How would an assignee enter details, such as mileage and billing information, for a task?

Create a new task, and enter the details.
Open the status report, and enter the details.
In the main task window, click the Details button.
Within the assigned task window, scroll to the bottom.

Answers

Answer:

It's C

Explanation:

On edg

Answer:

C is correct

Explanation:

I got it on edg

Brian needs to assign a macro to a button on the ribbon. Where should he go to achieve this goal?
Record Macro dialog box
Macros dialog box
Insert tab, Insert Macro icon
Customize the Ribbon area of the Word Options dialog box

Answers

Answer: A. Record Macro dialog box.

Explanation:

Answer: a

Explanation:

Finally, Lee wants to modify the table he linked to his presentation. How should he begin?

Highlight the table.
Click the table once.
Double-click the table.
Launch the Excel application.

Answers

Answer:

C. double-clike the table

Explanation:

Edg

Answer:

c

Explanation:

In this lab you are asked to declare two variables of type integer: userNum and x. The user should input should be stored using scanf statements. Then you are asked to divide the value for userNum by x three times(three different operations). Each time you do the division, assign the value to userNum overwriting the previous value and print it out using a print statement. Do this three times. In this case there is only one new line print statement at the end.
#include
int main(void) {
int x;
int userNum;
scanf("%d %d" , &userNum, &x);
userNum = (double)userNum / x;
printf("%d " , userNum);
userNum = (double)userNum / x;
printf("%d " , userNum);
userNum = (double)userNum / (double)x;
printf("%lf\n" , (double)userNum);
return 0;
}
my input is 100 2
my output is 50 25 12.000
8 months ago

Answers

Answer:

See Explanation

Explanation:

Your program is correct and it follows the correct sequence; however, the reason you keep getting integer result is because the question requires that you declare both variables as integer.

The only modification required in your program is to change change #include to #include <stdio.h> for the program to be free of error.

Please answer this please solve it

Answers

Answer:

If you still can't figure it out look this up

nvcc cafe problem

Explanation:

The CPU is located on what part of the computer?

the motherboard

the system bus

the random access memory

the hard drive

Answers

Answer:

the motherboard

Explanation:

The answer for this question is the first one.

Finally, Su uses the last slide of her presentation as a summary slide. She wants to make sure the text she types automatically fits into the text box without changing the text box.

Which tool can Su use to accomplish this task?

Under which heading is the autofit feature found?

Which option should Su choose?

Answers

Answer:

Format Shape pane

Text Options

Shrink text on overflow

Explanation:

Answer:

Format Shape pane

Text Options

Shrink text on overflow

Explanation:

100%

easy points
Cats or dogs? :D

Answers

Cats are better than dogs

Which IEEE standards define Wi-Fi technology?

network standards

802.11 standards

111.82 standards

fidelity standards

Answers

Answer:

802.11 standards

the answer is:

b. 802.11 standards

Write both an iterative and recursive solution for the factorial
problem.

Answers

Answer:

Explanation:

Recursive:

C++ program to find factorial of given number  

#include <iostream>  

using namespace std;  

unsigned int factorial(unsigned int n)  

{  

   if (n == 0)  

       return 1;  

   return n * factorial(n - 1);  

}  

 

// Driver code  

int main()  

{  

   int num = 5;  

   cout << "Factorial of "

        << num << " is " << factorial(num) << endl;  

   return 0;

Iterative:

// C++ program for factorial of a number  

#include <iostream>  

using namespace std;  

 

unsigned int factorial(unsigned int n)  

{  

   int res = 1, i;  

   for (i = 2; i <= n; i++)  

       res *= i;  

   return res;  

}  

 

// Driver code  

int main()  

{  

   int num = 5;  

   cout << "Factorial of "

        << num << " is "

        << factorial(num) << endl;  

   return 0;  

}

After modifying a numbered list in her presentation, Su notices the numbers and the text are too close to each other. She knows she can solve this issue by using the hanging indent marker. Unfortunately, the ruler is not visible in her PowerPoint workspace.

Which tab and command group should she use to access the ruler? (View, Show or Insert, Add-ins or Home, Paragraph)
After selecting the numbered list, in which direction should she drag the hanging indent marker to increase the space between the numbers and the text? (upward or downward or to the left or to the right)

Answers

Answer:

1. View, show

2. to the right

Explanation:

On edg

Answer:

1) View, Show

2) to the right

Explanation:

Bluetooth's pan are also known as______.​

Answers

Answer:

personal area network..??

Explanation:

Gloria is adding footers to a PowerPoint template for students to use in a literature class. Each student must choose an author and make a presentation about their life and work. She wants the first slide in each presentation to show only the author’s name and photo. On subsequent slides, she wants to include a footer with a date and time that changes depending on the actual date of each presentation.

To insert the footer according to her plan, what must Gloria click in the Header & Footer dialog box?

Fixed
Preview
Slide number
Don’t show on title slide

Answers

Answer:

Its D

Explanation:

On edg

Answer: don’t show on title slide

Explanation:

Write your code to define and use two functions. The Get User Values function reads in num Values integers from the input and assigns to user Values. The Output Ints Less Than Or Equal To Threshold function outputs all integers in user Values that are less than or equal to maxVal. num Values indicates the number of integers in user Values. void Get User Values(int user Values[], int num Values) void Output Ints Less Than Or Equal To Threshold (int user Values[], int maxVal, int num Values)

Answers

Answer:

#include <iostream>

#include <vector>

using namespace std;

/* Define your function here */

vector<int> GetUserValues(vector<int>& userValues, int numValues) {

  int tmp = 0;

  vector<int> newVec;

 

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

     cin >> tmp;

     newVec.push_back(tmp);

     

  }

 

  return newVec;

}

void OutputIntsLessThanOrEqualToThreshold(vector<int> userValues, int upperThreshold) {

  for (int i = 0; i < userValues.size(); ++i) {

     if(userValues.at(i) < upperThreshold) {

          cout << userValues.at(i) << " ";

     }

  }

 

  cout << endl;

}

int main() {

  vector<int> userValues;

  int upperThreshold;

  int numValues;

 

  cin >> numValues;

  userValues = GetUserValues(userValues, numValues);

  cin >> upperThreshold;

  OutputIntsLessThanOrEqualToThreshold(userValues, upperThreshold);

  return 0;

}

Explanation:

Perhaps their is a better way to code this, but I couldn't figure out what to do with the pointer in the first function.

Steven wrote an algorithm for his coding class that explains how he makes a cake. Which is the correct sequence of steps that he used?

Mix the ingredients, put into the oven, preheat the oven
Preheat the oven, mix the ingredients, put into oven
Preheat the oven, put into the oven, mix the ingredients
Put into the oven, mix the ingredients, preheat the oven


WILL GIVE ALOT OF POINTS "29" TOTAL

Answers

Answer:

Preheat the oven, mix the ingredients, put into oven.

Answer:

Preheat oven, mix the ingredients, put into oven

Explanation:

basically its B

:)

What is the name of the file in which this
program is stored: public class myProgram
A. myProgram.class
B. myProgram.java
C. myProgram.jgrasp
D. myProgram.doc

Answers

Answer:

B

Explanation:

i’m an information technology  student and as I remember we used this  name

Please help I upped the points and please don't answer if you don't have the answer..

3. Describe two of your long-term financial goals, and explain why these goals are important to you. List three steps that might help you accomplish this goal. (4-6 sentences. 2.0 points)

4. Describe and example of common financial resource, and example, and a debt. These can be examples from your own life or from other people you know or can imagine. (3-6 sentences. 3.0 points)

Answers

Answer:

3. Paying for my daughter to attend college and building a life outside of struggle. These goals must be accomplished by me finishing school, going onto college and maybe even starting my own business. I must set an appropriate example for my daughter to learn from someone who she believes in. Starting a family business to pass down to generations will be an excellent way to start financially planning now ahead of time.

4. Living in a family of mines, common financial resource is either government assisted or public security.An expense that I cannot escape now is the caring for of my daughter which will vary as she get older. Lastly a debt would be the over spending of credit cards with no money to pay it back as the interest rates climb.

Explanation:

RAM
Clear sel
19. Which computer memory is used for storing programs and data
currently being processed by the CPU?
Mass memory
RAM
O Neo-volatile memory

Answers

Answer:

The answer to this question is given below in the explanation section

Explanation:

The correct answer is RAM.

RAM is used for storing programs and data currently being processed by the CPU.  So, the data in the RAM, can be easily accessible and processed by the CPU more fastly.

While Mass memory and neo volatile memory is not correct options. because these types of memory can stores a large amount of data but CPU fetch data from these memories into RAM. and, RAM can only be used by the CPU when performing operations.

Which human job is most similar to the role of a producer

Answers

Answer: Directors

Explanation:  directors create motion pictures, television shows, live theater, commercials, and other performing arts productions. directors work under a lot of pressure, and many are under stress to finish their work on time.  Work hours for producers and directors can be long and irregular.

If you are wanting to change programs, when do you need to make this request?
a.To change programs, you must contact your advisor or counselor and complete the change of program application during an open application window.
b.You can change at any time; just email your advisor regarding the change.
c.You can never change programs.
d.You do not need to notify anyone. You just need to start taking courses for the desired program.

Answers

Answer:

If your discussing colleges and degrees, you cant take courses your not autorized to take.

So if you have one major and wish to change to another then you need to discuss with a student advisor or counseler so they can make the changes. They will also discuss which classes are necessary for your program of choosing, making sure all your requirements are completed.

Explanation:

Which filter allows you to impart a stamping or raising effect in an image?

A. Stylize filter
B. Noise filter
C. Sharpen filter
D. Blur filter
E. Texture filter

Answers

Answer:

A. Stylize filter

Explanation:

I took the test on edmentum your welcome.

Answer:

Is B because noisse feltrr✔️

You are allowed to use up to 5 images from one artist or photographer without
violating Copyright laws

Answers

If it’s a true or false question, then I think it’s false because I’m pretty sure you have to give credit.

What output is produced by
this code?
System.out.print("Computing\nisInfun");
A. Computing is fun
B. Computing\nis\nfun
C.
Computing
is
fun
D. This code will not produce any output, it contains an error.

Answers

Answer:

The answer to this question is given below in the explanation section. the correct option is C.

Explanation:

This is Java code statement:

System.out.print("Computing\nisInfun");

The output of this code statement is

Computing

isInfun

However, it is noted that the C option is not written correctly, but it is guessed that it will match to option C.

This Java code statement first prints "Computing" and then on the next line it will print "isInfun" because after the word "Computing" there is a line terminator i.e. \n. when \n will appear, the compiler prints the remaining text in the statement on the next line.

Kim frequently saves her PowerPoint files in a different format. So, she decides to add a command for this action to the Quick Access Toolbar. Complete the steps to follow for this task.

1. Select a drop-down menu at the top of the screen.

2. Choose
from the Customize Quick Access Toolbar list.

3. A Quick Access Toolbar dialog box opens.

4. In the
section, select
.

5. Choose Save As Other Format.

6. Click the
button, and click OK.

Answers

Answer:

More Commands, Choose Commands from, All commands, Add

Explanation:

Correct on Edg

More Commands, Choose Commands from, All commands.

What is Commands?

One form of statement that tells someone what to do is a command. Additional sentence types include inquiries, exclamations, and declarations.

Usually, but not always, command phrases begin with an imperative (bossy) verb because they demand that the subject take an action.

Children should first learn about and be able to recognize the word classes noun, verb, adjective, and adverb before being taught commands. They can start working on instructions and the usage of imperative verbs after they are familiar with these.

Therefore, More Commands, Choose Commands from, All commands.

To learn more about Commands, refer to the link:

https://brainly.com/question/30319932

#SPJ3

Which tool did Adnan use to modify the image?

rotation handle
left sizing handle
top sizing handle
corner sizing handle

Answers

Answer:

D

Explanation:

Answer:

corner sizing handle

Explanation:

You can copy and paste ________ from excel to powerpoint

Answers

Answer: data

Explanation:

Your answer is:data

Which tasks can Kim complete using the Customize Ribbon dialog box? Check all that apply.

Rename existing ribbon tabs.
Rearrange ribbon commands.
Add a new main tab to the ribbon.
Add commands to existing groups.
Create new PowerPoint commands.
Add a new contextual tab to the ribbon.

Answers

Answer:

Its A, B, C, and F

Explanation:

On edg

Rename existing ribbon tabs, Rearrange ribbon commands, Add commands to existing groups and Add a new contextual tab to the ribbon.

What is PowerPoint presentation?

A PowerPoint presentation is a type of visual aid that creates a slideshow of information that can be presented to an audience using Microsoft PowerPoint software.

It is typically made up of a series of slides that include text, images, charts, graphs, and other multimedia elements to convey information to the audience.

Kim can complete the following tasks by using the Customize Ribbon dialog box:

Existing ribbon tabs can be renamed.Rearrange the commands on the ribbon.To existing groups, add commands.To the ribbon, add a new contextual tab.

Thus, Kim cannot use the Customize Ribbon dialog box to add new PowerPoint commands or a new main tab to the ribbon.

For more details regarding presentation ,visit:

https://brainly.com/question/14498361

#SPJ7

Consider the GBN protocol with a sender window size of 4 and a sequence number range of 1,024. Suppose that at time t, the next in-order packet that the receiver is expecting has a sequence number of k. Assume that the medium does not reorder messages. Answer the following questions: What are the possible sets of sequence numbers inside the sender’s window at time t? Justify your answer. What are all possible values of the ACK field in all possible messages currently propagating back to the sender at time t? Justify your answer.

Answers

Answer:

Follows are the solution to this question:

Explanation:

In point a:

N = Size of window = 4

Sequence Number Set = 1,024

Case No. 1:

Presume the receiver is k, and all k-1 packets were known. A window for the sender would be within the range of [k, k+N-1] Numbers in order

Case No. 2:

If the sender's window occurs within the set of sequence numbers [k-N, k-1]. The sender's window would be in the context of the sequence numbers [k-N, k-1]. Consequently, its potential sets of sequence numbers within the transmitter window are in the range [k-N: k] at time t.

In point b:

In the area for an acknowledgment (ACK) would be [k-N, k-1], in which the sender sent less ACK to all k-N packets than the n-N-1 ACK. Therefore, in all communications, both possible values of the ACK field currently vary between k-N-1 and k-1.

What is a backdoor?
A. A different sign-in page to log into a computer
B. An unrecognized entry into a computer or system
C. A fake version of software to access a computer system
D. An administrative login feature of computer software

Answers

B. Generally backdoors are logins/access to something without permission and without admins knowing.

Submit your design an informative computer safety brochure for a specific cybercrime that targets an audience of your choice.

Answers

USE SOCRACTIC IT WOULD DEFINITELY HELP ANSWER THIS QUESTION Try it
Other Questions
What is the slope of this graph? A. 4B. 14C. 14D. 4(picture down below) what is 2.6 divided by 0.4 Calculate the following expression and round your answer to the correct number of significant figures.52.6cm x 1.214cm Read the sentence below. Select the correctly punctuated answerA) the saleswoman sold two houses she was very happy that day.B) the saleswoman sold: two houses she was very happy that dayC) the saleswoman sold two houses; she was very happy that day D) the saleswoman sold two houses: she was very happy that day An Ice cream machine fills cartons at a rate of 1440 pints per hour. How many gallons are filled per minute? 1 gal is equal to 8 pints. plz help im dumb lol also i know it might be an easy awnswer its just i dont know for sure Which device manages the flow of current in an electric circuit?the wirethe switchthe batterythe light bulb Read these lines from Shakespeare's "Sonnet 100.Rise, resty Muse, my love's sweet face survey,If Time have any wrinkle graven there;If any, be a satire to decay,And make Time's spoils despised every where.Give my love fame faster than Time wastes life;So thou prevent'st his scythe and crooked knife.Based on context clues, what is the meaning of graven in these lines?carvedremovedhatingdecaying Mr. RidleyOn the Friday before winter break, Mrs. Lyon was out sick with a cold. So, Mr. Ridley substituted for the day. Most of the students in Mrs. Lyon's class were normally well-behaved. However, with the anticipation of the winter break, they became a little wild. While Mr. Ridley was writing on the dry erase board, Margo threw a paper airplane at his back. The class giggled as Mr. Ridley spun around to see who had thrown the paper airplane."Class! Throwing paper airplanes at a teacher is unacceptable and disrespectful. Who did that?" Mr. Ridley asked.The students kept their mouths closed and sat up straight in their chairs. No one volunteered any information."Fine then, you will all stay in from recess until someone tells me who threw the airplane," Mr. Ridley said.Mercy wiggled in her seat. She wanted to tell the teacher who threw the airplane, but she was afraid that the other students would call her a tattle tale.Alan, the class clown, was thrilled that someone besides him had done something foolish. He would never tell. He would expect the same loyalty from his classmates.Margo felt nervous. She wanted to confess and apologize to Mr. Ridley, but she was afraid that she would receive a harsh punishment. She wondered how long her classmates would protect her.Jervis sat and drummed his fingers. He didn't see who threw the paper airplane, but he guessed that it had been Alan. He was tempted to raise his hand and tell the teacher that Alan was the responsible party, but he wasn't completely confident. He really wished that someone would tell who did it. It wasn't fair that the whole class was being punished for one person's mistake.Rosania was happy that the class wasn't going to recess. She had terrible allergies and wanted to stay inside. She hoped that no one would say a word until recess time was over.Mr. Ridley walked around the classroom looking at each student's face as he went by. He thought he detected sweat and shaking when he walked by Fred. He wondered if Fred was the culprit. However, Fred just needed to use the restroom but was afraid to ask."Fred, you seem a bit anxious. What is it you want to tell me?" Mr. Ridley asked."Nothing, sir. I-I need to use the restroom," Fred stammered."No one is leaving this room until I find out who threw that airplane at me," Mr. Ridley said.Margo could not allow her classmates to suffer any longer."It was me! I threw it! I'm sorry, Mr. Ridley," Margo said as she burst into tears.Mr. Ridley hated to see children cry. He rushed over to Margo and gently patted her back."I forgive you. Don't cry," Mr. Ridley said."I was just being silly. I didn't mean to disrespect you," Margo sniffled."We will forget all about it. Let's enjoy the rest of our day together. Because you were honest, we will all play games for the rest of the day," Mr. Ridley announced.In the passage, the author contrasts the points of view of the different characters by A. explaining how each character feels about the airplane incident. B. describing the relationships between all of the characters. C. demonstrating the consequences of each character's actions. Tiesha enjoys reading in her spare time. She reads 4 pages every 1/10 of an hour.The proportional relationship between the number of pages (p) and the number of hours (h) is represented by the equation . Write the equation in standard form with a constant of proportionality greater than 1. John purchased a carr in 1961 for $12,000. Experts estimate that its value will increase by 5% per year. How much will be the cost of the car after 22 yearsA- 35103$ B- 27600$C- 10000$ D- 30105$ bob can draw 14 shapes in 7 minutes how long does it take bob to draw 28 shapes at the same rate If this question gets deleted I'm gonna be real mad, this is for my sister who is in kindergarten and wants me to post a question for her and wont let me help her its worth 20 points, If mixed together what does red and blue make? URGENT: I need these problems answered and steps :/ Will give the first person BRAINLIEST and please show the steps and please please please if you can solve all of these. Thank you soooooo much! :D1.) - 3/4 x 5/8 2.) - 1/5 x (-2/3) 3.) -81.4 divided by 0.44.) -2 1/4 divided by 1 1/25.) (-1 1/3)(-2 1/2)Thank you so much! 2. List 2-3 details about chief judge of the court, John Patterson. In book just mercy A market researcher collects a simple random sample of customers from a population of over a million customers that use a home improvement website. After analyzing the sample, she states that she has 95% confidence that the mean time customers spent on that website per day is between and minutes. Suppose that the population mean time customers spent on that website is minutes a day. Does this value of the population mean help to show that the confidence interval estimate is correct? Explain. Please please please help (In speaking,it takes a lot of courage and self-confidence.for you,what are the advantages of speaking confidently? ) What is the difference between a eukaryote and a prokaryote in terms of what they have within in them? Calculate (2.2 x 10^2 g^3) (2.8 x 10^3 g) put it into standard notation please Can someone help me? It's only 2 questions and I will give you 20 points and brainliest!