What do you mean by an array ? explain with an example
Answer Posted / ramyathillainathan
An array is a fixed size sequenced collection of elements of the same data type. An array is defined as group of related data that share on common name.
for example:
salary [10]
represent the salary of 10 th employee .
| Is This Answer Correct ? | 8 Yes | 0 No |
Post New Answer View All Answers
Given a set. Write the pseudo code to get all the subsets for the given set. Eg. Input : {1,2} Output : (),(1),(2),(1,2)
One boy has to climb steps. He can climb 1 or 2 steps at a time. Write a function that will returns number of way a boy can climb the steps. Int WaytoSteps(int n) (eg:- suppose number of steps is n=4 ,the function will return 5 (one-one-one-one ,one-one-two, one-two-one-,two-one-one, two-two)
differences between qtp10.0 and 11.0 ?
SAS question: I have 50 fils a1,a2,...,a50. the primary key is upc. then if i want to merge all 50 files, the code is as follows, data test; merge a1 ... a50; by upc; run; we know that writing all 50 files name is time consuming, is there any standard format of this code?
I need to fetch all rows from the table based one field value in the table and later do a condition check if the condition is true I will have to move all the rows present in the data base to output file one else if the condition is not satisfied then move all the records of that field value into another file .Please let me know how to do that
1.Mutating table
could you please tell me how to draw the calibration curve for HPLC {the software which we are using}?
what is best way to create a Thread class & why?
1.what is the vesition managment.
I am taking the bmc control m/enterprise manager 7.0 scheduling test and just wanted to see what kind of questions they would ask or if anyone has taken the test and how long it is for how many questions?
how many types of bytes are there???
4. What is the need of START 0? Instead if can we use any other numeric? If we use what will happen?
Diffrence between 2.0,3.0,3.5,4.0. versions of .net?
Write a pseudo code to evaluate a number to any base given (2...16) based on the input. Number greater than 9 should be given as A-F for 10-15.
is it acceptable if we declare multiple exceptions in same overridden method.