TS PGECET 2024 Computer Science and Information Technology Question Paper is available for download here. Jawaharlal Nehru Technological University Hyderabad on behalf of Telangana Council of Higher Education (TGCHE) conducted TS PGECET 2024 Computer Science and Information Technology on June 11 in Shift 2 from 2 PM to 4 PM. TS PGECET Question Paper 2024 consists of 120 MCQ-based questions in total carrying 1 mark each to be attempted in the duration of 2 hours.
TS PGECET 2024 CS Question Paper with Answer Key | Download PDF | Check Solution |
Question 1:
Let \(X\) follow Binomial distribution with parameters \(12\) and \(p\), let \(q = 1 - p\). If \[ \sum_{x=0}^{12}(x - 12p)^2 \cdot {}^{12}C_x \cdot q^{12 - x} \cdot p^x = \frac{8}{3} \quad and \quad P(X > 10) = \left(\frac{2}{3}\right)^K, \, (K > 1), \]
then \(K =\)
The standard deviation of a Poisson distribution is \(\sigma\). If \(P(X = r) = K\), then \(P(X = r + 2) =\)
A, B, C are three mutually disjoint exhaustive events with \(P(A) \neq 0\), \(P(B) \neq 0\), \(P(C) \neq 0\). \(E\) is any arbitrary event. If \(P(A) = \dfrac{4}{9}\), \(P(B) = \dfrac{2}{9}\), \(P(E|A) = \dfrac{3}{10}\),
\(P(E|B) = \dfrac{5}{10}\), \(P(E|C) = \dfrac{8}{10}\), and \(P(E) = \dfrac{12}{23}\), then \(P(C) =\)
Let a continuous random variable \(X\) follow Normal distribution with mean \(\mu\) and variance \(\sigma^2\). Let \(Z = \dfrac{X - \mu}{\sigma}\). If \(P(Z > Z_1) = 0.12\) and \(P(Z > Z_2) = 0.76\), then \(P(Z_2 < Z < Z_1) =\)
If \(f(x)\) is a twice differentiable function such that \(f(0) = f(1) = f'(0) = 0\), then
The maximum area of a rectangle that can be inscribed in a circle of radius \(R\) is
The number of non-differentiable points for the function \(f(x) = \min\left\{x - \lfloor x \rfloor, 1 - x + \lfloor x \rfloor\right\}\) in \((-2, 2)\) is (\(\lfloor x \rfloor\) represents integral part of \(x\))
For the matrix \[ \begin{bmatrix} 2 & 1 & 1
0 & 2 & 1
1 & 0 & 1 \end{bmatrix}, \]
an Eigen vector among the following vectors is
\(L\) is a lower triangular matrix with all Principal diagonal elements equal to 1 and \(U\) is an upper triangular matrix such that \[ LU = \begin{bmatrix} 1 & 3 & 0
3 & 7 & 1
2 & 8 & 3 \end{bmatrix}, \]
then the Trace of \(L\) + Trace of \(U\) =
If the Eigenvalues of Skew-Hermitian matrices and Eigenvalues of Hermitian matrices are plotted on Argand plane, then the number of points having amplitude \(\frac{7\pi}{4}\) is
Which of the following is idempotent law of propositional logic?
A survey among 100 students shows that out of the three ice cream flavors vanilla, chocolate and strawberry, where 50 like vanilla, 43 like chocolate, 28 like strawberry, 13 like vanilla and chocolate, 11 like chocolate and strawberry, 12 like strawberry and vanilla and 5 like all of them. Find the number of students who like chocolate but not strawberry.
Find the number of two-letter words that begin with a vowel.
A relation \(R\) on a set \(A\) is a partial order if it is
Which diagram is used to represent partial order set?
A circuit in a connected graph is an Eulerian circuit if it contains
What is the chromatic number of the complete graph \(K_n\)?
Find the number of edges of the wheel graph \(W_n\).
Which one of the following is not necessarily a property of a group?
Which of the following expression is a tautology?
What is the minimal sum of products form of \(F(A, B, C, D) = AB + \overline{A}BC + \overline{A}B\overline{C}D\)?
\((217)_8\) is equivalent to
What are the minimum number of gates required to implement Half adder if we have to use only two input NOR gates?
The 2’s complement representation of the decimal value \(-15\) is
Which flip flop is commonly used for counters and shift registers?
Which register contains the data to be written into memory?
Which phase of the instruction cycle analyzes the instruction to determine type of operation to be performed?
Which bus is used to support local disk drives and peripherals?
What is the unit of transfer data from main memory to cache memory?
The main memory of the system consists of 16 MB, the cache memory can hold 64 KB and data is transferred in blocks of 4 bytes each. What is the tag size in main memory address for direct mapping cache?
In disk organization, the time taken by the head to reach the beginning of sector is
Which RAID level describes block interleaved distributed parity?
Which type of I/O does NOT use interrupts?
Which addressing mode allows to directly include operands in an instruction?
Which set of the following instructions is used for program control?
Which data structure is used in processor scheduling in an operating system?
Which of the following is a binary tree in which all the nodes have either zero or two children?
What is the minimum number of edges possible in a directed graph having 6 vertices and no self-loops?
What is the postfix expression of \(P + Q / R * (S - P)\)?
What is return value of \texttt{strcmp() if the two parameters are identical?
Which operator is used to get value at address stored in a pointer variable?
What is the output of the following program?
#include
int main() {
int fun(int);
int i = fun(10);
printf("%d\n", --i);
return 0;
int fun(int i) {
return (i++);
How many times does 'Telangana' get printed?
#include
int main() {
int x;
for(x = -1; x <= 10; x++) {
if(x < 5)
continue;
else
break;
printf("Telangana");
return 0;
Which C function allows the programmer to move the file pointer to a specific location within a file?
What will be the output of the program?
#include
int main() {
union var {
int p, q;
u;
u.p = 100;
u.q = 50;
printf("%d\n", u.p);
return 0;
Given an array \(A = \{15, 23, 27, 32, 45, 49, 60\}\) and key = 49, what are the mid values (corresponding array elements) in the first and second levels of recursion?
What is the best case time complexity for linear search?
Which among the following is an external sorting technique?
How many passes does an insertion sort algorithm take for sorting an array of ‘n’ elements?
Which algorithm strategy is followed by Kruskal's algorithm?
Breadth first search is equivalent to \underline{\hspace{1cm traversal of binary tree
What is the worst-case time complexity of depth first search of a graph with ‘V’ nodes and ‘E’ edges?
Bellman Ford algorithm provides solution for
Which among the following is not based on divide and conquer?
Which of the following does not represent the language \(\{0, 01\}\)?
How many tuples are present in finite state machine?
According to the Chomsky classification, language of finite automata is
What is the regular expression for all strings starting with ab then any number of a or b and ending with bba?
The transition a pushdown automation made by is additionally dependent upon
Moore machine is an example of
For a machine to surpass all the letters of alphabets excluding vowels, how many states in DFA would be required?
A language \(L\) is said to be Turing machine (TM) decidable if
A Turing machine that is able to simulate other Turing machines is known as
Choose the correct option when
S1: Initial state of NFA is initial state of DFA
S2: The final state of DFA will be every combination of final set of NFA
Which file is the output of an assembler?
Which derivation is generated by the top-down parser?
What is the output of lexical analyzer?
_____________ is the sequence of characters in a token
Which phase of the compiler checks the grammar of the program?
Which compiler runs on one machine and generates code for multiple machines?
Which method merges the multiple loops into the single one?
Which optimization technique is used to reduce the multiple jumps?
Which among the following is used in various phases of the compiler?
Which of the following is NOT a function of the shift-reduce parser?
When a process is waiting to be assigned to a processor, then it is in
Which system call is used to create a new process?
In client-server system communication, _______ is defined as an endpoint for communication
In Operating system, unlimited threads could exhaust system resources. Which among the following is a solution to this issue?
What is the average waiting time for the following processes using round robin scheduling with a time quantum of 4 ms?
Process Burst Time
P1 24
P2 3
P3 3
Threads of a multithreaded program can share
The dining philosophers problem is considered as
Which of the following scheme of virtual memory will never bring a page until it is required?
Choose the correct set of file extensions for archive
Which disk scheduling algorithm is better for systems that places a heavy load on the disk and less likely to cause starvation problem?
Which data model is required for conceptual data design?
Which is the notation for weak entity set in ER diagram?
Which of the following is a binary operator in Relational Algebra?
Which operator can make a tuple relational query as an unsafe query?
First Normal Form is based on the concept of
Which of the following is the main reason for performing schema refinement?
Which is not a desirable property for a database transaction?
Which of the following protocol is the lock based mechanism for concurrency control?
Which file organization is best suited for insertion operation only?
Which is a dynamic tree based indexing structure for database?
Which network connect the individual networks at different sites into one logical network?
Which is a popular standard for wireless LANs?
Choose the correct set of protocols of application layer of TCP/IP model
Which of the following is an error correcting code used in the data link layer?
In which network each packet is routed independently?
In which routing algorithm, each router maintains a routing table containing information about all other routers in the network?
Which mechanism converts human readable domain names into IP addresses?
Which computer security object covers the concept of privacy?
Which of the following is a passive attack to the network?
What is the size of the key in the DES algorithm for security?
Which UML diagram is required for client requirement modeling?
Which testing strategy considers the entire structure of a program?
Which software process model is trending with the concepts of Sprint and scrum?
Choose the correct set of design concepts
Which pair of UML diagrams are isomorphic?
Which of the following is NOT a web browser?
The function setcookie() is used to
Which operator is used to allocate memory to array variables in JavaScript?
What is the use of XPATH?
What is document object model?
Which is the correct syntax for declaring a variable in JSP?
Which element is the root element of a SOAP message?
Which of the following allows web pages to be updated asynchronously by exchanging data between web client and server?
Which provides a method to avoid element name conflicts in XML?
What is the purpose of DTD?
Comments