answersLogoWhite

0

The weight of a 454 engine block, specifically the big block V8 engine commonly used in Chevrolet vehicles, typically ranges from about 600 to 700 pounds (272 to 318 kg) without accessories. This weight can vary depending on the specific design and any additional components attached to the engine.

User Avatar

AnswerBot

3w ago

What else can I help you with?

Continue Learning about Engineering

How much should you torque your aluminum intake on a 454 motor?

For a 454 motor with an aluminum intake manifold, the typical torque specification is usually between 30 to 35 ft-lbs. It's essential to follow a specific tightening sequence to ensure even pressure across the manifold. Additionally, it's a good practice to re-check the torque after the engine has been run to ensure proper sealing. Always refer to the manufacturer's specifications for the most accurate guidance.


Why doesn't 1985 Kawasaki 454 LTD go over 2500 rpm?

How long since the valves were adjusted? These bikes love well adjusted valves, and if they are way out of adjustment, they run very poorly. There are a few other things to check out too, such as fuel restriction, or it could be running on one cylinder. There is a message board for these bikes located at the following URL, with lots of knowledgeable people, myself included- http://ltd454.proboards41.com/v45index.cgi? andrewk


What does a cubic foot of water weigh?

the denisty of water is 1000 kilograms per cubic meter. since there are 0.3048 meters in every foot, and roughly .454 kilograms in every pound the conversion works out to 62.42796 pounds of water per every cubic foot so for 1 cubic foot of water there is 62.43 pounds.


Write an algorithm that can find the maximum of n numbers?

One way to find the maximum of n numbers is to initialize a variable to store the maximum value, then iterate through the n numbers. During each iteration, compare the current number to the stored maximum value, updating the maximum if the current number is greater. After iterating through all n numbers, the variable will contain the maximum value. This algorithm has a time complexity of O(n) as it requires iterating through all n numbers once.


How do you write a c plus plus program that computes the sum mean and standard deviation of 50 numbers?

Assuming the image is an RGB image, sum the red, green and blue components of the pixels separately then divide each by the number of pixels. E.g., given two pixels RGB(a, b, c) and RGB(x, y, z) the mean is RGB ((a+x)/2, (b+y)/2, (c+z)/2).