7. What enhancing techniques that lines the interior of drawers and boxes resulted to soft velvety finish? A. Wood Turning b. Painting c. Etching d. Flocking

Answers

Answer 1

Answer:

d. Flocking

Explanation:

Flocking is one of the methods that is used to bring a finishing and decorative touch in the furniture. It is a process in which very fine particles are placed on the surface of the furniture to provide a texture to it. This process helps in adding a texture, providing a distinct color, and for better maintenance of the product. In the interior of the drawers and boxes, flocking is done so as to bring a soft and velvety finish.


Related Questions

Write down the functions of network layer in your own words.ASAP

Answers

Hrhnebevevebnenebebenene

What is the output of this program?


numA=3

for count in range(4,7):

numA= numA+ count

Print(numA)


(YOU WILL BE MARKED AT BRAINLIEST)

Answers

Answer:

18

Explanation:

the loop goes from 4 to 6

so after first loop numA = 3 + 4 = 7

second loop numA = 7 + 5 = 12

thirs loop numA = 12 + 6 =18

The output of the program is 18. In this program the numbers are calculated.

What is program?

Program is defined as a series of instructions written in a programming language that a computer may follow. A program's behavior when it is being used defines its functionality, which is frequently illustrated by how a user interacts with it. Low-level access to system memory is made possible by the procedural and general-purpose nature of the C programming language. To create an executable that a computer can run, a C program needs to be run through a C compiler.

As given

The loop goes from 4 to 6

So after 1 st loop numA = 3 + 4 = 7

2 nd loop numA = 7 + 5 = 12

3 rd loop numA = 12 + 6 =18

Thus, the output of the program is 18. In this program the numbers are calculated.

To learn more about program, refer to the link below:

https://brainly.com/question/3224396

#SPJ5

25 POINTS!! NEED HELP ASAP!! Which of the following can be a problem for people with certain kinds of epilepsy?
using left-aligned text
using all uppercase text
putting two spaces after a period
flashing images

Answers

Answer:

Flashing images

Explanation:

Content that flashes or flickers can trigger seizures in susceptible individuals. Therefore flashing or flickering content should be avoided.

Directions: Asba student of Contact Center Service, you already have an experience using different computer programs. Try to remember some of those by putting name of the computer program that you use in the first line below and its use on the second line.

__________. __________
__________. __________

__________. __________
__________. __________

__________. __________
__________. __________


Answers

Explanation:

can u suggest a title about quarantine

ex: My quarantine life

Answer:

I will get back to you later ok :)

I will send your answer as soon as possible :)

in the comments

Explanation:

I WILL PROMISE TO GET BACK TO YOU AS SOON AS POSSIBLE

I gave brainlest .....!!!!​

Answers

Answer:

me me me me me me me me me me mw

Explanation:

I hope I can help you

yes or no have you entire copy written in uppercase for emphasis​

Answers

Explanation:

yes I did

bcdfgcxsfgvvvcfghbvaaegh

Help plz,l didn’t pay attention in class

Answers

Answer:

a) Input the marks value

b) Distinction

c) If marks =>50

d) Fail

Explanation:

The missing box entries in the flow chart from top to bottom are as follows -

a) Input the marks value

b) Distinction

c) If marks =>50

d) Fail

to add background colour to the webpage – attribute is used in body tag​

Answers

[tex]\mathfrak{\huge{\orange{\underline{\underline{AnSwEr:-}}}}}[/tex]

Actually Welcome to the Concept of the HTML.

The tag that can give background color to the Web pages is :-

1.) <Body> bgcolor = "Orange"

</Body>

You will use the Word application to design, develop, and create a business letter to potential clients of your new business. The following steps will help you in this process.


Open a blank Word document.

Write a business letter introducing people to your store. You may choose any type of store you wish, but your letter should be at least one paragraph long and be able to be easily personalized to each potential client. Make sure you include the type of business, a sentence about your business plan or philosophy, the location of your business, and any relevant contact information.

With this letter open, begin a mail-merge letter using the letter you just wrote as your starting document.

Since you do not have the addresses of your contacts in the computer, you will need to type a new list and create a new data source. Save the data source as "Mail Merge Data Source Lesson 3."

For this example, enter the names and addresses of four people.

Insert merge codes for the address block, greeting line, and at least two other items from the More Items list.

Preview your letters. Make sure you proofread your work for spelling and grammar errors.

Merge your letters to a new document. Save the original and merged documents.

Show your documents to your instructor for review.

After you have written your letters, you realize you will need mailing labels for the outside of your envelopes. To quickly make these labels, you decide to use a merge.


Open a new document and begin a mail merge using the Mail Merge Wizard.

Select Avery 5160 mailing labels as your label type.

Use the data source you saved earlier, "Mail Merge Data Source Lesson 3," for the addresses for your labels.

Insert an address block on each label.

Preview your labels for format and spelling errors.

Merge your labels and save them in a new document.

Submit your labels in the space provided for your instructor to review.

Answers

Answer:

Mail Merge Data Source

Explanation:

A programmer has an idea to use just one language for the content, structure, and style of web pages. What might be a problem with this idea?

Answers

Doesn’t give the programmer a lot of freedom to be creative. Using only one language on the web limits the amount features the programmer could create.

For example, just only using HTML limits the web page’s features to use scripts like Javascripts.

Write a program to declare a matrix A[][] of order (MXN) where ‘M’ is the number of rows and ‘N’ is the
number of columns such M and N must be
greater than w and less than 20. Allow the user to input





integers into this matrix. Perform the following tasks on the matrix:
(a) Display the input matrix
(b) Find the maximum and minimum value in the matrix and display them along with their position.
(c) Sort the elements of the matrix in ascending order using any standard sorting technique and rearrange them in the matrix.

Can anybody show the program and explain please
Urgent.

Answers

Answer:

import java.io.*;

import java.util.Arrays;

class Main {

   public static void main(String args[])

   throws IOException{

       // Set up keyboard input

       InputStreamReader in = new InputStreamReader(System.in);

       BufferedReader br = new BufferedReader(in);

 

       // Prompt for dimensions MxN of the matrix

       System.out.print("M = ");

       int m = Integer.parseInt(br.readLine());

       System.out.print("N = ");

       int n = Integer.parseInt(br.readLine());

       // Check if input is within bounds, exit if not

       if(m <= 2 || m >= 10 || n <= 2 || n >= 10){

           System.out.println("Matrix size out of range.");

           return;

       }

       // Declare the matrix as two-dimensional int array

       int a[][] = new int[m][n];

 

       // Prompt for values of the matrix elements

       System.out.println("Enter elements of matrix:");

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

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

               a[i][j] = Integer.parseInt(br.readLine());

           }

       }

       // Output the original matrix

       System.out.println("Original Matrix:");

       printMatrix(a);

       // Sort each row

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

         Arrays.sort(a[i]);

       }

       // Print sorted matrix

       System.out.println("Matrix after sorting rows:");

       printMatrix(a);

   }

   // Print the matrix elements separated by tabs

   public static void printMatrix(int[][] a) {

       for(int i = 0; i < a.length; i++){

           for(int j = 0; j < a[i].length; j++)

               System.out.print(a[i][j] + "\t");

           System.out.println();

       }

   }

}

Explanation:

I fixed the mistake in the original code and put comments in to describe each section. The mistake was that the entire matrix was sorted, while only the individual rows needed to be sorted. This even simplifies the program. I also factored out a printMatrix() method because it is used twice.

is the area where we createour drawings​

Answers

Answer:

Answer:

CANVAS IS THE AREA WHERE WE CREATE OUR DRAWING.

Explanation:

.

Answer: CANVAS IS THE AREA WHERE WEE CREATE OUR DRAWING.

Explanation:

Does digital media play a big role in your life?

Answers

Answer:

Yes

Explanation:

I use social media every day and it impacts how I dress, what I eat, where I go, and more. Overall social media makes a big impact on my life

What is the smallest number of bits that would be needed to store the number '50' in binary?​

Answers

Answer:

6 bits

Explanation:

5 bits gets you 2^5=32 possibilities (values 0-31), which is not enough for 50.

6 bits gets you 2^6=64 possibilities (values 0-63), which is enough.

To calculate for an arbitrary number, take the 2-log, and round up:

[tex]\log_2(50) \approx 5.64[/tex]

rounded up is 6.

list three quantitative characteristic properties of water explain why they are considered characteristic

Answers

Answer:

The three quantitative characteristic properties of water is explained below in detail.

Explanation:

The three quantitative components of water incorporate the following:

1.Freezing point:

The water has a freezing point of 0 degrees Celsius.

2. Boiling point:

The water has a boiling point of 100 degrees Celsius.

3. Melting point:

The melting point of ice is 0 degrees Celsius.

These properties are all uncommon to water. Being uncommon means that these characteristics are only noticeable in water; hence, they can be beneficial in recognizing such a substance.

________ use statistics to anticipate customers withdrawals. ________ use statistic to calculate probable life expectancy to help them set rates.

Answers

Answer:

Banks

Insurance companies

Explanation:

Write down the functions of network layer in your own words.ASAP pleaseeeeeee

Answers

Answer:

The network layer is the layer is the layer 3 of the seven layer Open System Interconnect (OSI model) which functions as packet forwarder for the  intermediate routers  by implementing technologies used for switching that provides virtual circuits' logical path

The function of the network layer includes;

1) Routing and forwarding of packets to destination which enables connectionless communication

2) Enabling internetworking

3) Hierarchical host (IP) addressing

4) Sequencing of packets

5) Handling of errors

6) Control of network congestion to prevent the collapse of the network

Explanation:

What is the output of print str if str = 'Hello World!'? A - Hello World! ... Q 18 - What is the output of print list[1:3] if list = [ 'abcd', 786 , 2.23, 'john', 70.2 ]?.
and Dim Message, Speak
Message=InputBox("Enter text" , "Speak")
Set Speak=Create0bject("sapi.spvoice")
Speak.Speak Message
Dim Message, Speak
Message=InputBox("Enter text" , "speak")
Set Speak=Create0bject("sapi.spvoice")
Speak.Speak Message
I hope someone can answer this 40 points to whoever does

Answers

Is this some jiberish or is this a different language because I can’t understand nothing you just typed

What is the final amount stored in value if the computer selects 17 as the
random number
set value
to pick random 50 to 60
set value to value / 2
value > 0
and
value mod
1
set value
to
value x 1
else
valueB < 0
set value
to O
say value for secs
say valueB for a
secs

Answers

Answer: -17

Explanation:

Our random number is 17. Let's go through line by line.

value is a random number picked which is 17valueB = 17 / 2 = 8.5If value is greater than 0 AND value has a remainder of 1, we will set the value to value* -1. Value is now 17 * -1 = -17

Let's quickly calculate value mod 2. 17 % 2 = is 1. If you're wondering how we did that, the remainder after dividing 8 into 17 twice is 1, because 17 - 16 = 1.

We stop after line 4 because we stop the conditional statement after one condition is filled.

How can you make sure to save all annotations from a slide show?
When you exit the slide show, select Keep the Annotations.
O Before beginning the slide show, select Save All Annotations.
During the slide show, right-click and select Save Annotations.
O All annotations are automatically saved as a copy of the presentation.

Answers

Answer:

when you exit the slide show, select keep annotations

Explanation:

To save all annotations from a slide show, make sure that When you exit the slide show, select Keep the Annotations.

What is annotation?

This is known to be a kind of a note that is said to be added through comment or explanation.

It is often used by writers. Note that the right thing to do is to To save all annotations from a slide show, make sure that When you exit the slide show, select Keep the Annotations.

Learn more about Annotations from

https://brainly.com/question/16177292

Complete the flowchart to calculate the area of a rectangle

Answers

Python Code:
Length=int(input(“Enter length of rectangle: “))
Width=int(input(“Enter width of rectangle: “))
Area=Length*Width
print(Area)
Flow Chart:
(Given in the image below)


2.
Python was created​

Answers

Python was created by Guido van Rossum

The python was in fact created by Guido Van Rossun

Select the correct answer from each drop-down menu. Which two factors do ergonomic principles consider a part of a job? Ergonomic principles consider (physical stress, mental stress, or social stress) and (traveling factors, relationship factors, or environmental factors) Pls answer quickly I have a Mastery test and my brain is a little rusty so pls help me! I would really appreciate it and thank you so much in advance and have a good day! Btw, I'll give 55 points if it's answered correctly :D​

Answers

Answer:mental stress

Explanation:

what is computer write it's charatersitcis

Answers

Answer: See explanation

Explanation:

Computer is simply referred to as an electronic machine that can be utilized in the processing of data which later gives a desired output as Information.

Some of the characteristics of a computer include accuracy, speed, data storage, flexibility, consistency, reliability and diligence.

Which of these statements correctly describe aspects of testing code? Check all of the boxes that apply.

Users depend on the information provided by the software program.

Beta testing is the second stage of testing the software program.

All testing is done by the developer of the computer software.

All code is likely to include mistakes, no matter how careful a programmer may be.

Answers

Answer:

1 - Users depend on the information provided by the software program.

2 - Beta testing is the second stage of testing the software program.

4 - All code is likely to include mistakes, no matter how careful a programmer may be.

Explanation:

ON EDGE TRUST

plz mark brainest

IT IS THE FIRST ONE AND THE THIRD ONE

Explanation:

i just did it

Which of the following is defined as a fluid used to reduce friction?


coolant

solvent

reductant

lubricant

Answers

Answer:

lubricant

Explanation:

lubricant reduces friction

Computer career skills include:


production software use

organizing

teamwork

hardware use

Answers

Answer:

Yes they do include all of the above

what are you’re options ? i would say all of the above

4 cups
2 pints
Write the equivalent measure for each amount.
27.
4 quarts
28.
29.
30.
2 cups
31.
16 tablespoons
32.
4 tablespoons
33.
3 teaspoons
34.
16 ounces

Answers

Answer:

The correct equivalent measure of each amount are;

27. 1 gallon ≡ 4 quart

28. 1 quart ≡ 4 cups

29. 1 quart ≡ 2 pints

30. 1 pint ≡ 2 cups

31. 1 cup ≡ 16 tablespoons

32. 2.5 ounces ≡ 4 tablespoons

33. 1 tablespoon ≡ 3 teaspoons

34. 0.8 pint ≡ 16 ounces

Explanation:

In the imperial units of volume, we have the following equivalent volumes;

27. 1 imperial gallon is equivalent to 4 imperial quart

28. 1 imperial quart is equivalent to 4 imperial cups

29. 1 imperial quart is equivalent to 2 imperial pints

30. 1 imperial pint is equivalent to 2 imperial cups

31. 1 imperial cup is equivalent to 16 imperial tablespoons

32. 2.5 imperial ounces is equivalent to 4 imperial tablespoons

33. 1 imperial tablespoon is equivalent to 3 imperial teaspoons

34. 0.8 imperial pint is equivalent to 16 imperial ounces

A director was fined heavily for shooting in his own house in New York. What do you think was his mistake?
A.
He forgot to get the location release approved.
B.
He forgot to get the filming permit.
C.
He forgot to apply for permission rights.
D.
He forgot to take consent for using a brand name.
E.
He forgot to apply for synchronization rights.

Answers

Answer: B. He forgot to get the filming permit.

Answer:

b he for got fillming permits

what is the functions of network layer ?

Answers

Functions. The network layer provides the means of transferring variable-length network packets from a source to a destination host via one or more networks.

Other Questions
Gibson Products produces cast bronze valves for use in offshore oil platforms. Currently, Gibson produces 1600 valves per day. The 20 workers at Gibson work from 7 a.m. until 4 p.m., with 30 minutes off for lunch and a 15-minute break during the morning work session and another at the afternoon work session. Gibson is in a competitive industry, and needs to increase productivity to stay competitive. They feel that a 20 percent increase is needed.Gibson's management believes that the 20 percent increase will not be possible without a change in working conditions, so they change work hours. The new schedule calls on workers to work from 7:30 a.m. until 4:30 p.m., during which workers can take one hour off at any time of their choosing. Obviously, the number of paid hours is the same as before, but production increases, perhaps because workers are given a bit more control over their workday. After this change, valve production increased to 2000 units per day.Calculate labor productivity for the initial situationCalculate labor productivity for the hypothetical 25 percent increase, and its impact on output.What is the productivity after the change in work rules? Mahayana Buddhists sometimes criticize Theravada Buddhists for being too focused on their own salvation. Why do they think this is the case? Conversely, Theravadans criticize Mahayanans for holding beliefs that contradict the original teachings of the Buddha. What's the basis for this critique? In your view, are either or both of these accusations legitimate?i need asap the line segments in a polygon are called? a cone has a height of 4 ft and a volume of 7.77 Ft cubed determine its radius to the nearest tenth of a foot A ball is kicked straight up into the air from a height of 48ft with an initial velocity of 88 ft/s. After how many seconds does the ball hit the ground? PLZzzzzz HELP ME Pls answer The Following Question What does the use of fourteen dogs suggest about Hal, Charles, and Mercedes?They are ignorant.They are insecure.They have a strong team.They are ambitious. What is the answer to 5m-2=-12 2x + 3x = _____??help me pls Before the Sacrament of Reconciliation, we should examine ourconscience. True or false ) Ms. Rathman has 5 nickels, 3 dimes, and 2 quarter. In how many ways can she make changefor 50? Make a systematic list to answer this question.i need help plzzz an could you show your work thanks love 15 - 3x = - 6 x=____ help HELP IT'S DUE TOMORROW ;w;Give an example of each of the following types of matter:a) heterogeneous mixture:b) homogeneous mixture:c) element:d) compound: Hello, do you know what the main characteristics of Christianity are ? for a presentation, thank you very much. The following information was taken from the records of Sheffield Inc. for the year 2020: Income tax applicable to income from continuing operations $209.440: income tax applicable to loss on discontinued operations $28,560. and unrealized holding gain on available-for-sale securities (net of tax) $16,800. Gain on sale of equipment $106,400 Cash dividends declared $168,000 Loss on discontinued operations 84,000 Retained earnings January 1, 2020 2,400,000 Administrative expenses 268,800 Cost of goods sold 952,000 Rent revenuc 44,800 Selling expenscs 336,000 2,128,000 Loss on write-down F inventory 67 200 Sales Revenue Shares outstanding during 2020 were 100,000. Prepare a single-step income statement. (Kound eurmings pershre to 2 decimal paces, e 148 SHEFFIELD INC. Income Statement $ Prepare a comprehensive income statement for 2020, using the two statement format. SHEFFIELD INC. Comprehensive Income Statement Prepare a retained earnings statement for 2020. (tfst ltens tatheuse 1euhe enMhgs firsEj SHEFFIELD INC. Retained Earmings Statement Deriving the Trigonometric Area FormulaFollow these steps to derive the trigonometric area formula,1. For LABD, sin(A) =BhDCheckb 100 -points Based on the chart, which species are most closely related? Species A and B Species B and C Species A and C Species A, B, and C How would the Townshend and quartering acts affect a merchant (who is a colonist)? Yvette is waiting in line to receive a free t-shirt at a charity event. Because the shirts are free, there are many people in line, and a long wait time is expected Consider the following sentence: By waiting in line for the shirt Yvette will miss an appointment to tutor an economics student, for which she would have been paid $30. Which basic concept of individual choice does this sentence best illustrate? a. Externalities are a shortcoming of the market, b. Many decisions are made on the margin. c. Opportunity costs and money costs (price) are related but are not always exactly the same d. People usually exploit opportunities to make themselves better off. please answer I need the answer!!