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.
C++ interview test helps to screen the candidates who possess traits as follows:
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.
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.
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