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