::Aptitude Qustions
CareerDice USA    
 

Navigation
Job Openings
Interview Tips
Interview Que./Ans.
Resume Builder
Cover Letter
CV Sample
Coverletter Sample
FAQs
 Jobs By Location
Jobs in London
Jobs in Birmingham
Jobs in Liverpool
Jobs in Nottingham
Jobs in Manchester
 Student Section
Hot Fresher's Job
Government Jobs
 Question Papers
Aptitude Questions
Group Discussion Topics
HR interview Questions
Group Discussion Tips
Technical Interview Questions
 Career
Employment Agency
Career Counseling
Career Training
Career Education
Career Builder
Career Opportunity
Career Development
Quick Job Search
Enter keywords
 
 
Username Password
Not Registered? Register Now
Technical Interview Questions
Q1 How do you center a form?
Q2 Palindrome no?
Q3 Remember to be yourself, know your strengths and be honest with the interviewer 7.Practice is the ...
Technical Interview Questions
Q.6 How do you center a form?
Ans. In the form properties, the startup position property is having two option regarding Center the form.
Q.6 Palindrome no?
Ans. 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 != '\0' )
pEnd++;

pEnd--;

while(pEnd > pStr)
{
if ( *pEnd != *pStr )
return false;

pEnd--;
pStr++;
}

return true;
}
Q.6 Remember to be yourself, know your strengths and be honest with the interviewer 7.Practice is the keys to interviewing
Ans. 35/45
 
 
Job Category
  Accounting Category (0)
  Administrative Category (0)
  Agriculture Category (0)
  Architecture/Design Category (0)
  Arts/Entertainment Category (0)
  Banking Category (0)
  Biotech Category (0)
  Brokerage Category (0)
  Customer Care Category (0)
  Designer (0)
  Diplomatic Services/ Govt. (0)
  Distribution / Shopping (0)
  Education / Academics (0)
  Energy/Gas/Electricity/Water (0)
  Engineering (0)
  Library Management (0)
  Medical Devices (0)
  Non-profit/Associations (0)
  Restaurant - Food Service (0)
  Telecommunications Management (0)