Posted tagged ‘pointer’

Palindromes

August 24, 2011

Problem: this year on October 2, 2001, the date in MMDDYYYY format will be a palindrome (same forwards as backwards).
10/02/2001
when was the last date that this occurred on? (see if you can do it in your head!)

Solution:we know the year has to be less than 2001 since we already have the palindrome for 10/02. it can’t be any year in 1900 because that would result in a day of 91. same for 1800 down to 1400. it could be a year in 1300 because that would be the 31st day. so whats the latest year in 1300 that would make a month? at first i thought it would be 1321, since that would give us the 12th month, but we have to remember that we want the maximum YEAR in the 1300 century with a valid month, which would actually be 1390, since 09/31 is a valid date.

but of course, a question like this wouldn’t be complete without anaha factor. and of course, there are not 31 days in september, only 30. so we have to go back to august 08 which means the correct date would be 08/31/1380.

palindromes also offer another great string question.
write a function that tests for palindromes
bool isPalindrome( char* pStr )

if you start a pointer at the beginning and the end of the string and keep comparing characters while moving the pointers closer together, you can test if the string is the same forwards and backwards. notice that the pointers only have to travel to the middle, not all the way to the other end (to reduce redundancy).

bool isPalindrome( char* pStr )
{
  if ( pStr == NULL )
   return false;
 
  char* pEnd = pStr;
  while ( *pEnd != '' )
    pEnd++;
 
  pEnd--;
 
  while(pEnd > pStr)
  {
    if ( *pEnd != *pStr )
      return false;
 
    pEnd--;
    pStr++;
  }
 
  return true;
}

ERRORS

August 23, 2011

Errors in Measurement :

Error = Measured Value – True Value

E= V– Vt

1. Absolute Error :

01-errors in measurement-absolute error-greater accuracy and precision


            True absolute error :

= Result of measurement – True Value

            Apparent Absolute error :

= Result of measurement – Arithmetic Value

2. Relative error :


It is defined as the results of the absolute error and the value of comparison used for 450

calculation of that absolute error.

01-relative error-percentage relative error-absolute error

Causes of Errors :

1. Calibration Error:

These are caused due to the variation in the calibrated scale from it’s normal value.

01-error-calibration test-calibration of gauges-calibrate a instrument by a standard gauge-Panametrics-NDT_Calibration_Test_Blocks

2. Environmental Error :

These are caused due to humidity condition,Temperature and altitude.

3. Assembly Error:

i. Displaced Scale (incorrect Fitting)

ii. Non –uniform division of the scale.

iii. Due to bent /distorted pointer.

01-parallex error-eye fault defect by human-bias error

4. Random Error:

Naturally Occurred

No specific reasons

5. Systematic errors (or) Bias errors:

These are caused due to repeated readings.

01-errors-types of error-systematic error-random error-bias error

6. Chaotic errors :

These are caused due to vibrations,noises and shocks.