Our online C++ programming test is the most effective tech assessment to gauge a candidate’s knowledge of C++ programming. C++ assessment test can reduce hiring cost by 40% and help in building winning tech teams.
C++ is a high-level, general-purpose programming language with object-oriented, generic, and functional features. CPP is an extension of the C programming language. Online C++ programming test helps tech recruiters and hiring managers to evaluate C++ programming skills of the developers before an interview. This C++ assessment test is designed by experienced Subject Matter Experts (SME) to assess and hire C++ Programmers as per the industry standards.
<p paraeid="{2144e1f6-62bf-4810-b64f-0f55b9043295}{22}" paraid="1577940080"><strong>C++ interview test helps to screen the candidates who possess traits as follows: </strong> </p>
<ul>
<li paraeid="{2144e1f6-62bf-4810-b64f-0f55b9043295}{28}" paraid="280662600">Ability to design and build efficient, reusable, and reliable C++ code </li>
<li paraeid="{2144e1f6-62bf-4810-b64f-0f55b9043295}{34}" paraid="1387857909">Familiarity with data structures, optimum programming skills, object-oriented concepts </li>
<li paraeid="{2144e1f6-62bf-4810-b64f-0f55b9043295}{40}" paraid="1273327659">Knowledge of standard libraries and system call wrapper library functions </li>
<li paraeid="{2144e1f6-62bf-4810-b64f-0f55b9043295}{46}" paraid="989056190">Familiarity with templating in C++ </li>
<li paraeid="{2144e1f6-62bf-4810-b64f-0f55b9043295}{52}" paraid="1763036503">Experience of working with embedded system designs </li>
</ul>
<p paraeid="{2144e1f6-62bf-4810-b64f-0f55b9043295}{58}" paraid="529427473">This C++ test contains a coding simulator which will automatically evaluate and provide a score for the candidate’s written codes by compiling multiple test cases that generate discrete output. You will also get a detailed report for each test case execution along with execution-time and execution memory usage for the program written by the candidate. The Code-Replay feature records the coding screen of the candidate so that the reviewer can understand the coding and thinking patterns of the candidate. </p>
<p paraeid="{2144e1f6-62bf-4810-b64f-0f55b9043295}{66}" paraid="1011373628">Test for C++ may contain coding questions and innovative AI-LogicBox (an AI-based pseudo coding platform) questions to assess a candidate's coding skills in a fun and quick way. </p>
Given two numbers X and Y, print the total number of palindrome between X and Y (including X and Y).
Note
A palindrome is any number or string, if read in reverse, means the same.
Example of Palindrome Number
Palindromes: 5, 121, 11, 11411
Not Palindromes: 122, 10
Input Format
Input X number
Input Y number
Output Format
Print an integer showing total number palindrome.
Sample Input10 -- value of X
13 -- value of Y
Sample Output
1
Explanation
There is only 1 palindrome number between 10 and 13 i.e. 11