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.
Answer Posted / 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 |
Post New Answer View All Answers
Can a try block have more than one catch block?
Explain the difference between garbage collections in .net 4.0 and earlier versions?
Please explain what is the difference between encrypting a password and applying a hashing?
What are code contracts?
A developer company sends dlls to the client. Some client is not happy current functionality, so request some modification. Developer made some changes and send new dll to all clients. Some client is happy with old version, tell me minimal change to so that neither clients get affected?
Is .net 4.8 backwards compatible?
What is interface and abstract class in .net?
What do you mean by web service?
What is .net and why it is used?
Can "this" be used within a static method?
Example from .net. Integer & struct are value types or reference types in .net?
Explain me what is a design pattern and what is it for?
If we write any code for DataGrid methods, what is the access specifier used for that methods in the code behind file and why?
Explain .net framework overview?
Explain how to load the contents of an xml file into an xmldocument object?