Question
Can one accept the prize given by banks?

Answers

If a condition is imposed in some matter on an account-holder of the bank and the prize is given on the fulfilment of the condition, it is not permissible to give the prize or to accept it. But if a bank, whether owned by government or by the public or by both gives prizes to its customers unconditionally, the person who wins can accept it with the permission of the Mujtahid or his representative as derelict property. And if the bank is owned by a private party, it is not necessary to obtain any permission before accepting the prize. [1] 2:281.   Your Comment






Search
Can you Answer!!
  • Q Define Continuity of a function f(x,y) at a point (a,b)
  • Q Explain what is a replica set?
  • Q What is the Indian name for the planet Mercury?
  • Q Have you ever starred in an amateur or professional video?
  • Q G.N Bajpai committee is related to which of the following?
  • Q What is the best way to win in monopoly? Is this possible in real life?
  • Q Why do you feel that you are the best person for this job?
  • Q What is the salivary digestive enzyme? Which type of food does it digest and into which smaller molecules does it transform the food?
  • Q What is Radio Frequency Mathematics ?
  • Q Name Donald Ducks father
  • Q What will happen when you attempt to compile and run this program public class Outer{ public String name = "Outer"; public static void main(String argv[]){ Inner i = new Inner(); i.showName(); }//End of main private class Inner{ String name =new String("Inner"); void showName(){ System.out.println(name); } }//End of Inner class } 1) Compile and run with output of "Outer" 2) Compile and run with output of "Inner" 3) Compile time error because Inner is declared as private 4) Compile time error because of the line creating the instance of Inner