MCQsExam.com

Classes
22
Learn Discover
Subjects
91
Practice Master
MCQs
3401
Succeed Target
What is the loss function typically used in Linear Regression?
  1. A-Cross-entropy loss
  2. B-Mean absolute error (MAE)
  3. C-Mean squared error (MSE)
  4. D-Hinge loss
  5. Posted By: MCQSEXAM
  6. Data Science / Linear Regression
  7. More about this MCQ
What does the term "line of best fit" refer to in Linear Regression?
  1. A-The line that passes through the origin
  2. B-The line with the maximum slope
  3. C-The line that minimizes the sum of squared errors
  4. D-The line that intersects the most data points
  5. Posted By: MCQSEXAM
  6. Data Science / Linear Regression
  7. More about this MCQ
Which of the following is a assumption of Linear Regression?
  1. A-The relationship between the independent and dependent variables is linear
  2. B-The data is normally distributed
  3. C-The data contains no outliers
  4. D-The number of features is greater than the number of samples
  5. Posted By: MCQSEXAM
  6. Data Science / Linear Regression
  7. More about this MCQ
What is the primary objective of Linear Regression in machine learning?
  1. A-Classification
  2. B-Clustering
  3. C-Prediction
  4. D-Feature extraction
  5. Posted By: MCQSEXAM
  6. Data Science / Linear Regression
  7. More about this MCQ
What is the purpose of Django's distinct() method?
  1. A-It removes duplicate rows from query results
  2. B-It retrieves related objects after the main query is executed
  3. C-It performs additional filtering on query results
  4. D-It orders query results in ascending or descending order
  5. Posted By: MCQSEXAM
  6. Computer Science MCQs / Django
Which of the following is NOT true about Django's update() method?
  1. A-It updates multiple objects in the database efficiently
  2. B-It can only be used with integer fields
  3. C-It returns the number of rows affected by the update operation
  4. D-It can accept keyword arguments to specify the fields and their new values
  5. Posted By: MCQSEXAM
  6. Computer Science MCQs / Django
What does the delete() method do in Django models?
  1. A-Updates the existing object in the database
  2. B-Deletes the object from the database
  3. C-Inserts a new object into the database
  4. D-Performs a raw SQL query
  5. Posted By: MCQSEXAM
  6. Computer Science MCQs / Django
Which of the following is NOT true about Django's get_or_create method?
  1. A-It retrieves an object from the database or creates it if it doesn't exist
  2. B-It returns a tuple of (object, created), where created is a boolean value
  3. C-It raises a MultipleObjectsReturned exception if multiple objects are foun
  4. D-It can only be used with integer fields
  5. Posted By: MCQSEXAM
  6. Computer Science MCQs / Django
What does the save() method do in Django models?
  1. A-Updates the existing object in the database
  2. B-Deletes the object from the database
  3. C-Inserts a new object into the database
  4. D-Performs a raw SQL query
  5. Posted By: MCQSEXAM
  6. Computer Science MCQs / Django
Which Django command is used to create a new Django project?
  1. A-django create
  2. B-django startproject
  3. C-python startproject
  4. D-python create
  5. Posted By: MCQSEXAM
  6. Computer Science MCQs / Django
What is the purpose of Django's values method?
  1. A-To return a list of dictionaries containing specific field values
  2. B-To execute a raw SQL query
  3. C-To retrieve related objects after the main query is executed
  4. D-To perform aggregation functions on querysets
  5. Posted By: MCQSEXAM
  6. Computer Science MCQs / Django
Which of the following is NOT true about Django's distinct method?
  1. A-It removes duplicate rows from query results
  2. B-It can be used with the annotate method
  3. C-It is only available for PostgreSQL databases
  4. D-It can improve query performance
  5. Posted By: MCQSEXAM
  6. Computer Science MCQs / Django
What does the extra method do in Django's queryset API?
  1. A-Adds extra SQL clauses to the query
  2. B-Retrieves related objects after the main query is executed
  3. C-Performs additional filtering on query results
  4. D-Orders query results in ascending or descending order
  5. Posted By: MCQSEXAM
  6. Computer Science MCQs / Django
Which of the following is NOT a valid field option in Django models?
  1. A-default
  2. B-choices
  3. C-related_model
  4. D-verbose_name
  5. Posted By: MCQSEXAM
  6. Computer Science MCQs / Django
What is the purpose of Django's bulk_update method?
  1. A-To create multiple objects in a single database query
  2. B-To update multiple objects in the database efficiently
  3. C-To perform a bulk delete operation using raw SQL
  4. D-To retrieve related objects after the main query is executed
  5. Posted By: MCQSEXAM
  6. Computer Science MCQs / Django
In Django, what does the select_for_update method do?
  1. A-Retrieves related objects after the main query is executed
  2. B-Locks selected rows in the database to prevent concurrent updates
  3. C-Performs a raw SQL query
  4. D-Filters query results based on a condition
  5. Posted By: MCQSEXAM
  6. Computer Science MCQs / Django
Which of the following is NOT a valid database transaction isolation level in Django?
  1. A-READ COMMITTED
  2. B-READ UNCOMMITTED
  3. C-REPEATABLE READ
  4. D-SERIALIZABLE READ
  5. Posted By: MCQSEXAM
  6. Computer Science MCQs / Django
What does the bulk_create method do in Django?
  1. A-Deletes multiple objects from the database
  2. B-Creates multiple objects in a single database query
  3. C-Updates multiple objects in the database
  4. D-Performs a bulk insert operation using raw SQL
  5. Posted By: MCQSEXAM
  6. Computer Science MCQs / Django
Which of the following is NOT true about Django's F object?
  1. A-It allows referencing model fields in queries
  2. B-It is used to perform mathematical operations in queries
  3. C-It can only be used with integer fields
  4. D-It helps avoid race conditions in database updates
  5. Posted By: MCQSEXAM
  6. Computer Science MCQs / Django
What is the purpose of Django's annotate method?
  1. A-To perform aggregation functions on querysets
  2. B-To filter query results based on a condition
  3. C-To retrieve a single object from the databas
  4. D-To order query results in ascending or descending order
  5. Posted By: MCQSEXAM
  6. Computer Science MCQs / Django
Which method is used to filter query results based on certain conditions in Django?
  1. A-get()
  2. B-filter()
  3. C-exclude()
  4. D-all()
  5. Posted By: MCQSEXAM
  6. Computer Science MCQs / Django
In Django, how can you perform raw SQL queries?
  1. A-Using the django.db.connection object
  2. B-Using the django.db.models module
  3. C-By subclassing the django.db.models.QuerySet class
  4. D-By modifying the settings.py file
  5. Posted By: MCQSEXAM
  6. Computer Science MCQs / Django
What does the prefetch_related method do in Django?
  1. A-Filters query results based on a condition
  2. B-Retrieves related objects after the main query is executed
  3. C-Orders query results in ascending or descending order
  4. D-Performs a raw SQL query
  5. Posted By: MCQSEXAM
  6. Computer Science MCQs / Django
Which of the following is NOT a valid option for Django's ForeignKey field?
  1. A-to_field
  2. B-on_delete
  3. C-related_name
  4. D-unique
  5. Posted By: MCQSEXAM
  6. Computer Science MCQs / Django
What is the purpose of Django's select_related method?
  1. A-To optimize database queries by reducing the number of queries
  2. B-To filter query results based on a condition
  3. C-To order query results in ascending or descending order
  4. D-To perform a join operation between two tables
  5. Posted By: MCQSEXAM
  6. Computer Science MCQs / Django
Which Django command is used to apply all pending migrations to the database?
  1. A-python manage.py makemigrations
  2. B-python manage.py migrate
  3. C-python manage.py createsuperuser
  4. D-python manage.py collectstatic
  5. Posted By: MCQSEXAM
  6. Computer Science MCQs / Django
In Django models, what does the related_name attribute do?
  1. A-Specifies the database column name
  2. B-Defines the reverse relationship name
  3. C-Specifies the foreign key constraint
  4. D-Defines the primary key of the model
  5. Posted By: MCQSEXAM
  6. Computer Science MCQs / Django
Which Django command is used to create a new database migration?
  1. A-python manage.py migrate
  2. B-python manage.py makemigrations
  3. C-python manage.py collectstatic
  4. D-python manage.py runserver
  5. Posted By: MCQSEXAM
  6. Computer Science MCQs / Django
Which of the following is NOT a supported database backend in Django?
  1. A-MySQL
  2. B-SQLite
  3. C-MongoDB
  4. D-PostgreSQL
  5. Posted By: MCQSEXAM
  6. Computer Science MCQs / Django
What is Django ORM used for?
  1. A-Handling HTTP requests
  2. B-Generating HTML templates
  3. C-Communicating with the database
  4. D-Managing user authentication
  5. Posted By: MCQSEXAM
  6. Computer Science MCQs / Django
Who was the second son of Hazrat Muhammad (SAW)?
  1. A-Hazrat Ibrahim
  2. B-Hazrat Al-Qasim
  3. C-Hazrat Abdullah
  4. D-Hazrat Abdurrehman
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Who was the first Caliph?
  1. A-Hazrat Usman(R.A.)
  2. B-Hazrat Ali(R.A.)
  3. C-Hazrat Umar(R.A.)
  4. D-Hazrat Abu Bakar(R.A.)
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
______ is the most important night in the month of Ramzan.
  1. A-Shab-e-Miraj
  2. B-Shab-e-Bara’at
  3. C-Shab-e-Qadar
  4. D-None of these
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
______ is called Shield against sins.
  1. A-Fasting
  2. B-Zakat
  3. C-Salat
  4. D-Hajj
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Which is the best month mentioned in Holy Qur’an?
  1. A-Ramadan
  2. B-Sha’abān
  3. C-Rajab
  4. D-Hajj
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Which is fourth month of Islamic Calendar?
  1. A-Rabi-ul-Awwal
  2. B-Rajab
  3. C-Rabi-us-Sani
  4. D-Jamadi-us-Sani
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
The first daughter of our Holy prophet (SAW) was ______________.
  1. A-Hazrat Umme Kulsom (RA)
  2. B-Hazrat Fatima (RA)
  3. C-Hazrat Ruqayah (RA)
  4. D-Hazrat Zainab (RA)
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Jannat al-Baqi is located in ________.
  1. A-Baghdad
  2. B-Madina
  3. C-Makkah
  4. D-Palestine
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
There are _________ farz in wuzoo (وضو ).
  1. A-5
  2. B-4
  3. C-2
  4. D-6
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Our Holy Prophet Muhammad (SAW) had ___________ brothers & sisters.
  1. A-2 brothers & 1 sister
  2. B-1 brother & 2 sisters
  3. C-1 brother & 1 sister
  4. D-None
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
____ is called Sayeed-ul-Ayam?
  1. A-Friday
  2. B-Eid day
  3. C-Judgement day
  4. D-Arafat day
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
What is the other name of Surah Fatiha?
  1. A-Umm al-Kitab
  2. B-Umm al-Quran
  3. C-Both A & B
  4. D-None of these
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Surah Baqarah contains ________verses?
  1. A-288
  2. B-286
  3. C-284
  4. D-290
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
In how many years Makki Surah were revealed?
  1. A-15
  2. B-14
  3. C-16
  4. D-13
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
How many types of Ijma are there____________?
  1. A-Two
  2. B-Four
  3. C-Five
  4. D-Three
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
What do you understand by Tahleeq________?
  1. A-Kalmaas in loud voice during Tawaf
  2. B-First circle of Tawaf
  3. C-Cutting of hair
  4. D-Kissing of stone
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Aitekaaf (Seclusion) during the month of Ramzan is_____________?
  1. A-Sunnah
  2. B-Mustahab
  3. C-Wajib
  4. D-Nafl
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Who was the first commander of islamic army?
  1. A-Hazrat Khalid-bin-walid (RA)
  2. B-Hazrat Hamza (RA)
  3. C-Hazrat Umer (RA)
  4. D-None of them
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
The major part of Quran is revealed at _____?
  1. A-Early evening
  2. B-Noon
  3. C-Early morning
  4. D-Night time
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
It is said that Hazrat Ibrahim (A.S) was from the city of ‘Ur’. It is located in________?
  1. A-Mesopotamia
  2. B-Jerusalem
  3. C-Hijaz
  4. D-Yemen
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Name the battle which came to an end without result?
  1. A-Ohad
  2. B-Tabook
  3. C-Hunain
  4. D-Mota
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
How many Surahs are in 30th Chapter (Parah) of Quran?
  1. A-39
  2. B-38
  3. C-37
  4. D-40
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
The reward of which prayer is equal to the reward of Hajj or Umrah ?
  1. A-Namaz-e-Janaza
  2. B-Namaz-e-Khasoof
  3. C-Namaz-i-Ishraq
  4. D-Namaz-e-Istasqa
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
The first Msjid (Mosque) that was built by the Holy Prophet (SAW) was_____________?
  1. A-Masjid-e-Aqsa
  2. B-Masjid e Quba
  3. C-Masjid-ul-Haram
  4. D-Masjid-e-Nabavi
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
The Gap between first and second Wahi was __________months?
  1. A-2 Years 6 months
  2. B-2 Years 3 months
  3. C-2 Years 1 month
  4. D-none of the above
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Which of the following was the Teacher of Hazrat Musa (AS) ?
  1. A-HAZRAT KHIZAR (A.S)
  2. B-Hazrat Ibrahim(A.S)
  3. C-Hazrat Ishaq (AS)
  4. D-Hazrat Yousaf (A.S)
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
The book of Hadith, Kitaab-ul-Aathaar, was compiled by __________ ?
  1. A-Imam Ahmad bin Hambal (R.A)
  2. B-Imam Shafi (R.A)
  3. C-Imam Muhammad al-Shaybani (R.A)
  4. D-Imam Malik (R.A)
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Who was the leader of infidels during the Ghazwa-e-Uhud?
  1. A-Abu Lahab
  2. B-Abu Jehl
  3. C-Abu Sufyan
  4. D-None of these
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Real name of Hazrat Abu Huraira (RA) was___________?
  1. A-Abdul Rehman Ibne Adi
  2. B-Abdul Rehman Ibne Talib
  3. C-Abdul Rehman Ibne Sakhr Ad-Daus
  4. D-None of these
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
The permission for Tayammum was granted in _________?
  1. A-3 A.H
  2. B-2 A.H
  3. C-1.A.H
  4. D-4 A.H
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Kitab-ul-Shamayel was written by ____________?
  1. A-Tirmizi
  2. B-Imam Muslim
  3. C-Imam Malik
  4. D-Imam Yousaf
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Name the First Jannati Shaheed who neither offered any prayer nor kept any fast?
  1. A-Hazrt Aseeram bani Abdul Ashal (RA)
  2. B-Hazrt Swaid bin Samit (RA)
  3. C-Hazrt Saad bin Maaz (RA)
  4. D-Hazrt Harram bin Malhan (RA)
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
What language did the Arab people speak?
  1. A-French
  2. B-Arabic
  3. C-English
  4. D-Persian
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
“Khateeb-e-Rasoolullah (SAW)” is the title of ______________?
  1. A-Hazrat Harith bin Suraqa (RA)
  2. B-Hazrat Thabit bin Qais (RA)
  3. C-Hazrat Shoaib Roomi (RA)
  4. D-None of these
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
“Naqeeb-e-Islam” is the title of __________ ?
  1. A-Hazrat Usman (RA)
  2. B-Hazrat Umar (RA)
  3. C-Hazrat Abu Bakr (RA)
  4. D-Hazrat Ali (RA)
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Imam Shafi was Born at Gaza and died at ____________?
  1. A-Jerusalem
  2. B-Makkah
  3. C-Madina
  4. D-Al Fustat, Egypt
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Hazrat Umar R.A embraced Islam, influenced by which Surah Of Holy Quran?
  1. A-Surah Fateh
  2. B-Surah Yaseen
  3. C-Surah Taha
  4. D-Surah Almaedah
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Who discovered the “Zam Zam Well”?
  1. A-Aminah; Prophet’s mother
  2. B-bdul Muttalib; Prophet’s grandfather
  3. C-Abdullah; Prophet’s father
  4. D-Prophet Muhammad (PBUH)
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Abdur Rehman al nasir assumed the title of Ameer ul Mominin in_________ ?
  1. A-330
  2. B-317
  3. C-315
  4. D-None of these
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
What is meaning of Tehlil?
  1. A-The recitation of Tauheed
  2. B-The recitation of Quran Majeed
  3. C-The recitation of Kalima
  4. D-all of them
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
_________,was the brother of Hazrat Ali r.a who was taken as prisoner in the battle of Badr ?
  1. A-AQBA BIN NAFA
  2. B-Aqeel
  3. C-BIN JASH
  4. D-NONE
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
How many Sajdas are in Salat-e-Janaza?
  1. A-2
  2. B-3
  3. C-4
  4. D-0
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Pious-Caliphate lasted for about:__________ Years?
  1. A-Twenty Years
  2. B-Thirty Years
  3. C-Eighteen Years
  4. D-Five Years
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
The Battle of Sallasil or the Battle of Chains was fought between__________and the Muslims?
  1. A-Persians
  2. B-Jews
  3. C-Arabs
  4. D-Romans
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
How many Umahaat ul Momineen were Hufaaz?
  1. A-4
  2. B-5
  3. C-3
  4. D-6
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Who wrote the Treaty of Hudaibiya?
  1. A-Hazrat Usman (R.A)
  2. B-Hazrat Ali (R.A)
  3. C-Hazrat Abu Ubaidah Bin Jarrah (R.A)
  4. D-none of them
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Hazrat Abu Bakr (R.A) belonged to the tribe of__________?
  1. A-Banu Hashim
  2. B-Banu Taym
  3. C-Banu Sahm
  4. D-Banu Asad
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Book named “The Voice of Human Justice ” is biography of --?
  1. A-Hazrat Abu Bakr (R.A)
  2. B-Hazrat Ali (R.A)
  3. C-Hazrat Umer (R.A)
  4. D-Hazrat Usman (R.A)
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
During Which prayer, the change of Qibla happened?
  1. A-Asar
  2. B-Fajar
  3. C-Zuhr
  4. D-Magrib
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
“Baytal-Hikmat was a___________?
  1. A-Translation bureau
  2. B-Medical University
  3. C-Observatory
  4. D-None
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Abu Ubaidah bin Jarrah was the conqueror of______________?
  1. A-Yarmuk
  2. B-Iran
  3. C-Egypt
  4. D-None of the above
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
The Muslim invaded Spain in__________?
  1. A-717 A.D
  2. B-711 A.D
  3. C-701 A.D
  4. D-727 A.D
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
The Mosque of Prophet (PBUH) was damaged due to fire in the reign of__________?
  1. A-Motasim Billah
  2. B-Aurangzeb
  3. C-Shahjahan
  4. D-Razia Sultana
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Boat of Hazrat Noah (A.S) is called ________?
  1. A-Arrow
  2. B-Arc
  3. C-Curve
  4. D-Arrec
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Name the Prophet who was the first man to write?
  1. A-Hazrat Shoaib (A.S ؑ)
  2. B-Hazrat Dawood (A.S)
  3. C-Hazrat Ibrahim (A.S
  4. D-Hazrat Idrees (A.S)
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
The Short period between two Sajda’s is called________?
  1. A-Qayaam
  2. B-Jalsa
  3. C-Qauma
  4. D-Qaada
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Who Urged Hazrat Adam ( A.S ) to taste Prohibited Tree ?
  1. A-Hazrat Hawwa (AS)
  2. B-Hazrat Jibraeel (AS)
  3. C-Iblees
  4. D-All of the above
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Hazrat Umer was Caliph for__________Years?
  1. A-10 years
  2. B-4 years
  3. C-2 years
  4. D-None of these
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Ohad is located near __________?
  1. A-Syria
  2. B-Madina
  3. C-Makkah
  4. D-Baghdad
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Hazrat Adam (A.S) met with Holy Prophet (SAW) on the ________ heaven?
  1. A-3rd
  2. B-2nd
  3. C-1st
  4. D-4th
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Where is Hazrat Abdul Muttalib burried?
  1. A-Baghdad
  2. B-Makkah
  3. C-Madina
  4. D-Palestine
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Surah Tauba the only Surah Which does not start with Bismillah is in Which Parah?
  1. A-10 & 11
  2. B-8 & 9
  3. C-9 & 10
  4. D-11 & 12
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Where is the grave of Hazrat Haroon (A.S)?
  1. A-Saudi Arabia
  2. B-Lebanon
  3. C-Syria
  4. D-Jordan
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
at Khadija (RA) is commonly regarded by Muslims as the
  1. A-Mother of the Muslims
  2. B-Mother of all Females
  3. C-Mother of the Universe
  4. D-None
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
How many daughters Hazrat Khadija (RA) had with Hazrat Muhammad (SAW)?
  1. A-One
  2. B-Three
  3. C-Two
  4. D-Four
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
________ Umm-ul-Momineen received salutation from Allah.
  1. A-Hazrat Maria Qibtiya (RA)
  2. B-Hazrat Khadija (RA)
  3. C-Hazrat Ayesha (RA)
  4. D-Hazrat Safia (RA)
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
How many units (rakat) taraveh are offered in Ramadan?
  1. A-16
  2. B-8
  3. C-12
  4. D-20
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Which was the favorite month of Hazrat Muhammad (SAW)?
  1. A-Sha’ban
  2. B-Rajab
  3. C-Ramadan
  4. D-Safar
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
Which Sura is called ‘Aroos-ul-Qur’an (the Bride of the Qur’an)?
  1. A-Jinn
  2. B-Yaseen
  3. C-Fatiha
  4. D-Rahman
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
What is name of 14th Para of Holy Qur’an?
  1. A-Wa Ma Ubrioo
  2. B-Wa Mamin Da’abat
  3. C-Yatazeroon
  4. D-Rubama
  5. Posted By: MCQSEXAM
  6. Islamic Studies / Islamic Studies
MCQs Exam