Programming Questions and Answers
TCS (25)
Capgemini (5)
Hewlett Packard Enterprise (5)
Ciena (16)
Adobe (5)
Alcatel-Lucent (6)
Ericsson (1)
Broadcom Ltd (18)
Radisys (6)
Aricent (8)
IpInfusion (1)
Cisco (28)
Brocade (20)
Wipro (25)
Cavium Networks (8)
XiLinx (3)
Juniper Network (10)
HCL Technologies (11)
Amazon (5)
IBM (23)
Global Edge (18)
Accenture (16)
Qualcomm (4)
CA Technologies (6)
Nagarro (8)
Tech Mahindra (1)
Syntel Inc. (10)
Tavant Technologies (15)
Amdocs (1)
Virtusa (36)
PEOL (15)
Sapient (3)
Societe Generale (4)
Wipro NLTH (23)
SAP Labs (18)
TCS NQT (23)
TCS Ninja (4)
TCS Digital (8)
Huawei (1)
Paytm (15)
431 / 434
Calculate the number of all such permutations.
As this number can be large, print it modulo (1e9 +7).
Constraints
0 <= low <= high <= 10^9
K <= 10^6.
Input
First line contains two space separated integers denoting low and high respectively
Second line contains a single integer K.
Output
Print a single integer denoting the number of all such permutations Input
First line contains two space separated integers denoting low and high respectively
Second line contains a single integer K.
Output
Print a single integer denoting the number of all such permutations
Input : 4 5
3
Output :
|
|
|
|
|
Please Login to view the answer
Tags:TCS Digital
432 / 434
Your task is that given the location of the first tree that catches fire, determine how long would it take for the entire forest to be on fire. You may assume that the lay out of the forest is such that the whole forest will catch fire for sure and that there will be at least one tree in the forest
Input Format:
First line contains two integers, M, N, space separated, giving the size of the forest in terms of the number of rows and columns respectively.
The next line contains two integers X,Y, space separated, giving the coordinates of the first tree that catches the fire.
The next M lines, where ith line containing N characters each of which is either T or W, giving the position of the Tree and Water in the ith row of the forest.
Output Format:
Single integer indicating the number of minutes taken for the entire forest to catch fire
Input : 3 3
W T T
T W W
W T T
Output :
|
|
|
|
|
Please Login to view the answer
Tags:TCS Digital
433 / 434
Input Format
2 numbers a and b, separated by space.
Output Format
A single number greater than b.
If not possible, print -1
Constraints
1 <= a,b <= 10000000
Input : 459 500
Output :
|
|
|
|
|
Please Login to view the answer
Tags:TCS Digital
434 / 434
For example, R = 2 and N = 3
All possible seating arrangements are
(1,2) & (3)
(1,3) & (2)
(2,3) & (1)
Attendees are numbered from 1 to N.
Input Format:
The first line contains T denoting the number of test cases.
Each test case contains two space separated integers R and N, Where R denotes the number of round tables and N denotes the number of attendees.
Output Format:
Single Integer S denoting the number of possible unique arrangements.
Constraints:
0 <= R <= 10(Integer)
0 < N <= 20 (Integer)
Input : 1
2 5
Output :
|
|
|
|
|
Please Login to view the answer
Tags:TCS Digital
+ Contribute Programming Qs.
Top Kudos Contributor
Trending Programming Qs.
- Write a program to print next to the last word of a sentence.
- Write a program to reverse the string?
- Write a program to reverse the string?
- Write fibonacci series program. INPUT: 10 term OUTPUT: 0 1 1 2 3 5...
- Given a string, say sentence=" this is crazy and fun" and a list, say ...
- Write a program to print the pyramid up to the passed integer value. ...
Last Month Contributor
- Write a program to count the no. of words in the given string?
- Write a program to print next to the last word of a sentence.
- Write a program to reverse the string?
- Write a program to convert uppercase to lower case and vice versa of a...
- Given a string, say sentence=" this is crazy and fun" and a list, say ...