Custom Search

WHATSAPP GROUP QUESTIONFORALL

HELLO FRIENDS, FOR JOINING THE WHATSAPP GROUP OF QUESTIONFORALL JUST SEND YOUR DETAILS TO questionforall@gmail.com

Showing posts with label Solved Papers. Show all posts
Showing posts with label Solved Papers. Show all posts

Thursday, 15 February 2018

SOLVED PAPER OF HIGHER SECONDARY SCHOOL TEACHER-COMPUTER SCIENCE-2018

SOLVED PAPER OF HIGHER SECONDARY SCHOOL TEACHER-COMPUTER SCIENCE-KERALA HIGHER SECONDARY EDUCATION –EXAM HELD ON 01.02.2018.



























1. #define AND &&
#define OR !!
#define LE <=
#define GE >=
main()
{
char ch=‘D’ :
if ((ch GE 65 AND ch LE 90) OR (ch GE 97 AND ch LE 122))
printf(“alphabet”);
else
printf(“not an alphabets”):
}
(A) Compilation error (B) Not an alphabet
(C) Alphabet (D) None of the above

Ans: (C) Alphabet

2. main()
{
static char * s[] = {“ice”, “green”, “core”, “please”}:
static char **ptr[] = {s+3, s+2, s+1,s}:
char ***p=ptr;
printf(“%s\n”, **++p);
printf(“%s\n”, *--*++p+3);
printf(“%s\n”, *p[–2]+3);
printf(“%s\n”,p[–1][–1]+1);
}
(A) ice        (B) core         (C) please (D) None
      plea              ase                 core
       gr                reen                   gr

  Ans:(B).

3. main()
{
int k=35,z;
K=func1(k=func1(k=func1(k)));
printf(“k=%d”,k);
}
Funct1(k)
int k:
{
K++;
return(k):
}
(A) 35 (B) 37 (C) 38 (D) 40

Ans: (C)38

4. main ()
{
int j=1;
while (j<=255);
printf(“%c%d\n”, j,j);
j++;
}
}
(A) 255 (B) 255, 255 (C) No output (D) 256

Ans: (C)No output.

5. main()
{
int a=500, b=100,c;
if (!a>=400)
b=300;
c=200;
printf(“b=%d c=%d”,b,c);
}
(A) b=100, c=400 (B) b=100, c=300
(C) b=100, c=200 (D) None of the above
Ans: (C)

6. Multiple inheritance in java can be achieved by :
(A) interface (B) polymorphism (C) abstraction (D) encapsulation
Ans: (A)

7. Which is the base class of all classes in java ?
(A) system.lang (B) class.object (C) java.lang.object (D) none of the above

Ans: (C).

8. class output
{
public static void main (string args[ ])
{ string Buffer sb=new string Buffer (“Hello”);
Sb.delete (0,2);
system.out.println(c);
}
(A) He (B) Hel (C) lo (D) llo
Ans: (D).

9. Which of the interface contain all the method used for handling thread related operations in
java ?
(A) Runnable interface (B) Math interface
(C) System interface (D) Thread handling interface
Ans: (D)

10. Which of the package contains abstract keyword ?
(A) java.lang (B) java.util (C) java.io (D) java.system

Ans: (A)

11. A member function which initializes data member of an object in :
(A) Destructor (B) Constructor (C) Inline function (D) Friend function
Ans: (B).

12. A C++ key word, which, when used inside a member function of a class, represents a pointer
to the particular class object that invoked it :
(A) * (B) this (C) ? (D) None
Ans: (B).

13. Which of the following is a non linear data structure ?
(A) Tree (B) Array
(C) Linked list (D) None of the above
Ans: (A).

14. Which of the following is NOT a method for performing amortized analysis of algorithms ?
(A) Aggregate method (B) Accounting method
(C) Potential method (D) None of the above
Ans: (D).

15. 0-1 Knapsack problem can be solved by :
(A) Greedy method (B) Dynamic programming method
(C) Divide and conquer method (D) None of the above
Ans: (B).

16. Which is NOT a collision resolution technique in Hashing ?
(A) Chaining (B) Linear probing
(C) Quadratic Probing (D) None of the above
Ans: (D).

17. If any NP complete problem is in P class, then :
(A) P=NP (B) P!=NP
(C) P=NP (D) None of the above
Ans: (A).

18. Which of the following problem is NOT NP-complete ?
(A) Hamiltonian cycle problem (B) Clique problem
(C) Travelling-salesman problem (D) None of the above
Ans: (D).

19. The running time of Kruska’ls algorithm for a graph G=(V, E) for finding
Minimum–spanning–tree is :
(A) O(E log2 V) (B) O(E+V log2 V)
(C) O(E2) (D) O(V2)
Ans: (A).

20. The data structure used in breadth–first–search (BST) is :
(A) Stack (B) Queue
(C) B–Tree (D) None of the above
Ans: (B).

21. Strassen’s algorithm for multiplying n×n matrices runs in :
(A) O(n2) time (B) O(n3) time (C) O(2n) time (D) O(n2.81) time
Ans: (D).

22. The postfix representation of the expression (a+b*c)+((d*e+f)*g) is :
(A) abc*+de*f+g*+ (B) ab+c*de*f+g+*
(C) ab+c*de*f+g*+ (D) abc*+def*+g*+
Ans: (A)

23. The worst case time complexity of merge sort is :
(A) O(n2) (B) O(n log n) (C) O(n3) (D) O(2n)
Ans: (B).

24. A set of n>=0 disjoint trees :
(A) Tree (B) Forest (C) B Tree (D) All of the above
Ans: (B).

25. Which of the following is a linear data structures ?
(A) Array (B) Linked list
(C) Both (A) and (B) (D) None of the above
Ans: (C).

26. The worst case time complexity of Quick sort is :
(A) O(n2) (B) O(n log n) (C) O(n3) (D) O(2n)
Ans: (A).

27. Which of the following data structure is frequently used to implement priority queue ?
(A) Stack (B) Heap
(C) Treap (D) None of the above
Ans: (B).

28. A list in which contain nodes of different types :
(A) Homogenous list (B) Heterogeneous list
(C) Doubly linked list (D) None of the above
Ans: (B).

29. An ordered list in which insertion and deletion of nodes are made at one end ?
(A) Deque (B) Queue
(C) Stack (D) None of the above
Ans: (C).

30. A matrix whose most of the elements are zeroes :
(A) sparse matrix (B) dense matrix
(C) square matrix (D) none of the above
Ans: (A).

31. Which of the following is a self balancing binary search tree ?
(A) B– Tree (B) AVL Tree
(C) B+ Tree (D) None of the above
Ans: (B).

32. A network with bandwidth of 10 Mbps can pass only an average of 12000 frames per minute
with each frame carrying an average of 10,000 bits. What is the throughput of this
network ?
(A) 22 Mbps (B) 2 Mbps (C) 10 Mbps (D) 100 Mbps
Ans: (B)

33. A system is using NRZ-l to transfer 10-Mbps data. What is the average signal rate ?
(A) 500 Kbaud (B) 1000 MHz (C) 500 MHz (D) 1000 Kbaud
Ans: (A).

34. What is the minimum required bandwidth to send data at 1-Mbps rate using Manchester
Encoding ?
(A) 10 MHz (B) 2 MHz (C) 5 MHz (D) 1 MHz
Ans: (D)

35. To send 3 bits data at a time at a bit rate of 3 Mbps with a carrier frequency of 10 MHz
calculate the baud rate and bandwidth :
(A) 10 Mbaud and 10 MHz (B) 2 Mbaud and 2 MHz
(C) 1 Mbaud and 8 MHz (D) None of these
Ans: (C).

36. Eight channels each with a 100-kHz bandwidth are to be multiplexed together. What is the
minimum bandwidth of the link if there is a need for a guard band of 10 kHz between
channels to prevent interference ?
(A) 540 kHz (B) 870 kHz (C) 1020 kHz (D) 1080 kHz
Ans: (B)

37. The digital multiplexing technique for combining several low-rate channels into high-rate
one :
(A) TDM (B) FDM (C) CDM (D) none of these
Ans: (A)

38. RG-59 category cables are used for :
(A) Telephone (B) LAN
(C) Cable TV networks (D) None of these
Ans: (C).

39. The bit oriented protocol for communication over point to point and multipoint links is :
(A) HDLC (B) Stop and wait protocol
(C) PPP (D) PAP
Ans: (A).

40. The service not provided by PPP is :
(A) network address configuration (B) authentication
(C) flow control (D) none of these
Ans: (C).

41. Encryption is done at :
(A) Presentation Layer (B) Application Layer
(C) Session Layer (D) Transport Layer
Ans: (A).

42. One channel carries all transmissions simultaneously in :
(A) TDMA (B) CDMA (C) FDMA (D) PDMA
Ans: (B).

43. The IEEE standard for Wifi is :
(A) 802.4 (B) 802.1 (C) 802.2 (D) 802.11
Ans: D.

44. An example for cell switched network is :
(A) SONET (B) ATM (C) UPSR (D) None of these
Ans: (B).

45. GSM is a digital cellular phone system using :
(A) TDMA and packet switching (B) CDMA and packet switching
(C) TDMA and FDMA (D) FDMA and CDMA
Ans: (C).

46. UDP is a :
(A) Connectionless unreliable protocol
(B) Reliable and connection oriented protocol
(C) Connectionless reliable protocol
(D) Connection oriented unreliable protocol
Ans: (A).

47. SCTP is a __________ layer protocol.
(A) Session Layer (B) Application Layer
(C) DLL (D) Transport Layer
Ans: (D).

48. The result which operation contains all pairs of tuples from the two relations, regardless of
whether their attribute values match ?
(A) Join (B) Cartesian product
(C) Intersection (D) Set difference
Ans: (B).

49. The most commonly used operation in relational algebra for projecting a set of tuple from a
relation is :
(A) Join (B) Projection (C) Select (D) Union
Ans: (C).

50. For each attribute of a relation, there is a set of permitted values, called the __________ of
that attribute.
(A) Domain (B) Relation (C) Set (D) Schema
Ans: (A).

51. Managers salary details are hidden from employees. This is :
(A) Conceptual level data hiding (B) Physical level data hiding
(C) External level data hiding (D) None of these
Ans: (C).

52. In SR flip-flop, if S=R=1 then Q(t+1) will be :
(A) Q(t) (B) 0
(C) 1 (D) indeterminate state
Ans: (D).

53. If an encoder has 2n (or less) input lines. Then output line is :
(A) n/2 (B) n (C) 2n (D) n-1
Ans: (B).

54. The 10’s complements of 13250 is :
(A) 86740 (B) 86750 (C) 97850 (D) 97859
Ans: (B).

55. DeMorgan’s theorem says that a NOR gate is equivalent to __________ gate.
(A) Bubbled XOR (B) Bubbled AND (C) NOR (D) Bubbled NOR
Ans: (B).

56. AB+B((B+C')+B'C) can be simplified to :
(A) AB+BC (B) B+BC
(C) B+C (D) None of the above
Ans: (C).

57. The self complementing unweighted code is :
(A) 8421 (B) 2421 (C) Excess 3 (D) Gray code
Ans: (B).

58. In 8086 microprocessor the following has the highest priority among all the type of
interrupt :
(A) NM 1 (B) type 255 (C) over flow (D) Div 0
Ans: (A).

59. Which among the following is the maximum mod signal in 8085 ?
(A) DT/R' (B) HOLD (C) ALE (D) LOCK
Ans: (D).

60. INT2 in 8086 is :
(A) Single step interrupt (B) Non maskable interrupt
(C) Division by zero interrupt (D) Overflow interrupt
Ans: (B).

61. Which among the following is the programmable DMA controller in 8086 ?
(A) 8259 (B) 8257 (C) 8251 (D) 8250
Ans: (D).

62. In cyclomatic complexity, if E is the number of edges and N is the number of nodes, V(G), for
a flow graph is defined as :
(A) E-N+2 (B) E-N-1 (C) E+N-2 (D) E+N-1
Ans: (A).

63. Which among the following is the risk driven process model ?
(A) Prototyping (B) Spiral model
(C) Component based development (D) Waterfall model
Ans: (B).

64. Which testing method is normally used as the acceptance test for a software system ?
(A) Unit testing (B) Integration testing
(C) Functional testing (D) Regression testing
Ans: (B).

65. Application like Banking and Reservation require which type of operating system :
(A) Hard real time (B) Soft real time
(C) Real time (D) Time sharing
Ans: (B).

66. Preemptive scheduling is the strategy of temporally suspending a running process :
(A) To avoid collision (B) When it request i/o
(C) Before the CPU time slice expires (D) None of the above
Ans: (C).

67. Time for the disk, rotate to the start of the desired sector is known as :
(A) Seek time (B) Transfer time (C) Latency time (D) Access time
Ans: (C).

68. Mutual exclusion problem occurs between :
(A) Process that share resources
(B) Process use not the same resources
(C) Two disjoint process that do not interact
(D) None of the above
Ans: (A).

69. PNG stands for :
(A) Packet network graphics (B) Portable network graphics
(C) Protocol for network graphic (D) None of the above
Ans: (B)

70. The maintenance activity to find and fix error during operation of error is :
(A) adaptive maintenance (B) corrective maintenance
(C) perfective maintenance (D) preventive maintenance
Ans: (B).

71. Which method uses small increments with minimum planning and iterations are short time
frames ?
(A) Water fall model (B) Spiral model
(C) Agile model (D) Prototype model
Ans:(B).

72. Telnet is a :
(A) Remote login (B) Television network
(C) Network of telephone (D) None of the above
Ans: (A).

73. Trends to outsource IT functions t other countries is known as :
(A) Outer outsourcing (B) External outsourcing
(C) Foreign outsourcing (D) Offshore outsourcing
Ans: (D).

74. Which of the following method of channelization are used for mobile data internet
working ?
(A) Time division multiple access (B) Frequency division multiple access
(C) Code division multiple access (D) All of the above
Ans: (D).

75. Honey pot is an example for :
(A) Security auditing software (B) Encryption-decryption software
(C) Intrusion-detection software (D) Virus
Ans: (C).

76. ‘Hibernate’ in Windows XP/Windows 7 means :
(A) Shutdown the computer without closing the running application
(B) Shutdown the computer terminating all running applications
(C) Restart the computer
(D) Restart the computer in safe mode
Ans: (A).

77. The UNIX Shell is :
(A) A command line interpreter (B) Set of user commands
(C) A GUI interface (D) All of the above
Ans: (A).

78. If every non key attribute is functionally depend on primary key, then the relation will be :
(A) First normal form (B) Second normal form
(C) Third normal form (D) Fourth normal form
Ans: (C).

79. An attribute of one table is matching the primary key of another table, is known as :
(A) Secondary key (B) Foreign key
(C) Candidate key (D) Composite key
Ans: (B).

80. In relational model, tuple is equivalent to :
(A) Record (B) Table (C) File (D) Field
Ans: (A).

81. Who among the following leaders is not associated with the formation of the Congress Socialist
Party in 1934 ?
(A) Sardar Vallabhai Patel (B) Jayaprakash Narayanan
(C) Achyuth Patwardhan (D) R.M. Lohya
Ans: (A).

82. The code name “Operation Barbarosa” is associated with the following countries in the Second
World War :
(A) England and France (B) France and Germany
(C) Germany and Soviet Union (D) U.S.A. and Japan
Ans: (C).

83. Who among the following is the author of “Prince of the folly” ?
(A) Erasmus (B) Machiavelly (C) Thomas More (D) Boccassio
Ans: (A).

84. Which of the following social reformer of Kerala founded the “Sadhu Jana Sangam” ?
(A) Mannath Padmanabhan (B) Vagbhatanantha
(C) Ayyankali (D) Pandit Karuppan
Ans: (C).

85. Which National leader of India is nicknamed as “Prince of workers” ?
(A) Dadabhai Naoroji (B) Gopalakrishna Gokhale
(C) Bal Gangadhara Tilak (D) Surendra Natha Bannarjee
Ans: (B).

86. “New India” is the Newspaper published by :
(A) Mahatma Gandhi (B) Annie Beasant
(C) Syed Ahammed Khan (D) Lala Lajpath Rai
Ans: (B).

87. The Indian Independence Act Passed by the British Parliament in :
(A) August 14, 1947 (B) July 1, 1947
(C) February 12, 1947 (D) July 18, 1947
Ans: (D).

88. Which social reformer of Kerala started the weekly “Prabhodakam” ?
(A) Mannath Padmanabhan (B) Muhammed Abdul Rahman
(C) Kesari Balakrishna Pillai (D) Swadeshabhimani Ramakrishna Pillai
Ans: (C).

89. Which of the following state of India is called the “Botanist paradise” ?
(A) Assam (B) Kashmir
(C) Sikkim (D) Arunachal Pradesh
Ans: (C).

90. Who among the following ruler built the famous “Charminar” ?
(A) Firus Shah Tuglak (B) Shahjahan
(C) Aurangazeb (D) Quli Qutub Shah
Ans: (D).

91. Which among the following is India’s National river ?
(A) Indus (B) Ganga (C) Brahmaputhra (D) Narmada
Ans: (B).

92. Swaraj Party was the outcome of which of the following incident ?
(A) Chauri-Chaura (B) Quit India
(C) Simon Commision (D) Bardoli Satyagraha
Ans: (A).

93. Who is called the “Lincoln of Kerala” ?
(A) Pandit Karuppan (B) Dr. Palpu
(C) Sahodharan Ayyappan (D) Poikayil Yohannan
Ans: (A).

94. In the constitution of India article 32 deals with :
(A) Writ (B) Equal pay for equal work
(C) Panchayath raj system (D) Uniform civil code
Ans: (A).

 95. “Panmana Asramam” is related to :
(A) Kumarasenan (B) Chattambi Swamikal
(C) Vagbadanandhan (D) Vaikunda Swamikal
Ans: (B).

96. Who among the following is the President of Karachi Session of INC in 1931 ?
(A) Sardar Vallabhai Patel (B) Mothilal Nehru
(C) Jawaharlal Nehru (D) Annie Besant
Ans: (A).

97. Which among the following year the famous Malayalam historical novel “Martandavarma”
published ?
(A) 1901 (B) 1906 (C) 1891 (D) 1896
Ans: (C).

98. In which of the following year last Mamankam was held at Thirunavaya ?
(A) 1775 (B) 1780 (C) 1792 (D) 1802
Ans: (A).

99. Which ruler of Cochin started “Thrissur Pooram” ?
(A) Swathi Thirunal (B) Marthanda Varma
(C) Sakthan Thampuran (D) Sree Chithira Thiruna
Ans: (C).

100. Who among the following raised the slogan “Inquilab Zindabad” for the first time ?
(A) Surya Sen (B) Bhagat Singh
(C) V.D. Savarkar (D) Chandrasekhar Azad
Ans: (B).

Sunday, 23 April 2017

SOLVED PAPER OF LEGAL ASSISTANT GR-II –LAW DEPARTMENT (GOVERNMENT SECRETARIAT)


1. “Operation Anantha” is  a Thiruvananthapuram  based  project aimed  at :
Preventing floods in the city.

2. “India is my country. All Indians are my brothers and sisters”, which is the national pledge are the words of :
Venkita Subba Rao.

3. Provisional Government of free India was proclaimed in1943 from :
Singapore.

4. What historic incident took place in Meerut on May 10, 1857?
Sepoy Mutiny.

5. Which Travancore ruler abolished slave trade?
Rani Gowri Lakshmi bai.

6. NITI Aayog is a new arrangement. What institution did it replace?
Planning Commission.

7. Government of India observes December 25 as :
Good Governance Day.

8. The Bengal revolutionaries took shelter in a North-Eastern State( the princely state) which took active participation in the freedom struggle. Which state?
Tripura.

9. What revolutionary incident took place on 10th March 1888 in Travancore?
Aruvippuram Prathishta.

10. The Constituent Assembly was formed based on the proposals of :
Cabinet Mission.

11. The opening article of Indian Constitution declares that “India, that is Bharat, shall be a  …………
Union of states.

12. 86th Constitutional amendment in 2002 inserted Article 21-A. What fundamental right does it provide?
Right to Education.

13. Basic structure of the Constitution are unamendable according to the verdict in :
Kesavananda Bharati Case.

14. Who among the following was not a Prime Minister of India:
(a)Charan Singh (b) Chandrasekhar (c) Jagjivan Ram (d) Morarjee Desai.
Ans :Jagjivan Ram.

15. Question Deleted.

16. Representation of a State in Rajya Sabha is based on :
Population of the state.

17. The practice of transferring the law making powers to the executive by the legislature due to lack of time and expertise is known as :
Delegated legislation.

18. Which of the following constitutional provisions cannot be amended by the Parliament by passing a law  by simple majority?
(a)Abolition of Legislative Councils in States.
(b)Changes in name and boundary of states.
(c)Salaries and allowances of the President
(d) Composition and jurisdiction of Supreme Court.
Ans : Composition and jurisdiction of Supreme Court.

19. Which of the following writs can be helpful in securing the release of a person unlawfully detained?
(a)Habeas Corpus (b)Mandamus (c)Prohibition (d)Certiorari.
Ans: Habeas Corpus

20. President of India is elected by an electoral college consisting of :
Elected members of both Parliament and State Legislative Assemblies.

21. The feminine form of ‘master ‘is ……….
Mistress.

22. The plural form of ‘basis’ is ………….
Bases.

23. The superlative form  of ‘little’ is ……………..
Least.

24. She is senior ……….his brother by two years.
To.
25. She made………attempt to cross the bridge.
An.

26. You can travel ………..road.
By

27. She prefers coffee……tea.
To

28. She is …….. small to lift the weight.
Too

29. She did his work……………
Efficiently

30. The man enquired where……………..
(a)the office is (b)was  the office (c) the office was (d)will be the office
Ans: The office was.

31. The principle of ‘actus non facit return nisi mens sit rea’ 
Common law.

32. U/s 209 Cr.P.C  , the committal proceedings are in the nature of :
Trial.

33. The jurisdiction to try cases of juveniles is vested with:
Chief Judicial Magistrate.

34. The term ‘will’ is defined in :
General Clauses Act.

35. Match the following :
(a) Lee.V.Knapp (i) Literal Rule
(b) Smith.V.Hughes     (ii) Ejusdem Generis
(c) Grey V .Pearson (iii) Golden Rule
(d) Clark.V.Gaskarth (iv) Mischief Rule.
Ans: (a) –(iii),  (b)-(iv), (c)-(i), (d)-(ii).

36. The maximum no.of offences of the same kind within the space of 12 months that can be charged together is?
3.

37. The period of limitation in the case of an offence of an offence punishable with imprisonment for a term not exceeding one year is :
1 year.

38. The liability in which the sole intention of the law is to enforce the plaintiff’s rights  and not to punish the wrongdoer is :
Remedial liability.

39. The theory of social contract is propounded by :
Rousseau.

40. Question Deleted.

41. Match the following:
(a) Intoxication (i)R.V.Tolson
(b) Criminal attempt (ii)DPP.V.Beard
(c) Sexual harassment (iii) Gian Kaur V State of Punjab.
(d) Mens rea (iv) Visakha V.State of Rajasthan.
Ans: (a) –(ii),  (b)-(iii), (c)-(iv), (d)-(i).

42. Question Deleted.

43. Under Companies Act, 2013, the maximum number of members in a private company is :
200.

44. The limit of territorial water of India extends to……………nautical miles.
12.

45. The modern concept of rule of law was developed by :
Delhi Declaration, 1959.

46. Appropriate legislature is empowered to frame service rules under……… of constitution of India.
Article 309.

47. Irrationality of administrative action is determined by ……….
Wednesbury test.

48. The Doctrine of Ultra Vires is related to :
Ashbury Railway Carriage and Iron Co.V.Riche.

49. Attestation under Transfer Property Act requires:
Two or more witnesses.

50. Which of the following is primarily concerned with environmental protection?
(A)WIPO (B)WHO (C)Red Cross (D)Green Peace.
Green Peace.

51. The rule of necessity is admissible under section ………….of Evidence Act.
32.

52. Temporary injunction is guaranteed under…………..of Civil Procedure Code.
Order 39 Rule 1

53. The Evidence Act has ………..sections.
167

54. A woman is entitled to get legal aid if her income is ………..
No limitation.

55. Legal aid is a…….
Fundamental Right.

56. At the final disposal of suit, if the parties fail to produce evidence the court may :
(A)Pronounce judgment (B)Adjourn the case (C)Dismiss the case (D)Both (A) and (B)
Ans: (D) Both (A) and (B).

57. A judgment can be reviewed by………
Same Court.

58. A subscriber becomes a member of the company :
Immediately on the incorporation of the company.

59. In fixing the liability, the rule of proximity to the crime committed is irrelevant in :
Abetment and conspiracy.

60. Counter claim can be fixed under:
Order VIII, Rule 6A CPC.

61. Charge is defined under:
S.100 of Transfer of Property Act.

62. Which of the following is an actionable claim?
(A)Arrears of rent (B)Decree (C)Stock and Shares (D)All of the above.
Ans: Arrears of rent.

63. The rule against perpetuity is provided under:
S.14 of T.P.Act.

64. ‘X’ voluntarily throws a ring belonging to ‘Y’ into a river with the intention to cause wrongful  loss to ‘Y’.’X’ is liable for:
Mischief.

65. Question Deleted.

66. The oral evidence shall be…………….
Direct.

67. The Maternity Benefit Act was passed in the year ………
1961.

68. The number of persons required for registration of trade union is…….
7.

69. Question Deleted.

70. The term grund norm is associated with
Kelsen.
Basic norm (German: Grundnorm) is a concept in the Pure Theory of Law created by Hans Kelsen, a jurist and legal philosopher. Kelsen used this word to denote the basic norm, order, or rule that forms an underlying basis for a legal system. 

71. Every promise and every set of promises forming consideration for each other is :
Agreement.

72. The rule that no one shall be allowed to enrich himself at the expense of another is the basis of :
Quasi contract.

73. International concern for the protection of environment is the subject matter of :
Stockholm declaration.

74. The model forms of memorandum of association is provided in …… of companies Act, 2013.
Schedule I.

75. Lok Adalats are constituted under:
Legal Service Authorities Act.

76. The nature of transaction in the case where a dentist agrees to make artificial teeth for a person and fit them into mouth:
Contract for work.

77. Cox Vs. Hickman is associated with ………
Partnership.

78. The multifariousness in a suit is the result of :
(A)Misjoinder of cause of action (B)Misjoinder of parties  (C)Both (A) and (B) 
(D)  Either (A) or (B).
Ans: (C)Both (A) and (B).

79. Human rights are derived from:
Natural law.

80. The permanent lok adalat us established under:
S.22B of the Legal Services  Act.

81. An employee is eligible for leave with wages if he worked for ……..days in a month.
20.

82. Protection officer under protection of women from Domestic Violence Act, 2005 is appointed by:
State government.

83. Which of the following considered as first generation rights?
(A) Social and Economic Rights (B) Civil and Political Rights (C) Cultural Rights (D) All of the above.
Ans: (B) Civil and Political Rights.

84. Question Deleted.

85. Liberty, equality and Fraternity are the slogans of :
French Revolution.

86. Article 1  ICCPR guarantees:
Right to self determination.

87. The jurisdiction of Munsiff Court is :
10Lakhs.

88. Doctrine of public trust is related to
Protection of environment.

89. Presumption as to dowry death is provided under …….of Evidence Act.
Section 113B.

90. A dying declaration is valid and admissible if it is made before:
(A) The police officer not below the rank of S.P.
(B)  Any police officer with the consent of court.
(C) Magistrate.
(D) All of the above.
Ans : (D) All of the above.

91. The constitutional provision which lays down the responsibility of govt. towards environmental protection?
Article 48 A.

92. In India the conciliation proceedings are adopted on the model of:
UNCITRAL.

93. Question deleted.

94. Under Payment of Bonus Act, an employee is eligible to get bonus if he has worked for not less than ……days in the preceding year.
30.

95. The Article which provides constitutional protection to the civil servants:
Article311.

96. The concept of corporate social responsibility is embodied in :
Section 135 of Companies Act 2013.

97. A public company may issue securities by :
(A) Public Offer (B)Private placement (C)Bonus issue (D)All of the above.
Ans: All of the above.

98. Where a forest offence has been committed in respect of any forest produce, it can be seized by:
(A) Forest Officer (B)Police Officer (C)Both (A) and (B) (D) Magistrate.
Ans: Both (A) and (B.

99. The right to free and compulsory education is provided to the children between ….. under the Right of children to Free and Compulsory Education Act 2009.
6 to 14.

100. The maximum number of public companies in which a person can be appointed as a director.
10.

Custom Search