
Q31
Q31 A document fails to compile when using \textit{} inside \textbf{}. Why?
Nesting is not allowed
The document class does not support it
The font size is too large
The compiler does not recognize the command
Q32
Q32 Which LaTeX environment is used to create an unordered list?
\itemize
\enumerate
\list
\description
Q33
Q33 How do you create a numbered list in LaTeX?
\itemize{}
\list{}
\begin{enumerate} ... \end{enumerate}
\begin{list} ... \end{list}
Q34
Q34 Which command is used to add an item in a LaTeX list?
\additem
\item
\listitem
\begin{item}
Q35
Q35 What happens if a \begin{table} environment is used without \caption{}?
The table will not compile
The table will appear without a caption
An error will be thrown
The table will be centered automatically
Q36
Q36 How does LaTeX position floating figures and tables by default?
At the end of the document
At the top or bottom of a page
Inline with the text
Wherever they are placed in the source code
Q37
Q37 What is the function of the [h] option in \begin{figure}[h]?
Forces the figure to appear inline with the text
Hides the figure
Creates a horizontal figure
Ensures the figure is displayed in black and white
Q38
Q38 How do you create a simple table with three columns in LaTeX?
\begin{table} ccc \end{table}
\begin{tabular}{c c c} ... \end{tabular}
\begin{table}{3} ... \end{table}
\begin{column} ... \end{column}
Q39
Q39 Which command is used to merge two table cells horizontally?
\hline
\multirow{}
\multicolumn{}
\merge{}
Q40
Q40 How do you include an external image in a LaTeX document?
\image{file.png}
\includegraphics{file.png}
\addimage{file.png}
\insertpic{file.png}
Q41
Q41 A LaTeX table is not appearing in the document. What could be the reason?
The \table environment is missing
The table is too wide for the page
The \begin{tabular} is incorrectly spelled
The \tableformat package is missing
Q42
Q42 A LaTeX document throws an error when compiling a figure. What could be the issue?
The figure file is missing
The figure format is incorrect
The graphicx package is not loaded
All of the above
Q43
Q43 A table is appearing at the end of the document instead of its intended position. How can this be fixed?
Use \begin{table}[t]
Use \begin{table}[h]
Place the table outside of \begin{document}
Use \section{Tables} before it
Q44
Q44 Which command is used for inline mathematical expressions in LaTeX?
$...$
\math{}
\begin{equation} ... \end{equation}
\displaymath{}
Q45
Q45 What is the difference between [ ... ] and \begin{equation} ... \end{equation}?
No difference
\[ ... \] is unnumbered, \begin{equation} ... \end{equation} is numbered
Both are numbered
Both are unnumbered
Q46
Q46 Which command is used to align multiple equations in LaTeX?
\begin{align} ... \end{align}
\begin{eqnarray} ... \end{eqnarray}
\begin{multicol} ... \end{multicol}
\begin{eqalign} ... \end{eqalign}
Q47
Q47 How do you write fractions in LaTeX?
\frac{numerator}{denominator}
\fraction{numerator}{denominator}
\div{numerator}{denominator}
\frac{}
Q48
Q48 Which package is commonly used for advanced mathematical formatting in LaTeX?
amsmath
graphicx
hyperref
tikz
Q49
Q49 What is the primary use of the \displaystyle command in LaTeX?
To increase text size
To force display-style math in inline expressions
To add space between equations
To change font in equations
Q50
Q50 How do you write a summation (Sigma notation) in LaTeX?
\sum_{n=1}^{10} x_n
\sigma_{n=1}^{10} x_n
\summation_{n=1}^{10} x_n
\sum(x_n, 1, 10)
Q51
Q51 Which command is used to represent a matrix in LaTeX?
\begin{array} ... \end{array}
\begin{matrix} ... \end{matrix}
\begin{tabular} ... \end{tabular}
\begin{table} ... \end{table}
Q52
Q52 How do you write an equation with cases in LaTeX?
\cases{}
\begin{cases} ... \end{cases}
\begin{array} ... \end{array}
\begin{case} ... \end{case}
Q53
Q53 A LaTeX document throws an error when using \begin{align}. What could be the issue?
The amsmath package is missing
The command is outdated
LaTeX does not support align
The align environment needs \end{equation}
Q54
Q54 A fraction appears too small in an inline equation. What is a possible fix?
Use \large before it
Use \displaystyle before it
Use \bigfrac{}
Use \frac*{}
Q55
Q55 Why is an equation breaking across lines unexpectedly?
LaTeX does not support long equations
The split environment is missing
The equation is too wide for the page
The align environment is needed
Q56
Q56 What is the purpose of using packages in LaTeX?
To change document structure
To add additional functionality
To make LaTeX compile faster
To change file extensions
Q57
Q57 Which command is used to include a package in LaTeX?
\include{}
\import{}
\usepackage{}
\addpackage{}
Q58
Q58 Where should package inclusion commands (\usepackage{}) be placed in a LaTeX document?
Before \documentclass{}
After \begin{document}
Before \begin{document}
At the end of the document
Q59
Q59 What does the graphicx package enable in LaTeX?
The use of colors
The inclusion of images
The use of hyperlinks
The creation of tables
Q60
Q60 What does the hyperref package add to a LaTeX document?
Font customization
Math enhancements
Hyperlinks and bookmarks
Support for large documents