1. A screw thread is a ridge of uniform section in the form of a helix on the external or internal surface of a cylinder.



Ask Your Doubts Here

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

Show Similar Question And Answers
QA->The ratio between the radius of the base and the height of a cylinder is 2 : If its volume is 1617 cm3, the total surface area of the cylinder is—....
QA->The ratio of bases of a cylinder and a cone are in the ratio 3: Volume of cylinder and cone are in the ratio 9: then their heights are in the ratio?....
QA->“If there is no external force, a body at rest continues to be at rest and a body in motion continues to move with uniform velocity”. This law is known as?....
QA->Hang by a thread....
QA->Which chemical is used by weavers for moisturing thread?....
MCQ->A screw thread is a ridge of uniform section in the form of a helix on the external or internal surface of a cylinder.....
MCQ->Consider the following statements Usable bandwidth of ridge wave guide is more than that of rectangular waveguide.For a given value of TM10 cutoff frequency the cross section of ridge wave guide is lesser that that of rect angular waveguide.Ridge wave guide has higher conductor losser than a rectangular waveguide.Ridge guide has higher conductor losser than a rectangular waveguide. Which of the above statements are correct?....
MCQ->Which two are valid constructors for Thread? Thread(Runnable r, String name) Thread() Thread(int priority) Thread(Runnable r, ThreadGroup g) Thread(Runnable r, int priority)....
MCQ->What will be the output of the program? class s1 implements Runnable { int x = 0, y = 0; int addX() {x++; return x;} int addY() {y++; return y;} public void run() { for(int i = 0; i < 10; i++) System.out.println(addX() + " " + addY()); } public static void main(String args[]) { s1 run1 = new s1(); s1 run2 = new s1(); Thread t1 = new Thread(run1); Thread t2 = new Thread(run2); t1.start(); t2.start(); } }....
MCQ->What will be the output of the program? class s implements Runnable { int x, y; public void run() { for(int i = 0; i < 1000; i++) synchronized(this) { x = 12; y = 12; } System.out.print(x + " " + y + " "); } public static void main(String args[]) { s run = new s(); Thread t1 = new Thread(run); Thread t2 = new Thread(run); t1.start(); t2.start(); } }....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use | Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions
Question ANSWER With Solution