Wipro
Company
Programming
Technical
Write a program in java by receiving a matrix 3x3 matrix. that first element is s=1, and the matrix elements increase by 1,like
1 2 3
4 5 6
7 8 9
hence here s=4;generate a matrix and find its transpose, and find the multiplication of original matrix with its transpose.
print all the matrix.
Read Solution (Total 5)
-
- QUESTIONS ASKED IN WIPRO EXAM ON 1ST AUGUST
(1) She "HAS LIVED" in chennai she was eight years
a)Lived
b)Has been Living
c)Had Stayed
d)is living ( ans ) lived
(2)meaning and oppsite on shabby
(3) they bought tv ----------- damage condition OPTIONS : (a) in (b) on (c) by
Answer is IN DAMAGED CONDITION
(4) how many liters of a 90%solution of a concentrated acid needs to be mixed with 75% solution of concentrated acid to get 30L solution of 78% concentrated acid?
a)24L
b)22.5L
c)6L
d)17.5L (answer ) : 6 liters
(4) arrange words
Menu
Order
Celebrate
Plan
hotel
(5) Excessive amounts of mercury in drinking water, associated with certain types of industrial pollution have been shown to cause Hobsons disease. Island L has an economy based entirely on subsistence level agriculture modern industry of any kind is unknown. The inhabitants of Island L have unusually high incidence of Hobsons disease.
a)Mercury in drinking water is actually perfectly safe
b)Mercury in drinking water must have sources other than industrial pollution
c)Hobsons disease must have causes other than mercury in drinking water
d)Both options (1) and (2)
e)Both options (3) and (2) answer is ( E )
(6) find number series 987:876::765:_______ options (a) 654 (b) 456 (c) 656
Answer is [ 7-1=6 , 6 -1 =5 , 5-1 =4 ]
(7) aptitude question a2-b2/(a-b)2 = 2 where a=4 b=? (a) 2/3 (b) 3/2 (c) 4/3 some thing I don’t know
(8) number 1 is known as --------------
Options (a) positive integer (b) negative number (c) prime number
(9) what is the value of 15c3 options (a)120 (b)210 (c)125 (d)211
print the pattern
give input 3 we should get below type patern
2*3*4
7*8*9
4*5*6
input 5
1*2*3*4*5
4*5*6*7*8
11*12*13*14*15
21*22*23*24*25
like this
- 9 years agoHelpfull: Yes(7) No(0)
- Program link : http://ideone.com/6PqIQW
- 9 years agoHelpfull: Yes(4) No(0)
- hey same questions appeared in my wipro exam
- 9 years agoHelpfull: Yes(3) No(0)
- int fun(int n,int x)
{
int i,cnt=0;
while(n!=0)
{
i=n%10;
if(i==x)
{
cnt++;
}
n=n/10;
}
return cnt;
} - 6 years agoHelpfull: Yes(0) No(0)
- #include
int main(void) {
int co,k=0,i,j,n,a[8][8],b[8][8],c[8][8];
int s=4;
co=s;
for(i=0;i - 6 years agoHelpfull: Yes(0) No(1)
Wipro Other Question