Answer in C#
public static int FindMax( int[] input )
{
int max = Int32.MinValue;
for ( int i = 0; i < input.length; i++ )
{
if ( i ...
Published Questions » Technical Questions
Find largest element in array
Posted by CMasterCan you explain calibration?
Posted by priyanka
Calibration is a part of ISO 9001 quality model. It includes tracing the accuracy of the devices used in the production, development and testing. Devi ...
An Elementary process is the smallest unit of any business activity. It has to have a meaning or a purpose. An elementary process is complete, wh ...
What is Mutex?
Posted by CMaster
A mutex is a binary semaphore that usually incorporates extra features, such as ownership, priority inversion protection or recursivity.
The differences between mutexes and semaphores are that semaphores are operating system dependent, though mutexes are implemented by specialized and f ...
Stack and Queue interview questions
Posted by CMaster
Stack and Query structures in computing are extremely fundamental and important. Then interviewing I expect candidate to fully understand this data s ...
This is an important metric to measure effectiveness of the testing process.
Defect detected in production = Defects detected in production/System siz ...
How do you plan test automation?
Posted by priyanka
Understand the Requirements
Prepare the automation Test plan
Environment setup
Identify the scenario, test scripts and test data preparation
Execute ...
