1. A place where government / public records are kept

Answer: Archive

Reply

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

Comments

Show Similar Question And Answers
QA->A place where government / public records are kept....
QA->Funds belonging to the Government of India are kept in which fund?....
QA->Name the irrigation project which has entered into the Guiness Book of World Records for pouring 32,100 cubic meters of concrete in 24 hours?....
QA->The highest peak in India as per the records of the govt of India?....
QA->National Crime Records Bureau -യുടെ ഏറ്റവും പുതിയ റിപ്പോർട്ട് അനുസരിച്ച് ഇന്ത്യയിൽ ഏറ്റവും കൂടുതൽ ആത്മഹത്യാ നിരക്കുള്ള ഗ്രാമം?....
MCQ->What will be the output of the program? public abstract class AbstractTest { public int getNum() { return 45; } public abstract class Bar { public int getNum() { return 38; } } public static void main (String [] args) { AbstractTest t = new AbstractTest() { public int getNum() { return 22; } }; AbstractTest.Bar f = t.new Bar() { public int getNum() { return 57; } }; System.out.println(f.getNum() + " " + t.getNum()); } }...
MCQ->Which of the following measures would, result in an increase in the money supply in the economy? 1. Purchase of government securities from the public by the Central Bank. 2. Deposit 'of currency in commercial banks by the public 3. Borrowing by the government from' the Central Bank 4. Sale of government securities to the public by the Central Bank Select the correct answer using the codes given below:...
MCQ->Which of the following statement is correct about the C#.NET code snippet given below? public class Sample { public int x; public virtual void fun() { } } public class DerivedSample : Sample { new public void fun() { } }...
MCQ->Which of the following statement is correct about the program given below? #include<iostream.h> static int Result; class India { public: void Change(int x = 10, int y = 20, int z = 30) { cout<< x + y + z; } void Display(int x = 40, float y = 50.00) { Result = x % x; cout<< Result; } }; class Bix { int x, y; public: void Change(int x, int y = 50) { cout<< x + y; } }; class IndiaBix: public India, public Bix { public: void Display(int x = 10, int xx = 100, int xxx = 1000) { Result = x + xx % x x; cout<< Result ; } }; int main() { IndiaBix objBix; objBix.India::Display(10, 20.00); return 0; }...
MCQ->What will be the output of the following program? #include<iostream.h> class A { public: void BixFunction(void) { cout<< "Class A" << endl; } }; class B: public A { public: void BixFunction(void) { cout<< "Class B" << endl; } }; class C : public B { public: void BixFunction(void) { cout<< "Class C" << endl; } }; int main() { A ptr; B objB; ptr = &objB; ptr = new C(); ptr->BixFunction(); 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 | Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions
Question ANSWER With Solution