1. The least count of screw gauge is given by:





Write Comment

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

Comments

Tags
Show Similar Question And Answers
QA->Who discovered Archimedean Screw ?....
QA->Archimedean Screw was invented by ?....
QA->Which English actor, famous for his role as Count Dracula, passed away recently?....
QA->What was the rank of the host country (Britain) in the medal count of 2012 Summer Olympics ?....
QA->Which country topped in the medal count of 2012 Summer Olympics ?....
MCQ->Which of the following statements are correct about the C#.NET code snippet given below? namespace IndiabixConsoleApplication { class index { protected int count; public index() { count = 0; } } class index1: index { public void increment() { count = count +1; } } class MyProgram { static void Main(string[] args) { index1 i = new index1(); i.increment(); } } } count should be declared as public if it is to become available in the inheritance chain. count should be declared as protected if it is to become available in the inheritance chain. While constructing an object referred to by i firstly constructor of index class will be called followed by constructor of index1 class. Constructor of index class does not get inherited in index1 class. count should be declared as Friend if it is to become available in the inheritance chain.....
MCQ->What will be the output of the program? class BoolArray { boolean [] b = new boolean[3]; int count = 0; void set(boolean [] x, int i) { x[i] = true; ++count; } public static void main(String [] args) { BoolArray ba = new BoolArray(); ba.set(ba.b, 0); ba.set(ba.b, 2); ba.test(); } void test() { if ( b[0] && b[1] | b[2] ) count++; if ( b[1] && b[(++count - 2)] ) count += 7; System.out.println("count = " + count); } }....
MCQ->Assertion (A): A semiconductor strain gauge is more accurate than a resistance strain gauge.Reason (R): The gauge factor of a semiconductor strain gauge is about 100 where as the gauge factor of a resistance strain gauge is only about 2.

....
MCQ-> Study the following information carefully and answer the question given below: Following are the conditions for selecting Senior Manager General Banking in a bank: (i) have secured at least 60 percent marks in Std XII. (ii) have secured at least 55 percent marks in Graduation in any discipline (iii) have secured at least 60 percent marks in Post-graduate degree/diploma in Management/Economics/Statistics. (iv) be at least 25 years and not be more than 35 years as on 01.03.2010. (v) have post qualification work experience of at least 2 years as General Banking Officer in a bank. (vi) have secured at least 50 percent marks in written examination. (vii) have secured at least 40 percent marks in Personal Interview. In the case of a candidate who satisfies all the above conditions Except----- (a) at (iii) above but has secured at least 60 percent marks in CA or ICWA the case is to be referred to VP-Recruitment. (b) at (vii) above but have secured at least 65 percent marks in the written examination and at least 35 percent marks in the personal interview the case is to be referred to President Recruitment. In each question below are given details of one candidate You have to take one of the following courses of actions based on the information provided and the conditions and sub-conditions given above and mark the number of that course of action as your answer You are not to assume anything other than the information provided in each question All these cases are given to you as on 01.03.2010. Mark answer (a) if the data provided are inadequate to take a decision Mark answer (b) if the case is to be referred to VP- Recruitment Mark answer (c) if the case is to be referred to President Recruitment Mark answer (d) if the candidate is to be selected Mark answer (e) if the candidate is not to be selected.Kesav vora was born on 8th November 1978 He has secured 65 per cent marks in Std. XII and 60 per cent marks in Graduation He has secured 58 percent marks in M.A. Economics and 60 per cent marks in ICWA He has been working in a bank as generalist officer for the past two years after completing his education He has also secured 50 per cent marks in the written examination and 45 percent marks in personal interview.
 ....
MCQ->What will be the output of the following program? #include<iostream.h> class IndiaBix { static int count; public: static void First(void) { count = 10; } static void Second(int x) { count = count + x; } static void Display(void) { cout<< count << endl; } }; int IndiaBix::count = 0; int main() { IndiaBix :: First(); IndiaBix :: Second(5); IndiaBix :: Display(); return 0; }....
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
DMCA.com Protection Status Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions