Let \( A \) be a \( 3 \times 3 \) matrix defined as:
\[ A = \begin{bmatrix} 1 & 1 & 1 \\ 1 & 1 & 1 \\ 1 & 1 & -1 \end{bmatrix} \]Find the eigenvalues of \( A^{13} \).
Eigenvalues of \( A^{13} \) are powers of the eigenvalues of \( A \).
Eigenvalues of \( A^{13} \) are the eigenvalues of \( A \) raised to the power of 13.
Eigenvalues of \( A^{13} \) are the eigenvalues of \( A \) raised to the power of 13.
Eigenvalues of \( A^{13} \) are the eigenvalues of \( A \) raised to the power of 13.
Step 1:
In this case, we need to calculate the eigenvalues of \( A^{13} \). First, let's find the eigenvalues of matrix \( A \) by solving the characteristic equation.
- The eigenvalues of \( A \) are \( \lambda_1 = 3 \), \( \lambda_2 = -1 \), \( \lambda_3 = -1 \).
Step 2: Find the eigenvalues of \( A^{13} \).
- The eigenvalues of \( A^{13} \) are the eigenvalues of \( A \) raised to the power 13. Therefore, the eigenvalues of \( A^{13} \) are:
\[
3^{13}, \quad (-1)^{13} = -1, \quad (-1)^{13} = -1.
\]
Thus, the correct answer is (A).
Consider the following C program
The value printed by the given C program is __________ (Answer in integer).
Suppose in a multiprogramming environment, the following C program segment is executed. A process goes into the I/O queue whenever an I/O related operation is performed. Assume that there will always be a context switch whenever a process requests an I/O, and also whenever the process returns from an I/O. The number of times the process will enter the ready queue during its lifetime (not counting the time the process enters the ready queue when it is run initially) is _________ (Answer in integer).

Arrange the following data types available in C language according to their size (smallest to largest):
A. signed long int
B. long double
C. unsigned char
D. unsigned int
Choose the correct answer from the options given below:
Consider the following process information for Shortest Remaining Time First (SRTF) scheduling:
\[ \begin{array}{|c|c|c|} \hline \textbf{Process} & \textbf{Arrival Time (AT)} & \textbf{Burst Time (BT)} \\ \hline P1 & 0 & 10 \\ P2 & 1 & 13 \\ P3 & 2 & 6 \\ P4 & 8 & 9 \\ \hline \end{array} \]Find the turnaround time for each process.