Explore topic-wise MCQs in Automata Theory.

This section includes 315 Mcqs, each offering curated multiple-choice questions to sharpen your Automata Theory knowledge and support exam preparation. Choose a topic below to get started.

201.

Transfer of pollens from anther to stigma is called as

A. fertilization
B. pollination
C. XX
D. XX
Answer» C. XX
202.

Where did Erich Maria Remarque live from 1948 onwards?

A. Canada
B. Panama
C. Russia
D. Switzerland
Answer» E.
203.

Which of the folowing does an indexer allow to index in the same way as an array? 1.A class 2.A property 3.A struct 4.A function 5.An interface

A. 2, 4
B. 1, 3, 5
C. 3, 4, 5
D. 3, 5
Answer» C. 3, 4, 5
204.

The ranking of jobs based on difficulty is called

A. job description
B. job specification
C. job evaluation
D. ranking method
Answer» E.
205.

The variables such as skills, responsibility and working conditions to compare jobs on basis of them is called

A. logical factors
B. comprehensive factors
C. compensable factors
D. intuitive factors
Answer» D. intuitive factors
206.

The compensation for top executive job is largely based on

A. job complexity
B. (employers)ability to pay
C. executive's human capital
D. All of the above
Answer» E.
207.

Which of the following is used for agitation in a fermentor?

A. Baffles
B. Impeller
C. All of these
D. Sparger
Answer» C. All of these
208.

Amount of ADH determines the

A. amount of water reabsorbed in kidney
B. amount of water a person shall drink
C. amount of oxygen required in rigorous running and physical activities
D. amount of oxygen required to oxidize lactic acid
Answer» B. amount of water a person shall drink
209.

The demonstrable skills, knowledge or behaviors and enable employee's performance are called

A. competencies
B. job description
C. job specification
D. job evaluation
Answer» B. job description
210.

Spherical-shaped bacteria are referred as

A. bacilli
B. cocci
C. none of these
D. spirilla
Answer» C. none of these
211.

High ethanol concentration

A. inhibits yeast growth
B. promotes yeast growth
C. inhibits bacterial growth
D. promotes bacterial growth
Answer» B. promotes yeast growth
212.

Defining the factors to be compared is included in

A. selection of compensable factors
B. selection of intuitive factors
C. selection of logical factors
D. selection of comprehensive factors
Answer» B. selection of intuitive factors
213.

The example of green biotechnology is

A. industrial chemicals
B. industrial antibiotics
C. BT corn and pesticides
D. industrial catalysts
Answer» D. industrial catalysts
214.

The ranging and grading salary into just few levels is called

A. broad banding
B. less branding
C. competency model
D. skill based pay model
Answer» B. less branding
215.

The concession employees gets in form of discounts in air ticket and bus fares is an example of

A. incentives
B. non direct payments
C. direct payments
D. salary increments
Answer» C. direct payments
216.

The employee comparing his pay and other's pay in other company for same position is called

A. internal equity
B. external equity
C. collective equity
D. individual equity
Answer» C. collective equity
217.

The employees inability to perform assigned task is classified as

A. misconduct
B. lack of qualifications
C. unsatisfactory satisfaction
D. insubordination
Answer» C. unsatisfactory satisfaction
218.

Suppose that you have a customer who has a central HQ and six branch offices. They anticipate adding six more branches in the near future. They wish to implement a WAN technology that will allow the branches to economically connect to HQ and you hav

A. HDLC
B. PPP
C. ISDN
D. Frame Relay
Answer» E.
219.

Anchoring jobs and slotting the other jobs accordingly is called

A. benchmarking jobs
B. evaluating pay scales
C. evaluating pay grades
D. evaluating internal equity
Answer» B. evaluating pay scales
220.

Cadmium is an example of

A. inorganic waste
B. organic waste
C. XX
D. XX
Answer» B. organic waste
221.

Which was Erich Maria Remarque first novel?

A. Arc de Triomphe
B. Die Traumbude
C. Der Funke Leben
D. Der Kameraden
Answer» C. Der Funke Leben
222.

The second step in 'ranking method' of job evaluation is to

A. combine ratings
B. rank jobs
C. selecting compensable factors
D. grouping jobs
Answer» E.
223.

Where was Ernesto Orlando Lawrence assistant professor?

A. Harvard
B. Princeton
C. Notre Dame
D. Yale
Answer» E.
224.

Which of the following statements are correct about an enum used inC#.NET? 1.To use the keyword enum, we should either use [enum] or System.Enum. 2.enum is a keyword. 3.Enum is class declared in System.Type namespace. 4.Enum is a

A. 2, 4
B. 1, 3
C. 3, 4
D. 2, 5
Answer» E.
225.

Which of the following will be the correct output for the C#.NET code snippet given below? String s1 = \"ALL MEN ARE CREATED EQUAL\"; String s2; s2 = s1.Substring(3); Console.WriteLine(s2);

A. CRE
B. ARE
C. REA
D. CR
Answer» B. ARE
226.

Elimination of direct comparison in ranking method of job evaluation is included in

A. combine ratings
B. rank jobs
C. selecting compensable factors
D. select and group jobs
Answer» E.
227.

Which of the following should be used to implement a \'Has a\' relationship between two entities?

A. Templates
B. Polymorphism
C. Encapsulation
D. Containership
Answer» E.
228.

Mycelia is formed through thread like structures called as

A. hypha
B. cilia
C. flagella
D. hydra
Answer» B. cilia
229.

Larynx refers to the

A. mucus
B. epithelium
C. voice box
D. inner lining of nose
Answer» D. inner lining of nose
230.

Which University did Eugene O’Neill attend?

A. Harvard
B. Cornell
C. Yale
D. Princeton
Answer» E.
231.

Where did Evelyn Waugh die?

A. Mells
B. Combe Florey
C. Chelsea
D. Wellington
Answer» C. Chelsea
232.

Where did Eugene O’Neill die?

A. Liverpool
B. Boston
C. Provincetown
D. Wallingford
Answer» C. Provincetown
233.

Which of the following statements are correct about exception handling in C#.NET? 1.If our program does not catch an exception then the .NET CLR catches it. 2.It is possible to create user-defined exceptions. 3.All types of exception

A. 1, 2 and 3 only
B. 1 and 2 only
C. All of the above
D. 4 and 5 only
Answer» B. 1 and 2 only
234.

Which of the following statements is correct about the C#.NET code snippet given below? int d; d = Convert.ToInt32( !( < 20) );

A. A value 1 will be assigned to d
B. A value 0 will be assigned to d
C. The code reports an error.
D. A value -1 will be assigned to d
Answer» B. A value 0 will be assigned to d
235.

Which of the following statements are correct about the String Class in C#.NET? 1.Two strings can be concatenated by using an expression of the form s3 = s1 s2; 2.String is a primitive in C#.NET. 3.A string built using StringBuilde

A. 2, 4
B. 1, 2, 5
C. 3, 5
D. 1, 3, 4
Answer» E.
236.

Central heating systems can be run through

A. burning of garbage
B. more deforestation
C. XX
D. lesser incinerators
Answer» B. more deforestation
237.

You have a network that needs 29 subnets while maximizing the number of host addresses available on each subnet. How many bits must you borrow from the host field to provide the correct subnet mask?2

A. 3
B. 2
C. 5
D. 4
Answer» D. 4
238.

In the professional jobs, the compensable factors mostly focused are

A. problem solving
B. creativity
C. technical knowledge and expertise
D. All of the above
Answer» E.
239.

The fermentor can be sterilized by

A. steam under pressure
B. keeping it in the oven
C. all of these
D. boiling
Answer» B. keeping it in the oven
240.

The justice and fairness of a result of a decision is classified as

A. descriptive justice
B. procedural justice
C. distributive justice
D. severance justice
Answer» D. severance justice
241.

Where was Eugene Paul Wigner a professor in 1938-1971?

A. Massachusetts Institute of Technology
B. Dartmouth College
C. Princeton University
D. University of Pennsylvania
Answer» D. University of Pennsylvania
242.

Each band in broad banding contains

A. wide range of jobs
B. lesser range of job
C. only one type of job
D. unspecified job description
Answer» B. lesser range of job
243.

Spinal nerve

A. contains only effector neurons
B. contains only receptor neurons
C. is a mixed nerve
D. is attached dorsally to the medulla oblongata
Answer» D. is attached dorsally to the medulla oblongata
244.

When did Ernesto Orlando Lawrence win Nobel Prize for Physics?

A. 1939
B. 1933
C. 1947
D. 1944
Answer» B. 1933
245.

Which of the following statements are correct? 1.C# allows a function to have arguments with default values. 2.C# allows a function to have variable number of arguments. 3.Omitting the return value type in method definition results into

A. 3, 4, 5
B. 1, 3, 5
C. 4, 5
D. 2, 5
Answer» E.
246.

The third step in 'ranking method' of evaluating job method is to

A. selecting compensable factors
B. combine ratings
C. rank jobs
D. select and group jobs
Answer» E.
247.

Minimum time required between blood donations is

A. 3 months
B. 1 month
C. 9 months
D. 6 months
Answer» B. 1 month
248.

The 'rate of return on investment' is classified as

A. long-term shareholder value
B. calculating stock value
C. calculating return on investment
D. calculating working capital
Answer» B. calculating stock value
249.

For what did Ernesto Orlando Lawrence win Nobel Prize for Physics?

A. Investigation of atomic structure and radiation
B. Discovery of anomalies in alloys
C. Invention of cyclotron
D. Work in X-Ray spectroscopy
Answer» D. Work in X-Ray spectroscopy
250.

The pay plan that is based on influence-able competencies let companies focus on

A. performance management process
B. high performance work system
C. less performance work system
D. quantitative job evaluation
Answer» B. high performance work system