My Cart
Your Cart 0

    Your cart is empty.

  • Total (Amount) ₹0.00
Exam Details

Computer Science & Information Technology (CS) 2013 [Session 3]

Review the key details, then start the test when you are ready. You can also open the full package to see related papers.

Questions 65
Duration 180 mins
Package Computer Science & Information Technology (CS) - Previous Year Papers

Paper pattern & analysis

Filter this paper by subject, topic or subtopic. Every graph updates from the selected questions.

Explore previous papers
Showing all 65 questions in this paper.

Subject distribution

No subject classification is available.

Topic distribution

No topic classification is available.

Subtopic distribution

No subtopic classification is available.

Difficulty distribution

Easy 53 81.5%
Hard 12 18.5%

Question type distribution

Multiple Choices 53 81.5%
Fill in the blanks 12 18.5%

Instructions

Computer Science & Information Technology (CS) 2013 [Session 3] – Instructions
  • Total number of questions: 65
  • 30 questions carry one mark each
  • 35 questions carry two marks each
  • Negative marking: 1/3 of the marks allotted to the question
  • Use of calculator is allowed
  • This is a proctored examination
  • All other browser applications will be automatically closed
  • After three warnings, the examination window will close automatically

Syllabus

Full Syllabus

Sample questions from this paper

Questions are selected across the paper subjects wherever the paper contains that variety.

1
2013 · Unclassified
Computer Science & Information Technology (CS) 2013 [Session 3]
Q.1 – Q.25 carry one mark each.

Using public key cryptography, X adds a digital signature σ to message M, encrypts , and sends it to Y, where it is decrypted. Which one of the following sequences of keys is used for the operations?

A
Encryption: X's private key followed by Y's private key; Decryption: X's public key followed by Y's public key
B
Encryption: X's private key followed by Y's public key; Decryption: X's public key followed by Y's private key
C
Encryption: X's public key followed by Y's private key; Decryption: Y's public key followed by X's private key
D
Encryption: X's private key followed by Y's public key; Decryption: Y's private key followed by X's public key
2
2013 · Unclassified
Computer Science & Information Technology (CS) 2013 [Session 3]

Match the problem domains in GROUP I with the solution technologies in GROUP II.

GROUP IGROUP II
(P) Service oriented computing(1) Interoperability
(Q) Heterogeneous communicating systems(2) BPMN
(R) Information representation(3) Publish-find-bind
(S) Process description(4) XML
(A) P-1, Q-2, R-3, S-4 (B) P-3, Q-4, R-2, S-1 (C) P-3, Q-1, R-4, S-2 (D) P-4, Q-3, R-2, S-1
Write your response
3
2013 · Unclassified
Computer Science & Information Technology (CS) 2013 [Session 3]

A scheduling algorithm assigns priority proportional to the waiting time of a process. Every process starts with priority zero (the lowest priority). The scheduler re-evaluates the process priorities every T time units and decides the next process to schedule. Which one of the following is TRUE if the processes have no I/O operations and all arrive at time zero?

A
This algorithm is equivalent to the first-come-first-served algorithm.
B
This algorithm is equivalent to the round-robin algorithm.
C
This algorithm is equivalent to the shortest-job-first algorithm.
D
This algorithm is equivalent to the shortest-remaining-time-first algorithm.
4
2013 · Unclassified
Computer Science & Information Technology (CS) 2013 [Session 3]

What is the maximum number of reduce moves that can be taken by a bottom-up parser for a grammar with no epsilon- and unit-production (i.e., of type A → ε and A → a) to parse a string with n tokens?

A
n
B
n-1
C
2n-1
D
2ⁿ
5
2013 · Unclassified
Computer Science & Information Technology (CS) 2013 [Session 3]

Consider the languages L1 = Φ and L2 = a. Which one of the following represents L1 ∪ L2*?

A
ε
B
Φ
C
a*
D
ε, a
6
2013 · Unclassified
Computer Science & Information Technology (CS) 2013 [Session 3]

Which one of the following is the tightest upper bound that represents the time complexity of inserting an object into a binary search tree of n nodes?

A
O(1)
B
O(log n)
C
O(n)
D
O(n log n)