Binary Pattern Problem Statement
Given an input integer N
, your task is to print a binary pattern as follows:
Example:
Input:
N = 4
Output:
1111
000
11
0
Explanation:
The first line contains 'N' 1s. The next line contains 'N - 1' 0s, followed by 'N - 2' 1s on the next line, and so forth.
Input:
The first line of input contains an integer 'T' representing the number of test cases.
The first line of each test case contains a single integer 'N'.
Output:
For each test case, print 'N' lines containing the pattern, where the 'I-th' line contains N - I + 1
numbers alternatively being 1 or 0, depending on the 'I' value.
Constraints:
1 ≤ T ≤ 10
1 ≤ N ≤ 103
- Time Limit: 1 sec

AnswerBot
4mo
Print a binary pattern based on input integer N in a specific format.
Iterate from N to 1 and print N - i + 1 numbers alternatively as 1 or 0 in each line
Handle the test cases by reading the number of ...read more
Help your peers!
Add answer anonymously...
TCS System Engineer interview questions & answers
A System Engineer was asked 3d agoQ. Write a program to reverse a string.
A System Engineer was asked 1w agoQ. Could you explain the concepts of Object-Oriented Programming (OOP)?
A System Engineer was asked 1w agoQ. What are the best practices for making API calls in Python?
Popular interview questions of System Engineer
A System Engineer was asked 1w agoQ1. Could you explain the concepts of Object-Oriented Programming (OOP)?
A System Engineer was asked 1w agoQ2. What are the best practices for making API calls in Python?
A System Engineer was asked 1w agoQ3. How proficient are you in Python?
Top HR questions asked in TCS System Engineer
A System Engineer was asked 1mo agoQ1. Are you open to the possibility of relocating?
A System Engineer was asked 1mo agoQ2. What can you explain about internships and the differences between mini and majo...read more
A System Engineer was asked 1mo agoQ3. Can you describe the project you completed at the university level?
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

