::Aptitude Qustions
CareerDice USA    
Carrera de Capacitación y Educación para el empleo y el desarrollo opportunities.Career y asesoramiento para el gobierno y los empleos privados.

Navigation
Job Openings
Interview Tips
Interview Que./Ans.
Resume Builder
Cover Letter
CV Sample
Coverletter Sample
FAQs
 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
Template 4
Template 3
Template 2
Template 1
 
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)