Binary Palindrome Check
Given an integer N
, determine whether its binary representation is a palindrome.
Input:
The first line contains an integer 'T' representing the number of test cases.
The next 'T' lines each contain a single integer 'N'.
Output:
For each test case, return true if the binary representation of the given integer is a palindrome; otherwise, return false.
Example:
Input:
T = 2
N = 5
N = 10
Output:
true
false
Explanation:
Binary representation of 5 is 101, which is a palindrome. Binary representation of 10 is 1010, which is not a palindrome.
Constraints:
1 ≤ T ≤ 100
1 ≤ N ≤ 1018
Note: You are not required to print anything; it has already been taken care of. Just implement the function to return the answer.

AnswerBot
4mo
Check if the binary representation of a given integer is a palindrome.
Convert the integer to binary and check if the binary string is a palindrome.
Use bitwise operations to manipulate the binary repre...read more
Help your peers!
Add answer anonymously...
Bank of America Software Developer interview questions & answers
A Software Developer was asked 4mo agoQ. What are the differences between var, const, and let in JavaScript?
A Software Developer was asked 5mo agoQ. What core programming concepts were covered in your experience?
A Software Developer was asked Q. Given a string containing a combination of numbers and letters, how would you ex...read more
Popular interview questions of Software Developer
A Software Developer was asked 6mo agoQ1. What core programming concepts were covered in your experience?
A Software Developer was asked Q2. Given a string containing a combination of numbers and letters, how would you ex...read more
A Software Developer was asked Q3. You are a captive. If you say the right answer, the assassin will hang you; if y...read more
>
Bank of America Software Developer Interview Questions
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

