
Asked in TCS
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...
Top System Engineer Interview Questions Asked at TCS
Q. What functions have you used in Flask to connect with PostgreSQL?
Q. Write a program to reverse a string.
Q. What is the difference between a hashtable and a hashmap?
Interview Questions Asked to System Engineer at Other Companies
Top Skill-Based Questions for TCS System Engineer
Python Interview Questions and Answers
400 Questions
Networking Interview Questions and Answers
250 Questions
Java Interview Questions and Answers
250 Questions
Algorithms Interview Questions and Answers
250 Questions
Data Structures Interview Questions and Answers
250 Questions
Operating Systems Interview Questions and Answers
250 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

