
Q1
Q1 What is LaTeX primarily used for?
Typesetting scientific documents
Creating web applications
Developing mobile applications
Managing databases
Q2
Q2 What is the correct file extension for a LaTeX source file?
.tex
.latex
.ltx
.doc
Q3
Q3 Which of the following is required to compile a LaTeX document?
A LaTeX compiler
A web browser
An IDE like Visual Studio Code
A word processor like MS Word
Q4
Q4 Which of the following is a major advantage of LaTeX over word processors?
Automatic numbering and references
Real-time WYSIWYG editing
Drag-and-drop image placement
Built-in spell check
Q5
Q5 What is the main difference between LaTeX and Microsoft Word?
LaTeX uses markup commands, while Word is WYSIWYG
LaTeX requires an internet connection, Word does not
LaTeX does not support images, Word does
LaTeX does not support tables, Word does
Q6
Q6 Which of the following best describes LaTeX?
A programming language
A word processor
A markup-based typesetting system
A database management system
Q7
Q7 Why is LaTeX preferred in scientific writing?
It offers better font choices
It supports complex document structuring and citations
It is easier to use than Word
It has built-in plagiarism detection
Q8
Q8 What is the correct command to start a LaTeX document?
\begin{latex}
\documentclass{}
\startlatex{}
\begin{documentclass}
Q9
Q9 A LaTeX document does not compile and shows an error related to missing \begin{document}. What is the likely cause?
The \documentclass{} command is missing
There are syntax errors in the content
The file extension is incorrect
The document contains images
Q10
Q10 What is the first required command in a LaTeX document?
\documentclass{}
\begin{document}
\usepackage{}
\title{}
Q11
Q11 What is the purpose of \begin{document} in LaTeX?
Defines the start of the document content
Declares the document title
Loads external packages
Ends the document
Q12
Q12 Which environment is used to define a section in LaTeX?
\title{}
\section{}
\begin{section}
\paragraph{}
Q13
Q13 What happens if \end{document} is missing in a LaTeX file?
The document will not compile
Only partial output will be generated
Nothing, it is optional
The document class changes
Q14
Q14 What does the \tableofcontents command do?
Generates a table of contents based on section headings
Creates a blank page in the document
Adds a bibliography
Starts a new document
Q15
Q15 How does LaTeX automatically number sections?
Based on the order they appear in the document
Manually defined numbers
Based on document class
Through an external file
Q16
Q16 What is the role of the \maketitle command?
Creates the title page
Formats the page layout
Adds a bibliography
Inserts an abstract
Q17
Q17 What happens when the \chapter{} command is used in an article document class?
It produces an error
It creates a new section
It automatically converts to \section{}
It is ignored
Q18
Q18 How do you add an abstract section in LaTeX?
\abstract{}
\begin{abstract} ... \end{abstract}
\section{Abstract}
\begin{summary} ... \end{summary}
Q19
Q19 A LaTeX document does not show the table of contents after using \tableofcontents. What is a possible reason?
The \maketitle command is missing
The document was not compiled twice
The \documentclass{article} is incorrect
There is no bibliography
Q20
Q20 Which command is used to make text bold in LaTeX?
\textbf{}
\textit{}
\underline{}
\texttt{}
Q21
Q21 How do you italicize text in LaTeX?
\textit{}
\textbf{}
\emph{}
\texttt{}
Q22
Q22 Which command is used to underline text in LaTeX?
\underline{}
\texttt{}
\uline{}
\textit{}
Q23
Q23 What does the \texttt{} command do?
Makes text bold
Formats text in typewriter font
Italicizes text
Adds a heading
Q24
Q24 What is the difference between \textit{} and \emph{}?
No difference
\textit{} is for italics, \emph{} is for emphasis
\emph{} is for bold text, \textit{} is for underline
\textit{} is for titles, \emph{} is for references
Q25
Q25 How do you write multi-line text in different font sizes in LaTeX?
Use \fontsize{}
Use \Huge, \small, etc.
Use \scale{}
Use \setfont{}
Q26
Q26 Which command is used to change the font family in LaTeX?
\textbf{}
\textsf{}
\texttt{}
\usefont{}
Q27
Q27 How do you write text in a larger font size using LaTeX?
\textbig{}
\huge{}
\Huge{}
\textlarge{}
Q28
Q28 What is the correct way to center text in LaTeX?
\begin{center} Text \end{center}
\textcenter{}
\center{}
\align{text}
Q29
Q29 A LaTeX document shows an error for \textbf{} not working. What could be the reason?
The command is outdated
It is not inside \begin{document}
The document class does not support bold text
The font package is missing
Q30
Q30 Why does \underline{} not work inside a section title?
Section titles do not support underlining
\underline{} is only for figures
A package is missing
It works only in math mode