All of the following are true about hacksaws except: a. A hacksaw only cuts on the forward stroke. b. A coarse hacksaw blade (one with fewer teeth) is better for cutting thick steel than a fine blade. c. A fine hacksaw blade (one with many teeth) is better for cutting sheet metal. d. A hacksaw blade is hardened in the center, so it is best to saw only with the center portion of the blade.

Answers

Answer 1
B is INCORRECT good sir. The Hope this helps, brainiest please.
Answer 2

All of the following are true about hacksaws, except a coarse hacksaw blade (one with fewer teeth) is better for cutting thick steel than a fine blade. The correct option is b.

What is a hacksaw?

A hacksaw is a saw with fine teeth that were originally and primarily used to cut metal. Typically, a bow saw is used to cut wood and is the corresponding saw.

Hacksaw is used by hand, it is a small tool for cutting pipes rods wood etc that is very common and homes and in shops. The different types of hacksaws. The main three types of hacksaws are course-grade hacksaws, medium-grade hacksaws, and fine-grade hacks. The difference is just for the quality, and the design of the blade.

Therefore, the correct option is b. Cutting thick steel is easier with a coarse hacksaw blade (one with fewer teeth) than a fine one.

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

https://brainly.com/question/15611752

#SPJ2


Related Questions

(Convert milliseconds to hours, minutes, and seconds) Write a function that converts milliseconds to hours, minutes, and seconds using the following header: def convertMillis(millis): The function returns a string as hours:minutes:seconds. For example, convertMillis(5500) returns the string 0:0:5, convertMillis(100000) returns the string 0:1:40, and convertMillis(555550000) returns the string 154:19:10. Write a test program that prompts the user to enter a value for milliseconds and displays a string in the format of hours:minutes:seconds. Sample Run Enter time in milliseconds: 555550000 154:19:10

Answers

Answer:

I am writing the Python program. Let me know if you want the program in some other programming language.

def convertMillis(millis):  #function to convert milliseconds to hrs,mins,secs

   remaining = millis  # stores the value of millis to convert

   hrs = 3600000  # milliseconds in hour

   mins = 60000  # milliseconds in a minute

   secs = 1000  #milliseconds in a second

   hours =remaining / hrs  #value of millis input by user divided by 360000

   remaining %= hrs  #mod of remaining by 3600000

   minutes = remaining / mins  # the value of remaining divided by 60000

   remaining %= mins  #mod of remaining by 60000

   seconds = remaining / secs  

#the value left in remaining variable is divided by 1000

   remaining %= secs  #mod of remaining by 1000

   print ("%d:%d:%d" % (hours, minutes, seconds))

#displays hours mins and seconds with colons in between

   

def main():  #main function to get input from user and call convertMillis() to #convert the input to hours minutes and seconds

   millis=input("Enter time in milliseconds ")  #prompts user to enter time

   millis = int(millis)  #converts user input value to integer

   convertMillis(millis)   #calls function to convert input to hrs mins secs

main() #calls main() function

Explanation:

The program is well explained in the comments mentioned with each line of code. The program has two functions convertMillis(millis) which converts an input value in milliseconds to hours, minutes and seconds using the formula given in the program, and main() function that takes input value from user and calls convertMillis(millis) for the conversion of that input. The program along with its output is attached in screenshot.

Use an Excel function to find: Note: No need to use Excel TABLES to answer these questions! 6. The average viewer rating of all shows watched. 7. Out of all of the shows watched, what is the earliest airing year

Answers

Answer:

Use the average function for viewer ratings

Use the min function for the earliest airing year

Explanation:

The average function gives the minimum value in a set of data

The min function gives the lowest value in a set of data

what are the point achieved on brainly used for i wants answers​

Answers

They are use to ask questions so you can get awnsers to the problem you ask

Answer:

They basiclly are used like a level up in other words they cause you to level up.

Explanation:

Want free points mark as brainiest

What feature in the Windows file system allows users to see only files and folders in a File Explorer window or in a list of files from the dir command to which they have been given at least read permission?

Answers

Answer:

Access based enumeration

Explanation:

The access based enumeration is the feature which helps the file system to allow users for seeing the files and folders for which they have read access from the direct command.

Access based enumeration: This feature displays or shows only the folders and files that a user has permissions for.

If a user do not have permissions (Read) for a folder,Windows will then hide the folder from the user's view.

This feature only function when viewing files and folders are in a shared folder. it is not active  when viewing folders and files in a local system.

3.26 LAB: Leap Year A year in the modern Gregorian Calendar consists of 365 days. In reality, the earth takes longer to rotate around the sun. To account for the difference in time, every 4 years, a leap year takes place. A leap year is when a year has 366 days: An extra day, February 29th. The requirements for a given year to be a leap year are: 1) The year must be divisible by 4 2) If the year is a century year (1700, 1800, etc.), the year must be evenly divisible by 400 Some example leap years are 1600, 1712, and 2016. Write a program that takes in a year and determines whether that year is a leap year. Ex: If the input is: 1712 the output is: 1712 - leap year

Answers

Answer:

year = int(input("Enter a year: "))

if (year % 4) == 0:

  if (year % 100) == 0:

      if (year % 400) == 0:

          print(str(year) + " - leap year")

      else:

          print(str(year) +" - not a leap year")

  else:

      print(str(year) + " - leap year")

else:

  print(str(year) + "- not a leap year")

Explanation:

*The code is in Python.

Ask the user to enter a year

Check if the year mod 4 is 0 or not. If it is not 0, then the year is not a leap year. If it is 0 and if the year mod 100 is not 0, then the year is a leap year. If the year mod 100 is 0, also check if the year mod 400 is 0 or not. If it is 0, then the year is a leap year. Otherwise, the year is not a leap year.

Complete a prewritten C++ program for a carpenter who creates personalized house signs. The program is supposed to compute the price of any sign a customer orders, based on the following facts:

The charge for all signs is a minimum of $35.00.
The first five letters or numbers are included in the minimum charge; there is a $4 charge for each additional character.
If the sign is made of oak, add $20.00. No charge is added for pine.
Black or white characters are included in the minimum charge; there is an additional $15 charge for gold-leaf lettering.

Instructions:

Ensure the file named HouseSign.cppis open in the code editor. You need to declare variables for the following, and initialize them where specified:

A variable for the cost of the sign initialized to 0.00 (charge).
A variable for the number of characters initialized to 8 (numChars).
A variable for the color of the characters initialized to "gold" (color).
A variable for the wood type initialized to "oak" (woodType).
Write the rest of the program using assignment statements and ifstatements as appropriate. The output statements are written for you.

Answers

Answer:

#include <iostream>

#include <string>

using namespace std;

int main()

{

   double charge = 0.00;

   int numChars = 8;

   string color = "gold";

   string woodType = "oak";

   

   if(numChars > 5){

       charge += (numChars - 5) * 4;

   }

   if(woodType == "oak"){

       charge += 20;

   }

   if(color == "gold"){

       charge += 15;

   }

   charge += 35;

   

   cout << "The charge is: $" << charge << endl;

   return 0;

}

Explanation:

Include the string library

Initialize the variables as specified

Check if the number of characters is greater than 5 or not. If it is, add 4 to the charge for each character that is greater than 5

Check if the sign is made of oak or not. If it is, add 20 to the charge

Check if the color is gold or not. If it is, add 35 to the charge

Add the minimum cost to the charge

Print the charge

In this exercise we have to use the knowledge of the C++ language to write the code, so we have to:

The code is in the attached photo.

So to make it easier the code can be found at:

#include <iostream>

#include <string>

using namespace std;

int main()

{

  double charge = 0.00;

  int numChars = 8;

  string color = "gold";

  string woodType = "oak";

  if(numChars > 5){

      charge += (numChars - 5) * 4;

  }

  if(woodType == "oak"){

      charge += 20;

  }

  if(color == "gold"){

      charge += 15;

  }

  charge += 35;

  cout << "The charge is: $" << charge << endl;

  return 0;

}

See more about C++ at brainly.com/question/26104476

If i wanted to change my phones simcard, does anything need transferring, or is it an easy swap?

Answers

Most likely not but I think you’ll have to log in your account like if you have an Apple phone . You’ll have to log into your Apple ID
Other Questions
calculate the surface area of an open cuboid which is 12 cm long,8cm wide,6cm high Which formula is used to calculate the standard deviation of sample data?2.X, - x+ X2-X+ ... + X-X(1928)s=1n-1(x1 - x)2 + (x2-x) +...+(XN-)?211Nw(x1 - x)+ (x2-x)2 +...+(x+4) ?N2Xq- x-3)+ X2-X++ XS=n-1 Which type of rights did the colonists who drafted the Declaration of Independence most want to protect Which line of dialogue most likely has a persuasive effect? A particle leaves the origin with a speed of 3 106 m/s at 38 degrees to the positive x axis. It moves in a uniform electric field directed along positive y axis. Find Ey such that the particle will cross the x axis at x it is a fearful thing to lead this great peaceful people into war into the most terrible and disastrous of all. based on the excerpt, what can be said about president's wilsons character? which term best describes the function represented by the graph?A) Exponential GrowthB) Exponential DecayC) Linear Decreasing D) Linear Increasing Wat is your Favorite name Joe has just moved to a small town with only one golf course, the Northlands Golf Club. His inverse demand function is pequals 160minus2 q, where q is the number of rounds of golf that he plays per year. The manager of the Northlands Club negotiates separately with each person who joins the club and can therefore charge individual prices. This manager has a good idea of what Joe's demand curve is and offers Joe a special deal, where Joe pays an annual membership fee and can play as many rounds as he wants at $20 , which is the marginal cost his round imposes on the Club. What membership fee would maximize profit for the Club? The manager could have charged Joe a single price per round. How much extra profit does the Club earn by using two-part pricing? The profit-maximizing membership fee (F) is $nothing . (Enter your response as a whole number.) The Venn diagram below shows similarities and differences between binary fission and mitosis. What is wrong with the diagram?A)Mitosis forms four identical daughter cells.B)Mitosis does not form membrane-bound nuclel.C)Binary fission is not used by eukaryotes.D)Binary fission is not a simple process. In a survey, the ratio of the number of people who preferred tea to those who preferred coffee was 9:536 more people preferred tea to coffee.How many people were in the survey? I REALLY NEED HELP MY DAD YELLED AT ME In the concluding chapter of Pollution and the Death of Man, Udo Middleman discusses how his children have a different view of environmental issues than his generation did1. So much of our worldview is based on the ideas we are exposed to through the media. Explore the environmental issues/attitudes that you see in media. Briefly tell us about a movie, TV show, advertisement, etc. that has an environmental message. What does the literature and the Bible have to say about this What is the most likely reason the Agricultural Revolution caused a population increase? Which person engages in habits that are most harmful to his or her health ? A: Martina eats nutritious foods, avoid physical exertion, and enjoy spending time with friends..B:Mathew skips meals, sleeps an irregular number of hours, and smoke cigarettes daily..C: Alexa is captain of her soccer team, is careful about what she eats, and has a family history of diabetes.. D: Jason is self-conscious about his weight. He tries hard to control his diet but cant help over eating sometimes. help! Im not sure if its c or d thanks!! Which of these is an organism? Te parece que se podra representar en una dramatizacion las acciones que se presentan en el texto "las obras de cocinero"? Increased Efficiency, Inc. is looking for ways to shorten its cash conversion cycle. It has annual sales of $36,500,000, or $100,000 a day on a 365-day basis. The firm's cost of goods sold is 65% of sales. On average, the company has $9,000,000 in inventory and $8,000,000 in accounts receivable. Its CFO has proposed new policies that would result in a 20% reduction in both average inventories and accounts receivable. She also anticipates that these policies would reduce sales by 10%, while the payables deferral period would remain unchanged at 40 days. What effect would these policies have on the company's cash conversion cycle Read the sentence.The movie is an invented story about the jazz scene, but it is interspersed with archival footage and photographs offamous poets and singers of the time.In this context what is the meaning of 'interspersed"?A. combinedB. comparedC. offeredD. shared