i have an array of 10 objects whose values are from 1-10
randomly inserted. i have deleted one array object.
tell me what is that value? write the logic of it.
Answers were Sorted based on User's Feedback
Answer / rajani
Suren is right to some extent.if in case of random 10 number also. first take the sum of all numbers by running a loop. then delete a number . again run the loop and find the sum then subtract second from first .
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / suren
its simple for guys 4m Engineering background.
if u have an idea with series of numbers, (n(n+1)/2)
first take the sum of all the objects in array, next
subtrat the sum of arrays after deletion of object. this
will give you the deleted object value.
1,2,3... 10; sum = 10(10+1)/2=55
suppose the value of object deleted is 6;
then sum of the array after deletion will be 49;
55-49=6 ANS:
| Is This Answer Correct ? | 12 Yes | 8 No |
what is the difference between class and structures?
Can u any body send the DotNet Interview questions and answers to my mail please....... mindukuru@yahoo.com
What is an interface and what is an abstract class? Please, expand by examples of using both. Explain why?
can any one tel me the complete Testing Procedure of any one simple PROJECT i mean either web/windows based application?
What's the use of system.diagnostics.process class in .net?
Which file is taken by compiler when we have both file Application and Server Configuration file?
What is the difference between response.write & response.output.write?
Explain me what is the .net framework and how does it work?
Explain manifest & metadata.
What are good ADO.NET object(s) to replace the ADO Recordset object.
What is the difference between odbc and ado?
Please explain what is a delegate?