Company Name Starts with ...
#  A  B  C  D  E   F  G  H  I  J   K  L  M  N  O   P  Q  R  S  T   U  V  W  X  Y  Z

ACIO Interview Questions
Questions Answers Views Company eMail

The Chairman of the Drafting Committee to prepare a Draft Constitution of India was (a) Shri Jawaharlal Nehru (b) Dr. Rajendra Prasad (c) Dr. B. R. Ambedkar (d) Dr. S. Rahdakrishnan

6 12773

As per Article 100(3), the quorum to constitute a meeting either House of Parliament is (a) One-tenth of the total number of members of that House (b) One-fourth of the total number of members of that House (c) One-fifth of the total number of members of that House (d) One-third of the total number of members of that House

1 5801

. The quorum of parliament is ……of the membership of the House? (1) One-third (2) Two-thirds (3) One-half (4) One-tenth

3 5599

. The foundation of modern educational system in India was laid by (a) The Chapter Act of 1813 (b) Macaulay’s Minutes of 1835 (c) The Hunter Commission of 1882 (d) Wood’s Despatch of 1854

5 34026

. Who among the following is said to have witnessed the reigns of eight Delhi Sultans? (a) Ziauddin Barani (b) Shams-i-Siraj Afif (c) Minhaj-us-Siraj (d) Amir Khusrau

3 16536

. The acceleration due to gravity of a catastrophic earthquake will be (a) > 550 cm/sec2 (b) > 750 cm/sec2 (c) > 950 cm/sec2 (d) > 980 cm/sec2

1 7370

Which of the following gases is not known as green house gas? 1 Carbon dioxide 2 Methane 3 Nitruous oxide 4 Hydrogen

4 23961

Old-written material, which cannot be read easily, can be read by 1 Cosmic rays 2 Ultraviolet rays 3 Infra red rays 4 None of these

1 14568

Water is neither acidic nor alkaline because 1 It cannot accept or donate protons 2 It boils at a high temperature 3 It can dissociate into equal number of hydrogen ions 4 It cannot donate or accept electrons

2 11506

Indira is three times older than yogesh while zaheer is half the age of wahida.if yogesh is older than zaheer then which of following statements can be inferred. 1.yogesh is older than wahida 2.indira is older than wahida 3.indira may be younger than wahida 4.none of above

2 8006

what are the general questions asked for acio interview?? quick reply is appreciated

1687

Post New ACIO Interview Questions




Un-Answered Questions

How can I lock and unlock the VSS database prior to running Analyze or backing up the database?

927


Topics: Structures, Arrays, Searching and Sorting Assume there is a small mobile computer device including a hard disk and a slot for a memory card. The device shall be used to backup photos e.g. during holiday. Every time a memory card is connected all photos of the card are copied into a new folder automatically. And your task is to develop some basic controlling software to show, add, remove, search and sort the directories of photos. Step by Step Implementation 1.Define two symbolic constants, one to hold the total volume of the disk (e.g. VOLUME) and another one to hold the number of entries the files system of the device can handle (MAXFOLD). 2.Define a new structure data type named DATE to store a date consisting of year, month and day as unsigned values. 3.Define an other structure data type FOLDER to store the information of one folder of photos: ◦A title as character array of appropriate length ◦The location (event) the photos are taken as character array of appropriate length ◦The date of the day the photos are copied to the disk using the just defined data type DATE ◦The number of photos as natural number ◦And the size of the folder in MB as floating point value 4.Define the following global variables and initialise them: ◦disk as an array with MAXFOLD elements of data type FOLDER ◦folders as natural value to count the number of folders currently stored at the disk (valid elements in the array) TEST: Now you should be able to compile the code the first time without any warning or error. In the menu only "p" to print and "q" to quit will work!. 5.Now complete the functions given by their prototype: float freeSpace ();The function has to calculate the sum of the size component of all elements currently stored in the disk array. The function shall return the free space of the disk by the difference between the available total volume and the calculated sum. TEST: To test this function you only need to uncomment printing the "statusline" at the function actionmenu(). Compare the calculated value with a manual calculation of the example values given above. unsigned isBefore (DATE, DATE);The function checks if one date is before the other. There are 3 different possibilities which have to be handled. Imagine for example these 3 different combinations of values: ◦2010-01-01 : 2010-01-02 ◦2010-01-01 : 2010-02-01 ◦2010-01-01 : 2009-01-01 The function shall just return the result of the comparison. unsigned isEqual (DATE, DATE);The function checks if one date is equal to the other, all components have to be compared. The function shall just return the result of the comparison. int findByDate (DATE);As the array is should be kept in order (sorted by date) implement a binary search for a folder by its date here. You need only to adapt the binary search we used in the exercise. Use the 2 comparing functions above where appropriate. The function shall return the index of the element which was found or -1. TEST: Now you can try searching a folder by date via the "s" in the menu. Activate the corresponding part in the main function. int isSpaceLeft (FOLDER);This function compares the free space of the disk with the size of folder given with the parameter list. The function shall return 1 if there is enough space to add the folder, otherwise 0 (just the result of the comparison). void SortByDate ();This function shall implement the InsertionSort using the component date as key. Use the provided algorithm/souce code of the exercise as template. If you need a comparison between dates, use the function isBefore you have written again. void addFolder (FOLDER);The function has to check if the disk has additional capacities to add the new folder (number of folders and space left). If at least one of these conditions is false print an error message and return -1. Else there has to be added an other test to avoid 2 folder elements with the same date (use the findByDate function here. If there is no folder with the new date simply attach the new folder at the end of the array and call the sorting algorithm afterwards to keep the order in the array. TEST: Now you can try to add a folder via the "a" in the menu. Activate the corresponding part in the main function. void delDir (int);This function removes one element of the disk array. The input parameter contains the index of the element to delete. Deletion can simply be done by moving all elements at the right one to the left (overwriting the element to delete. The function may get a -1. This has to be checked first (certainly there is nothing to delete then!) Don't forget to decrement the counter of elements at the end. TEST: Now you can try to remove a folder by date via the "r" in the menu. Activate the corresponding part in the main function. unsigned findAllOfLocation(char[], FOLDER[]);This is an optional additional task: The function shall find all elements with the given value for the component location (first input parameter). The array elements which are found have to be added to the FOLDER array (second input parameter). As this parameter is an array we can use the result later in the main function. There kernel of function implements a modified linear search on the disk array (it does not stop if one element is found bat continues search until the location of all elements is checked). The finally function shall return the number of elements found in the disk array. TEST: Now you can try to add a folder by date via the "l" in the menu. Activate the corresponding part in the main function.

1948


How do you post on a website?

89


Why is C not an OOP language?

576


Is tuple immutable?

443






What are the main attributes of test automation?

1530


What is name of first file that loaded in laravel?

467


What are the key benefits of using storm for real time processing?

293


What is the ratio of grades m5, m7.5, m10, m15, m20, m25, m30, m35, m40?

658


Why do we need polymorphism in c#?

672


IS it possible to built the oracle database without setting the kernal parameters?

1753


What is css1 and css2?

262


How interceptor works in struts 2?

583


identification is for unknown? qualification for known? reporting for LOQ?

272


What is handler method in spring?

175