For hardness test of copper in Brinell hardness tester, the diameter of ball is ___________

For hardness test of copper in Brinell hardness tester, the diameter of ball is ___________ Correct Answer 5mm

ASTM E-10 is a standard test for determining the Brinell hardness of metallic materials. The load applied in this test is usually 3,000, 1,500, or 500 kgf, so that the diameter of the indentation is 5 mm.

Related Questions

What is the result of compiling and running the following code?
public class Tester{static int x = 4;public Tester(){System.out.print(this.x); // line 1Tester();}public static void Tester(){ // line 2System.out.print(this.x); // line 3}public static void main(String... args){ // line 4new Tester();}}
What is the result of compiling and running the following code?
public class Tester{static int x = 4;int y = 9; public Tester(){System.out.print(this.x); // line 1printVariables();}public static void printVariables(){System.out.print(x); // line 2System.out.print(y); // line 3}public static void main(String... args) { // line 4new Tester();}}