Showing posts with label Tutorial And Study Material. Show all posts
Showing posts with label Tutorial And Study Material. Show all posts

Thursday, May 3, 2012

Graph Theory Notes and Previous years solutions for UGC NET Computer Science & Application



Some Basic Definitions

Graph
A simple graph can be thought of as a triple G=(V,E,I), where V and E are disjoint finite sets and I is an incidence relation such that every element of E is incident with exactly two distinct elements of V and no two elements of E are incident to the same pair of elements of V. Obviously, these requirements can be varied (and we get general graphs, hypergraphs, infinite graphs, directed graphs, oriented graphs, etc.). We call V the vertex set and E the edge set of G.
Regular Graph
If all the vertices of G have the same degree k, then G is k-regular , or simply regular . A cubic 3-regular graph is called cubic.
Degree of a vertex
The degree, d(v), of a vertex v is the number of edges with which it is incident. Two vertices are adjacent if they are incident to a common edge. The set of neighbours, N(v), of a vertex v is the set of vertices which are adjacent to v. The degree of a vertex is also the cardinality of its neighbour set.
Digraph
A digraph (or a directed graph) is a graph in which the edges are directed. (Formally: a digraph is a (usually finite) set of vertices V and set of ordered pairs (a,b) (where a, b are in V) called edges. The vertex a is the initial vertex of the edge and b the terminal vertex.
Pseudograph
Informally, a pseudograph is a graph with multiple edges (or loops) between the same vertices (or the same vertex). Formally: a pseudograph is a set V of vertices along, a set E of edges, and a function f from E to {{u,v}|u,v in V}. (The function f shows which vertices are connected by which edge.) An edge is a loop if f(e) = {u} for some vertex u in V.
Loop
A loop is an edge that connects a vertex to itself.
Walk
A walk is an alternating sequence of vertices and edges, with each edge being incident to the vertices immediately preceding and succeeding it in the sequence.
Trail
A trail is a walk with no repeated edges.
Path
A path is a walk with no repeated vertices. A walk is closed if the initial vertex is also the terminal vertex.

The length of a walk is the number of edges in the sequence defining the walk. Thus, the length of a path or cycle is also the number of edges in the path or cycle. If u and v are vertices, the distance from connected graphu to v, written d(u,v), is the minimum length of any path from u to v. In an undirected graph, this is obviously a metric. The eccentricity, e(u), of the vertex u is the maximum value of d(u,v), where v is allowed to range over all of the vertices of the graph. The radius of the graph G, rad(G), is the minimum value of e(u), for any vertex u, and the diameter, diam(G), is the corresponding maximum value. It should be obvious that diam(G) ≤ 2rad(G).

For a set of vertices X, we use G[X] to denote the induced subgraph of G whose vertex set is X and whose edge set is the subset of E(G) consisting of those edges with both ends in X. For a set S of edges, we use G[S] to denote the edge induced subgraph of G whose edge set is S and whose vertex set is the subset of V(G) consisting of those vertices incident with any edge in S. If Y is a subset of V(G), we write G-Y for the subgraph G[V(G)-Y].
Complete Graph
A graph is complete, or a clique, if every pair of distinct vertices is adjacent. (The adjacency matrix of a complete graph has zeroes on the main diagonal, and ones off the diagonal.) We write Km for the complete graph on m vertices. Number of edges = m(m-1)/2
Connected Graph
A non-empty graph G is called connected if any two of its vertices are linked by a path in G. If U ⊆ V (G) and G [ U ] is connected, we also call U itself connected (in G). Instead of ‘not connected’ we usually say ‘disconnected’. A graph G has connectivity k if G is k-connected but not (k+1)-connected. A complete graph on k+1 vertices is defined to have connectivity k.
Bipartite graphs
Let r >2 be an integer. A graph G = (V, E) is called r-partite if V admits a partition into r classes such that every edge has its ends in different classes: vertices in the same partition class must not be adjacent. Instead of ‘2-partite’ one usually says bipartite.
An r-partite graph in which every two vertices from different partition classes are adjacent is called complete; the complete r-partite graphs for all r together are the complete multipartite graphs. Graphs of the form K1,n are called stars; the vertex in the singleton partition class of this K1,n is the star’s centre.

Cycle
A cycle is a closed trail with at least one edge and with no repeated vertices except that the initial vertex is the terminal vertex.
Circuit
A circuit is a path which ends at the vertex it begins (so a loop is an circuit of length one).
Forest
A graph is acyclic if it has no cycles. An acyclic graph is also called a forest.

Acyclic Graph

An acyclic graph is a graph having no graph cycles.
A connected acyclic graph is known as a tree, and a possibly disconnected acyclic graph is known as a forest (i.e., a collection of trees).
The numbers of acyclic graphs (forests) on n =1, 2, ... are 1, 2, 3, 6, 10, 20, 37, 76, 153, ...

Tree
A tree is a connected, acyclic graph. Thus every connected component of a forest is a tree.
Spanning tree
A spanning tree of a graph G is a subgraph T of G which is a tree and which satisfies |V(T)|=V|(G)|.
If T is a tree, then |V(T)|=E|(T)|+1. Any tree with at least two vertices must have a vertex of degree one. Alternately, one could define a tree as a connected graph T satisfying |V(T)|=E|(T)|+1 or as an acyclic graph T satisfying |V(T)|=E|(T)|+1. Every connected graph must have a spanning tree.
The number of spanning trees in the complete graph Kn with n vertices is = t(Kn)= nn-2
Minimum Spanning Tree (MST)
A minimum spanning tree (MST) or minimum weight spanning tree is a spanning tree with weight less than or equal to the weight of every other spanning tree. More generally, any undirected graph (not necessarily connected) has a minimum spanning forest, which is a union of minimum spanning trees for its connected components.
Kruskal's algorithm
Kruskal's algorithm is an algorithm in graph theory that finds a minimum spanning tree for a connected weighted graph. This means it finds a subset of the edges that forms a tree that includes every vertex, where the total weight of all the edges in the tree is minimized. If the graph is not connected, then it finds a minimum spanning forest (a minimum spanning tree for each connected component). Kruskal's algorithm is an example of a greedy algorithm. If E is the number of edges in the graph and V is the number of vertices, Kruskal's algorithm can be shown to run in O(E log E) time, or equivalently, O(E log V) time
Eccentricity
Let G be a graph and v be a vertex of G. The eccentricity of the vertex v is the maximum distance from v to any vertex. That is, e(v)=max{d(v,w):w in V(G)}.
Radius
The radius of G is the minimum eccentricity among the vertices of G. Therefore, radius(G)=min{e(v):v in V(G)}.
Diameter
The diameter of G is the maximum eccentricity among the vertices of G. Thus, diameter(G)=max{e(v):v in V(G)}.
Grith
The girth of G is the length of a shortest cycle in G.
Center
The center of G is the set of vertices of eccentricity equal to the radius. Hence, center(G)={v in V(G):e(v)=radius(G)}.
Planar
A graph is planar if it can be drawn on a plane so that the edges intersect only at the vertices. (For example, of the five first complete graphs all but the fifth, K5, is planar.)
Hamiltonian path
A Hamiltonian path or traceable path is a path that visits each vertex exactly once. A graph that contains a Hamiltonian path is called a traceable graph. A graph is Hamiltonian-connected if for every pair of vertices there is a Hamiltonian path between the two vertices.
A Hamiltonian cycle, Hamiltonian circuit, vertex tour or graph cycle is a cycle that visits each vertex exactly once (except the vertex that is both the start and end, and so is visited twice). A graph that contains a Hamiltonian cycle is called a Hamiltonian graph.
Similar notions may be defined for directed graphs, where each edge (arc) of a path or cycle can only be traced in a single direction (i.e., the vertices are connected with arrows and the edges traced "tail-to-head").
Eulerian Path
An Eulerian trail (or Eulerian path) is a trail in a graph which visits every edge exactly once. Similarly, an Eulerian circuit or Eulerian cycle is an Eulerian trail which starts and ends on the same vertex.
The term Eulerian graph has two common meanings in graph theory. One meaning is a graph with an Eulerian circuit, and the other is a graph with every vertex of even degree. These definitions coincide for connected graphs.
For the existence of Eulerian trails it is necessary that no more than two vertices have an odd degree; this means the Königsberg graph is not Eulerian. If there are no vertices of odd degree, all Eulerian trails are circuits. If there are exactly two vertices of odd degree, all Eulerian trails start at one of them and end at the other. A graph that has an Eulerian trail but not an Eulerian circuit is called semi-Eulerian.
Some important things in graph theory
1.The sum of degrees of the vertices of a graph is even
2. Every graph has an even number of odd vertices
    1. If the number of odd vertices is greater than 2 no euler walk exists
    2. If the number of odd vertices is 2, euler walks exist starting at either of the odd vertices
    3. With no odd vertices, euler walks can start at an arbitrary vertex
    4. For a graph, the sum of degrees of all its nodes equals twice the number of edges.
    5. For a graph, the sum of degrees of all its nodes is even



  1. Elements of an edge are said to be incident to that edge.
  2. Likewise, an edge is incident to its elements.
  3. A degree of a vertex is the number of edges incident to it (loops being counted twice).
  4. A vertex of odd (even) degree is said to be odd (even).
  1. A walk v0, e1, v1, e2, ..., vn is said to connect v0 and vn.
  2. A walk is closed if v0n. A closed walk is called a cycle.
  3. A walk which is not closed is open.
  4. A walk is an euler walk if every edge of the graph appears in the walk exactly once.
  5. A graph is connected if every two vertices can be connected by a walk.
1. If a graph has a closed euler walk then every vertex is even.
    2. If every vertex of a connected graph is even, the graph has an euler walk.
    3. If a graph has an open euler walk it has exactly two odd vertices.
    4. If a connected graph has exactly two odd vertices it also has an open euler walk.



Previous year question and answer on graph theory and answer:
1) The graph K3,4 has :
     (A) 3 edges     (B)   4 edges       (C)   7 edges       (D)  12 edges
2) The total number of spanning trees that can be drawn using five labelled vertices is :
     (A) 125                   (B) 64                  (C) 36          (D) 16
3) Which of the following does not define a tree ?
     (A) A tree is a connected acyclic graph.
     (B) A tree is a connected graph with n-1 edges where 'n' is the number of  
         vertices in the graph.
     (C) A tree is an acyclic graph with n-1 edges where 'n' is the number of 
         vertices in the graph.
     (D) A tree is a graph with no cycles.
4) The complexity of Kruskal's minimum spanning tree algorithm on a graph with 'n' nodes and 'e' edges is :
     (A) O (n)         (B) O (n log n)         (C) O (e log n)        (D) O (e)
5) The number of edges in a complete graph with 'n' vertices is equal to :
     (A)    n(n-1)                             (B)n(n-1)/2
     (C)    n2                                 (D)   2n-1
6) Depth travels option of the following directed graph is :

     (A)  ABCDEF                         (B)   ABDEFC
     (C)  ACEBDF                         (D)   None of the above
7) The maximum number of nodes in a binary tree of depth 10 :
     (A) 1024           (B) 210 -1         (C) 1000         (D) None of them
8) The number of edges in a complete graph with N vertices is equal to :
     (A) N (N−1)       (B) 2N−1         (C) N−1      (D)   N(N−1)/2
9) For a complete graph with N vertices, the total number of spanning trees is given by :
     (A) 2N-1       (B) NN-1             (C) NN-2                   (D) 2N+1
10) T is a graph with n vertices. T is connected and has exactly n-1 edges, then :
     (A)    T is a tree
     (B)    T contains no cycles
     (C)    Every pairs of vertices in T is connected by exactly one path
     (D)    All of these
11) Which of the following statement is false ?
    (A)   Every tree is a bipertite graph
    (B)   A tree contains a cycle
    (C)   A tree with n nodes contains n-1 edges
    (D)   A tree is a connected graph
12) The following lists are the degrees of all the vertices of a graph :
     (i)    1, 2, 3, 4, 5                       (ii) 3, 4, 5, 6, 7
     (iii) 1, 4, 5, 8, 6                        (iv) 3, 4, 5, 6
     then
     (A) (i) and (ii)                           (B) (iii) and (iv)
     (C) (iii) and (ii)                         (D) (ii) and (iv)
 

Wednesday, May 2, 2012

Context Free Grammar



Context Free Grammar

Context Free grammar or CGF, G is represented by four components that is G= (V, T, P, S), where V is the set of variables, T the terminals, P the set of productions and S the start symbol.
Example: The grammar Gpal for palindromes is represented by
Gpal = ({P}, {0, 1}, A, P)
Where A represents the set of five productions
1. P
2. P0
3. P1
4. P0P0
5. P1P1 
Derivation using Grammar 

Example 1: Leftmost Derivation
The inference that a * (a+b00) is in the language of variable E can be reflected in a derivation of that string, starting with the string E. Here is one such derivation:

E E * E I * E a * E a * (E) a * (E + E) a * (I + E) a * (a + E) a * (a + I) a * (a + I0) a * (a + I00) a * (a + b00)
Leftmost Derivation - Tree


Example 2: Rightmost Derivations
The derivation of Example 1 was actually a leftmost derivation. Thus, we can describe the same derivation by:
E E * E E *(E) E * (E + E)
E * (E + I) E * (E +I0) E * (E + I00) E * (E + b00)
E * (I + b00) E * (a +b00) I * (a + b00) a * (a + b00)
We can also summarize the leftmost derivation by saying
E a * (a + b00), or express several steps of the derivation by expressions such as E * E a * (E).
Rightmost Derivation - Tree

There is a rightmost derivation that uses the same replacements for each variable, although it makes the replacements in different order. This rightmost derivation is:
E E * E E * (E) E * (E + E)
E * (E + I) E * (E + I0) E * (E + I00) E * (E + b00)
E * (I + b00) E * (a + b00) I * (a + b00) a * (a + b00)
This derivation allows us to conclude E a * (a + b00)
Consider the Grammar for string(a+b)*c
EE + T | T
T T * F | F
F ( E ) | a | b | c
Leftmost Derivation
ETT*FF*F(E)*F(E+T)*F(T+T)*F(F+T)*F (a+T)*F (a+F)*F (a+b)*F(a+b)*c
Rightmost derivation
ETT*FT*cF*c(E)*c(E+T)*c(E+F)*c(E+b)*c(T+b)*c(F+b)*c(a+b)*c
Example 2:
Consider the Grammar for string (a,a)
S->(L)|a
L->L,S|S
Leftmost derivation
S(L)(L,S)(S,S)(a,S)(a,a)
Rightmost Derivation
S(L)(L,S)(L,a)(S,a)(a,a)
The Language of a Grammar
If G(V,T,P,S) is a CFG, the language of G, denoted by L(G), is the set of terminal strings that have derivations from the start symbol.
L(G) = {w in T | S w}
Sentential Forms
Derivations from the start symbol produce strings that have a special role called “sentential forms”. That is if G = (V, T, P, S) is a CFG, then any string in (V T)* such that S a is a sentential form. If S a, then is a left – sentential form, and if S a , then is a right – sentential form. Note that the language L(G) is those sentential
forms that are in T*; that is they consist solely of terminals.
For example, E * (I + E) is a sentential form, since there is a derivation
E E * E E * (E) E * (E + E) E * (I + E)
However this derivation is neither leftmost nor rightmost, since at the last step, the middle E is replaced.
As an example of a left – sentential form, consider a * E, with the leftmost derivation.
E E * E I * E a * E
Additionally, the derivation
E E * E E * (E) E * (E + E)
Shows that
E * (E + E) is a right – sentential form.
Ambiguity
A context – free grammar G is said to be ambiguous if there exists some w L(G) which has at least two distinct derivation trees. Alternatively, ambiguity implies the existence of two or more left most or rightmost derivations.
Ex:-
Consider the grammar G=(V,T,E,P) with V={E,I}, T={a,b,c,+,*,(,)}, and productions.
EI,
EE+E,
EE*E,
E(E),
Ia|b|c

Consider two derivation trees for a + b * c.

Now unambiguous grammar for the above
Example:
ET, TF, FI, EE+T, TT*F,
F(E), Ia|b|c
Inherent Ambiguity
A CFL L is said to be inherently ambiguous if all its grammars are ambiguous
Example:Condider the Grammar for string aabbccdd
SAB | C
A aAb | ab
BcBd | cd
C aCd | aDd
D->bDc | bc
Parse tree for string aabbccdd

Applications of Context – Free Grammars
  • Parsers
  • The YACC Parser Generator
  • Markup Languages
  • XML and Document type definitions

Tuesday, May 1, 2012

UGC NET December 2008, Computer Science and Application Paper II Solution


UGC NET December 2008, Computer Science and Application Paper II Solution
1 The channel capacity of a band-limited Gaussian channel is given by
(A) B log2 (2+S/N)                                                                             (B) B log2 (1+S/N)
(C )B log10(1+S/N)                                                                            (D) B loge(1+S/N)

2 The graph K 3,4 has _______ edges
(A)3 edges                                                                                   (B) 4 edges
(C )7 edges                                                                                 (D) 12 edges

3 The total number of spanning trees that can be drawn using five labeled vertices is:
(A)125
                                                                                    (B)64
(C ) 36
                                                                                    (D)16

4 Extremely low power dissipation and low cost per gate can be achieved in
(A) MOS ICS
                                                                                    (B) C MOS ICS
(C ) TTL ICS
                                                                                    (D) ECL ICS
5 An example of a universal building block is :
(A) EX-OR Gate
                                                                                    (B) AND Gate
(C ) OR gate
                                                                                            (D) NOR Gate

6 An example of a layer that is absent in broadcast networks is :
(A) Physical layer
                                                                                    (B) Presentation layer
(C ) Network layer
                                                                                    (D) application layer

7 The ATM cell is :
(A) 48 bytes long
                                                                                    (B) 53 bytes long
(C ) 64 bytes long
                                                                                    (D) 69 bytes long

8 Four jobs J1,J2,J3, and J4 are waiting to be run Their expected run times are 9,6,3 and 5 respectively In order to minimize average response time, the jobs should be run in the order:
(A) J1 J2 J3 J4 (B) J4 J3 J2 J1
(C ) J3 J4 J1 J2 (D) J3 J4 J2 J1


9 Suppose it takes 100ns to access page table and 20 ns to access associative memory If the average access time is 28ns, the corresponding hit rate is:
(A) 100 percent
                                                                                    (B) 90 percent
(C ) 80 percent
                                                                                     (D) 70 percent


10 Transmission of N signals , each band limited to Fm Hz by TDM, requires a minimum band-width of
(A)fm
                                                                                          (B) 2 fm
(C ) N fm
                                                                                    (D) 2N fm

11 If a code is ‘t’ error detecting, the minimum hamming distance should be equal to :
(A) t-1
                                                                                    (B) t
(C ) t+1
                                                                                    (D) 2t+1

12 A relation R in {1,2,3,4,5,6} is given by {(1,2),(2,3),(3,4),(4,4),(4,5)} The relation is :
(A) Reflexive
                                            (B) symmetric
(C ) Transitive
                                          (D) not reflexive, not symmetric and not transitive

13 The dual of the switching function x+yz is:
(A) x+yz
                                                                                        (B) x+yz
(C ) x(y+z)
                                                                                    (D) x(y+z)

14 The characteristic equation of D-flip flop is :
(A) Q=1
                                                                                     (B) Q=0
(C ) Q=D
                                                                                    (D) Q=D

15 If four 4 input mulitplexers drive a 4 input multiplexer we get a :
(A) 16 input MUX
                                                                                    (B) 8 input MUX
(C ) 4 input MUX
                                                                                    (D) 2 input MUX

16 The throughput of slotted ALOHA is given by:
(A) S=G
                                                                                            (B) S=GeG
(C ) S=Ge-G
                                                                                    (D) S=eG



17 Congestion control is done by
(A) Network layer
                                                                                    (B) Physical layer
(C ) Presentation layer
                                                                             (D) Application layer



18 Assertion(A): Twisted pairs are widely used as transmission medium
Reasoning(R ): Twisted pairs have adequate performance and low cost

(A) Both (A) and (R ) are true and (R ) is the correct explanation for (A)
(B) Both (A) and (R ) are true but (R ) is not the correct explanation
(C ) (A) is true but (R ) is false
(D) (A) is false but (R ) is true


19 An example of a non-adaptive routing algorithm is:
(A) Shortest path routing
                                          (B) Centralised routing
(C ) Baran’s hot potato algorithm                             (D) Baran’s backward learning algorithm



20 IP address in B class is given by:
(A) 125.123.123.2
                                                                                    (B) 191 . 023 . 21 . 54
(C )  192 . 128 . 32 . 56
                                                                          (D) 10 . 14 . 12 . 34


21 N processes are waiting for I/O A process spends a fraction of its time in I/O wait state The CPU utilization is given by:
(A) 1-P –N
                                                                         (B) 1 – P N
(C ) P N
                                                                               (D) P -N



22 If holes are half as large as processes, the fraction of memory wasted in holes is:
(A) 2 / 3
                                                                         (B) 1 / 2
(C ) 1 / 3
                                                                         (D) 1 / 5



23 An example of a non-premptive scheduling algorithm is:
(A) Round robin
                                                                                 (B) Priority scheduling
(C ) Shortest job first
                                                                         (D) 2 level scheduling


24 An example of a distributed OS is:
(A) Amoeba
                                                                         (B) UNIX
(C ) MS – DOS
                                                                    (D) MULTICS


25 Which one of the following correctly describes a static variable:
(A) It cannot be initialized
(B) It is initialized once at the commencement of execution and cannot be changed during run time
(C ) It retains its value during the life of the program
(D) None of the above


26 The output of the program code
main()
{
int x = 0;
while ( x < = 10)
for(;;)
if (++x%10==0)
break;
printf(“x=%d”,x);
}
is:
(A) x = 1
                                                                         (B) compilation error
(C ) x = 20
                                                                      (D) none of the above

27 A copy constructor is invoked when : 
(A) a function returns by value                                       (B) an argument is passed by value 
(C ) A function returns by reference                              (D) none of the above

 28 When a language has the capability to produce new data types, it is said to be :
(A) extensible                                                                          (B) encapsulated
 (C ) Overloaded                                                                      (D) none of the above


 29 How many constructors can a class have? 
(A) Zero                                                                          (B) 1 
(C ) 2                                                                                (D) any number


 30 An entity has: 
(i) a set of properties 
(ii) a set of properties and values for all the properties 
(iii) a set of properties and the values for some set of properties may non-uniquely identify an entity (iv) a set of properties and the values for some set of properties may uniquely identify an entity Which of the above are valid? 
(A) (i) only                                                                          (B) (ii) only 
(C ) (iii) only                                                                       (D) (iv) only 


 31 Aggregation is: 
(A) An abstraction through which relationships are treated as lower level entities 
(B) An abstraction through which relationships are treated as higher level entities  
(C) An abstraction through which relationships are not treated at all as entities 
(D) None of the above


32 Suppose R is a relation schema and F is a set of functional dependencies on R Further, suppose R1 and R2 forma a decomposition of R Then the decomposition is a lossless join decomposition of R provided that :
(A) R1∩R2 ->R1 is in F+
(B) R1 ∩ R2->R2 is in F+
(C) Both R1 ∩ R2->R1 and R1 ∩ R2->R3 functional dependencies are in F+
(D)At least one from R1∩R2->R1 and R1 ∩ R2->R2 is in F+



33 In a heap, every element is ________________ of all the elements in the subtree
(A) Maximum
                                                                         (B) minimum
(C ) sum
                                                                                    (D) product



34 If (rear == maxsize – 1) rear=0; else rear=rear+1; is required in :
(A) circular queue
                                                                          (B) linear queue 
(C) stack                                                                                          (D) deque


35 A high performance switching and multiplexing technology that utilizes fixed length packets to carry different types of traffic is :
(A) ATM
                                                                         (B) ADSL 
(C) SONET (D) None of the above



36 A conventional LAN bridge specifies only the functions of OSI:
(A) Layers 1 and 2
                                                                         (B) layers 1 through 3 
(C) all layers                                                                                    (D) none of the above



37 An assembly program contains:
(A) Imperative and declarative statements
(B) Imperative statements and assembler directives
(C) Imperative and declarative statements as well as assembler directives
(D) Declarative statements and assembler directives

38 In which addressing mode, the effective address of the operand is generated by adding a constant value to the contents of a register?
(A) Absolute mode
                                                                         (B) immediate mode 
(C) indirect mode                                                                            (D) index mode


39 Which of the following are Assembler directives?
(i) EQU (ii) ORIGIN (iii) START (iv) END
(A) (ii),(iii) and (iv)
                                                                         (B) (i),(iii) and (iv)
(B) (iii) and (iv)
                                                                                 (D) (i),(ii),(iii) and (iv)



40 Which of the following OS treats hardware as a file system?
(A) UNIX
                                                                         (B) DOS 
(C) Windows NT                                                             (D) none of the above


41 In which of the following, ready to execute processes must be present in RAM?
(A) Multiprocessing
                                                                         (B) multiprogramming 
(C) multitasking                                                                                 (D) all of the above


42 If the executing program size is greater than the existing RAM of a computer, it is still possible to execute the program if the OS supports:
(A) Multitasking
                                                                         (B) virtual memory 
(C) paging system                                                                        (D) none of the above

43 Software Quality Assurance (SQA) encompasses:
(A) Verification
                                                                         (B) validation  
(C) both verification and validation                                        (D) none of the above

44 Which level is called as “defined” in capability maturity model?
(A) Level 0
                                                                         (B) level 3 
(C) level 4                                                                            (D) level 1


45 COCOMO model is used for:
(A) Product quality estimation
                                         (B) product complexity estimation
(C) product cost estimation
                                               (D) all of the above

46 Font sizes are usually expressed in points One point is:
(A) 0.0069 inch
                                                                         (B) 0.0138 inch
(C) 0.0207 inch
                                                                         (D)0.00276 inch

47 Assertion (A): Cellular telephone systems can handle a multitude of users
Reasoning(R ): Cellular telephone systems permit extensive frequency reuse in a small local area
(A) Both (A) and (R ) are true and (R ) is the correct explanation for (A)
(B) Both (A) and (R ) are true but (R ) is not the correct explanation
(C) (A) is true but (R ) is false
(D) (A) is false but (R ) is true



48 E-Commerce involves:
(A)Electronic Data Interchange
                                                                         (B) Electronic mail
(C) Electronic Bulletin boards
                                                                            (D) All of the above

49 An example of a data mining algorithm which uses squared error score function is:
(A) CART algorithm
                                                                         (B) back propagation algorithm 
(C) a priori algorithm                                                                         (D) vector space algorithm

50 (I) Each object in the active directory of windows 2000 has an access control list
(II) The scheme is a blueprint of all objects in the domain of windows 2000 Which of the following is true?
(A) Only (I)
                                                                                      (B) only (II) 
(C) both (I) and (II)                                                                          (d) none of the above