The age of Discontinuity‘ (1969) has been authored by
A. John Drydon
B. Cyril Debydeen
C. Peter F. Drucker
D. None of these

1 Answer

Answer :

C. Peter F. Drucker

Related questions

Description : Hawthorne Experiments were conducted by– (A) Elton Mayo (B) Henry Fayol (C) F. W. Taylor (D) Peter F. Drucker

Last Answer : Answer: Elton Mayo

Description : The credit for inventing the word ―Privatisation‖ goes to A. Elton Mayo B. F.W. Taylor C. L. Urwick D. Peter Drucker

Last Answer : D. Peter Drucker

Description : Concept of MBO was introduced by: (a) Peter. F.Drucker ; (b) Mary Parker ; (c) Henry Fayol ; (d) Philip Kotler

Last Answer : (a) Peter. F.Drucker ;

Description : MBO approach in management was introduced by– (A) M. P. Follet (B) Keith Davis (C) Peter Drucker (D) Oliver Sheldon

Last Answer : Answer: Peter Drucker

Description : Peter Drucker noted the relationship between selling and marketing in the following terms : 1. Marketing is a subsidiary component of selling 2. The aim of marketing is to make selling superfluous 3. The aim of selling is to make marketing superfluous 4. Selling 5. All of the above

Last Answer : The aim of marketing is to make selling superfluous

Description : Which management theorist is responsible for the motivation-hygiene theory? (a) Abraham Maslow ; (b) Dale Hawthorne ; (c) Peter Drucker ; (d) Frederick Herzberg

Last Answer :  (d) Frederick Herzberg

Description : Das Kapital, published in German in 1867, was authored by: a) Karl Marx b) John Maynard Keynes c) F. Hayek d) Samuelson

Last Answer : a) Karl Marx b) John Maynard Keynes c) F. Hayek d) Samuelson

Description : Suppose d = { john :40, peter :45}, what happens when we try to retrieve a value using the expression d[ susan ]? a) Since susan is not a value in the set, Python raises a KeyError ... Python raises a KeyError exception d) Since susan is not a key in the set, Python raises a syntax error

Last Answer : c) Since “susan” is not a key in the set, Python raises a KeyError exception

Description : What will be the output? d = {"john":40, "peter":45} print(list(d.keys())) a) [“john”, “peter”]. b) [“john”:40, “peter”:45]. c) (“john”, “peter”) d) (“john”:40, “peter”:45)

Last Answer : a) [“john”, “peter”].

Description : Suppose d = {“john”:40, “peter”:45}. To obtain the number of entries in dictionary which command do we use? a) d.size() b) len(d) c) size(d) d) d.len()

Last Answer : b) len(d)

Description : Suppose d = {“john”:40, “peter”:45}, to delete the entry for “john” what command do we use a) d.delete(“john”:40) b) d.delete(“john”) c) del d[“john”]. d) del d(“john”:40)

Last Answer : c) del d[“john”].

Description : What is the output? d = {"john":40, "peter":45} d["john"] a) 40 b) 45 c) “john” d) “peter”

Last Answer : a) 40

Description : What will be the output? d1 = {"john":40, "peter":45} d2 = {"john":466, "peter":45} d1 > d2 a) True b) False c) Error d) None

Last Answer : c) Error

Description : What will be the output? d1 = {"john":40, "peter":45} Page No 40 d2 = {"john":466, "peter":45} d1 == d2 a) True b) False c) None d) Error

Last Answer : b) False

Description : What will be the output? d = {"john":40, "peter":45} "john" in d a) True b) False c) None d) Error

Last Answer : a) True

Description : Read the code shown below carefully and pick out the keys? d = {"john":40, "peter":45} a) “john”, 40, 45, and “peter” b) “john” and “peter” c) 40 and 45 d) d = (40:”john”, 45:”peter”)

Last Answer : b) “john” and “peter”

Description : Which of the following statements create a dictionary? a) d = {} b) d = {“john”:40, “peter”:45} c) d = {40:”john”, 45:”peter”} d) All of the mentioned

Last Answer : d) All of the mentioned

Description : What will be the output? d = {"john":40, "peter":45} d["john"] a) 40 b) 45 c) “john” d) “peter”

Last Answer : a) 40

Description : Who of the following pairs of Nobel Laureates in Physics was awarded 2010 Nobel Prize? (1) John C Mather, George F. Smoot (2) Albert Fert, Peter Grunberg (3) David Gross, Frank Wilczek (4) Andre Geim, Konstantin Novoselov

Last Answer : Andre Geim, Konstantin Novoselov

Description : Who demarcated the boundary line between India and Pakistan? (a) Lord Curzon (b) Lord Canning (c) Cyril Radcliffe (d) Stafford Cripps

Last Answer : Ans: (c)

Description : Who authored the book ‘The Future of Human Rights’ (a) John Rawls (b) AmartyaSen (c) J.S. Mill (d) UpendraBaxi

Last Answer : (d) UpendraBaxi

Description : Is the John Fassel that is the Assistant Special Teams coach of the Baltimore Ravens the son that Coach Jim Fassel of the NY Giants and his wife gave up for adoption in 1969?

Last Answer : No. Coach John Fassel is indeed Jim Fassel's son, but the son that he was reunited with is named John Mathieson (adopted by the Mathieson family in 1969) and is a car salesman in Colorado.

Description : The autobiography ‘Living History’ has been authored by author? -Do You Know?

Last Answer : answer:

Description : Encyclopaedia of Chemical Technology" has been (A) Authored by Kirk Othmer (B) Edited by Perry and Chilton (C) Edited by Kirk Othmer (D) Authored by Perry and Chilton

Last Answer : (C) Edited by Kirk Othmer

Description : Why was the case of John Peter Zenger important?

Last Answer : Need answer

Description : Why was the case of John peter zenger was important because?

Last Answer : Need answer

Description : What did John have in common with Andrew and peter?

Last Answer : They all came from Bethsaida in Galilee.They were all fishermen.They were all disciples of Jesus.

Description : What was John Peter Zenger and occupation?

Last Answer : What is the answer ?

Description : He served as a secret agent under the name Peter John Rule and helped the resistance movement in China, Burma, and French Indochina. In 1943, he was captured by Vichy France loyalists on ... severe hardship and forced labour. These experiences formed the foundation of his famous 1952 work. Who?

Last Answer : Pierre Boulle.

Description : What will be the output of the following Python code? d = {"john":40, "peter":45} d["john"] a) 40 b) 45 c) “john” d) “peter”

Last Answer : Answer: a Explanation: Execute in the shell to verify.

Description : What will be the output of the following Python code snippet? d1 = {"john":40, "peter":45} d2 = {"john":466, "peter":45} d1 > d2 a) True b) False c) Error d) None

Last Answer : Answer: c Explanation: Arithmetic > operator cannot be used with dictionaries.

Description : What will be the output of the following Python code snippet? d1 = {"john":40, "peter":45} d2 = {"john":466, "peter":45} d1 == d2 a) True b) False c) None d) Error

Last Answer : Answer: b Explanation: If d2 was initialized as d2 = d1 the answer would be true.

Description : What will be the output of the following Python code snippet? d = {"john":40, "peter":45} "john" in d a) True b) False c) None d) Error

Last Answer : Answer: a Explanation: In can be used to check if the key is int dictionary.

Description : What will be the output of the following Python code snippet? d = {"john":40, "peter":45} a) “john”, 40, 45, and “peter” b) “john” and “peter” c) 40 and 45 d) d = (40:”john”, 45:”peter”)

Last Answer : Answer: b Explanation: Dictionaries appear in the form of keys and values.

Description : Which of the following statements create a dictionary? a) d = {} b) d = {“john”:40, “peter”:45} c) d = {40:”john”, 45:”peter”} d) All of the mentioned

Last Answer : A

Description : Who among the following propounded the concept of paradigm? (A) Peter Haggett (B) Von Thunen (C) Thomas Kuhn (D) John K. Wright

Last Answer : (C) Thomas Kuhn 

Description : Moho discontinuity lies at the depth of approximately howmany kilometers? -General Knowledge

Last Answer : The answer is '400 km'

Description : Moho discontinuity lies at the depth of approximately howmany kilometers? -General Knowledge

Last Answer : answer:

Description : Moho discontinuity lies at the depth of approximately howmany kilometers? -General Knowledge

Last Answer : answer:

Description : What is Mohorovicic discontinuity?

Last Answer : Nothing

Description : What is green's function jump discontinuity of derivative?

Last Answer : Which one is correct dG(x-0)-dG(x+0)=-1/p(t) or 1/p(t)

Description : The Mohorovicic (Moho) Discontinuity separates – (1) Outer core and Mantle (2) Inner and Outer core (3) Sima and Nife (4) Crust and Mantle

Last Answer : (4) Crust and Mantle Explanation: The Mohorovicic discontinuity, usually referred to as the Moho, is the boundary between the Earth's crust and the mantle. Named after the pioneering ... within the lithosphere; only beneath mid-ocean ridges does it define the lithosphere - asthenosphere boundary.

Description : Stress Concentration Factor is the ratio of nominal stress obtained by elementary equations for minimum cross- section and highest value of actual stress near discontinuity. a) True b) False

Last Answer : b) False

Description : The three moments equation is applicable only when (A) The beam is prismatic (B) There is no settlement of supports (C) There is no discontinuity such as hinges within the span (D) The spans are equal

Last Answer : (C) There is no discontinuity such as hinges within the span

Description : Froude number is significant in (A) Supersonics, as with projectile and jet propulsion (B) Full immersion or completely enclosed flow, as with pipes, aircraft wings, nozzles etc. (C) Simultaneous motion ... gravity forces, and wave making effect, as with ship's hulls (D) All of the above

Last Answer : Answer: Option C

Description : Reynolds number is significant in (A) Supersonics, as with projectile and jet propulsion (B) Full immersion or completely enclosed flow, as with pipes, aircraft wings, nozzles etc. (C) Simultaneous motion ... gravity forces, and wave making effect, as with ship's hulls (D) All of the above

Last Answer : Answer: Option B

Description : Mach number is significant in (A) Supersonics, as with projectiles and jet propulsion (B) Full immersion or completely enclosed flow, as with pipes, aircraft wings, nozzles etc. (C) Simultaneous motion through ... gravity force, and wave making effects, as with ship's hulls (D) All of the above

Last Answer : Answer: Option A

Description : In geological studies, the Mohorovicic Discontinuity, commonly called the Moho, is the boundary between the w) the mantle and the crust x) asthenosphere and the mantle y) mantle and the outer core z) outer core and the inner core

Last Answer : ANSWER: W -- THE MANTLE AND THE CRUST

Description : The process whereby the genetic factors limit an individual’s responsiveness to the environment is known as Options: A) Discontinuity B) Differentiation C) Range of reaction D) Canalization

Last Answer : C) Range of reaction 

Description : 1. There is no net transfer of energy by the particles of the medium in which waves? 2. Jaspal Rana is a distinguished athlete in which game? 3. Which provides the largest part of the ... having the same rainfall called? 20. Which Gupta king is famous for his courageous stand against the Hunas?

Last Answer : Answer : 1. Stationary waves 2. Shooting 3. Corporate businesses 4. 400 km 5. Kanishka 6. Turtle 7. President 8. Smelting 9. Pamir Plateau 10. Ilango 11. Chess 12. One 13. European 14. ... Tamil 16. In Parliament before being accepted 17. Battery 18. Internal borrowings 19. Isohyet 20. Skanda Gupta