1. In all base driver amplifiers





Write Comment

Type in
(Press Ctrl+g to toggle between English and the chosen language)

Comments

Tags
Show Similar Question And Answers
QA->If the driver——–the brake, the car would have hit the old man.....
QA->Which Indian city’s metro railway got driver-less train from South Korea?....
QA->Spanish Ferrari driver and two-time world champion who won the Italian Grand Prix (Formula One title)?....
QA->The McLaren driver who won the United States Grand Prix 2012?....
QA->Red Bull driver who won the Japanese Grand Prix 2012?....
MCQ-> on the basis of the information given in the following case.Dev Anand, CEO of a construction company, recently escaped a potentially fatal accident. Dev had failed to notice a red light while driving his car and attending to his phone calls. His well-wishers advised him to get a suitable replacement for the previous driver Ram Singh, who had resigned three months back. Ram Singh was not just a driver, but also a trusted lieutenant for Dev Anand for the last five years. Ram used to interact with other drivers and gathered critical information that helped Dev in successfully bidding for different contracts. His inputs also helped Dev to identify some dishonest employees, and to retain crucial employees who were considering attractive offers from his competitors. Some of the senior employees did not like the informal influence of Ram and made it difficult for him to continue in the firm. Dev provided him an alternative job with one of his relatives. During the last three months Dev has considered different candidates for the post. The backgrounds of the candidates are given in the table below. Dev is primarily looking for a stable and trustworthy driver, who can be a suitable replacement for Ram. His family members do not want Dev to appoint a young driver, as most of them are inexperienced. Dev’s driver is an employee of the firm and hence the appointment has to be routed through the HR manager of the firm. The HR manager prefers to maintain parity among all employees of the firm. He also needs to ensure that the selection of a new driver does not lead to discontent among the senior employees of the firm. From his perspective, and taking into account the family’s concerns, Mr. Dev would like to have
 ....
MCQ-> DIRECTIONS for questions:These questions are based on the situation given below:Recently, Ghosh Babu spent his winter vacation on Kyakya Island. During the vacation, he visited the local casino where he came across a new card game. Two players, using a normal deck of 52 playing cards, play this game. One player is called the Dealer and the other is called the Player. First, the Player picks a card at random from the deck. This is called the base card. The amount in rupees equal to the face value of the base card is called the base amount. The face values of Ace, King, Queen and Jack are ten. For other cards, the face value is the number on the card. Once, the Player picks a card from the deck, the Dealer pays him the base amount. Then the dealer picks a card from the deck and this card is called the top card. If the top card is of the same suit as the base card, the Player pays twice the base amount to the Dealer. If the top card is of the same colour as the base card (but not the same suit) then the Player pays the base amount to the Dealer. If the top card happens to be of a different colour than the base card, the Dealer pays the base amount to the Player. Ghosh Babu played the game 4 times. First time he picked eight of clubs and the Dealer picked queen of clubs. Second time, he picked ten of hearts and the dealer picked two of spades. Next time, Ghosh Babu picked six of diamonds and the dealer picked ace of hearts. Lastly, he picked eight of spades and the dealer picked jack of spades. Answer the following questions based on these four games.If Ghosh Babu stopped playing the game when his gain would be maximized, the gain in Rs. would have been
 ....
MCQ->In this section,each passage consists of 6 sentences.The first and sixth sentences are given in the beginning as S1 and S6.The middle four sentences in each are removed and jumbled up.These are labelled P,Q,R,S.You are required to find out the proper order of the sentences and mark accordingly on the answer sheet S1:At the roadside a driver will be asked to blow through a small glass tube into a plastic bag S6:The driver will be asked to go to the police station P:And if the color change did not reach the line the driver cannot be punished under the new law. Q:Inside the tube are chemically treated crystals which change color if the driver has alcohol on his brreath R:But if the color change did reach the line,then the test has proved positive S:If the color change goes beyond a certainline marked on the tube then this indicates the driver is probably over the specified limit The proper sequence should be....
MCQ->What will be the output of the following program? #include<iostream.h> class Base { int x, y; public: Base() { x = y = 0; } Base(int xx) { x = xx; } Base(int p, int q = 10) { x = p + q; y = q; } void Display(void) { cout<< x << " " << y << endl; } }objDefault(1, 1); class Derived: public Base { Base obj; public: Derived(int xx, int yy): Base(xx, xx + 1) { } Derived(Base objB = objDefault) { } }; int main() { Derived objD(5, 3); Derived ptrD = new Derived(objD); ptrD->Display(); delete ptrD; return 0; }....
MCQ->What will be the output of the following program? #include<iostream.h> class Base { public: int S, A, M; Base(int x, int y) { S = y - y; A = x + x; M = x x; } Base(int, int y = 'A', int z = 'B') { S = y; A = y + 1 - 1; M = z - 1; } void Display(void) { cout<< S << " " << A << " " << M << endl; } }; class Derived : public Base { int x, y, z; public: Derived(int xx = 65, int yy = 66, int zz = 67): Base(x) { x = xx; y = yy; z = zz; } void Display(int n) { if(n) Base::Display(); else cout<< x << " " << y << " " << z << endl; } }; int main() { Derived objDev; objDev.Display(-1); return 0; }....
Terms And Service:We do not guarantee the accuracy of available data ..We Provide Information On Public Data.. Please consult an expert before using this data for commercial or personal use
DMCA.com Protection Status Powered By:Omega Web Solutions
© 2002-2017 Omega Education PVT LTD...Privacy | Terms And Conditions