Skip to main content

Posts

Showing posts with the label Basics

The Principle of Islamic jurisprudence

Emergence of UsË al-Fiqh(The principle Islamic jurisprudence)  After the prophetic period, Muslims refer to Quran and Sunnah as the last resort to find solutions to the problems they had   In the search for the solutions Muslim scholars resorted to reason as a means to interpret the Quran and Sunnah  Reason being naturally subjective1, there are differences in the interpretation of certain words.   To avoid having unguided interpretation, scholars of the first and second centuries concerned themselves with laying down the rules of interpretation introducing methods that will govern the use of reason. This has led to the emergence of schools of Fiqh.   A well developed science known as UsËl al-Fiqh later emerged from those rules of interpretation and methods of reasoning.  Definition of UsËl al-Fiqh   Usul mean foundation or basis upon which the Fiqh is built.  Usul al-fiqh is a body of principles and methods by which the rules of Fiqh ar...

Insert Table In MS Word

  How to insert Table in MS-Word : The Way to Produce Dining Tables Graphic Grid/Select Table out of Graph The Way to create and customize tables from Microsoft Word. Notice that when the table is made, a new choice named Table Tools seems with two tabs that are fresh: Layout and Design. See the Design and Layout section below for information about these options.Under the Insert tab, then click the Table button. The Insert Table dialog box will open, revealing menu choices in addition to a grid layout . Make a table with the grid that is graphical. Seven Strategies to make celebrity Tables from Microsoft Word used to be so bothersome that people did it then imported it. It is well worth mentioning a go, however to the table tools of Word 2013, since the procedure is simpler, and there are some alternatives that are graphical. Microsoft provides five procedures for producing the Graphic Grid tables, Insert Table, Draw Table, insert a Excel Spreadsheet dining tabl...

Java Projects

How to Make Basic Java programs: Java is one of the best programming language to make GUI and many other departmental software for making computer handling software . Through java programming you can make games , calculators , ticket Machine and related software because it deals with some wide range of built in functions which every programming language do exist.. Here below is the Code through which you can easily make some basic four programs : Even or Odd : import java.util.Scanner; public class EvenorOdd { public static void main(String Args[]) { int x; System.out.println( "Enter the number" ); Scanner input = new Scanner(System.in); x=input.nextInt(); if (x % 2 ==0) System.out.println( "The number is even" ); else System.out.println( "The number is odd" ); } } Radius :