Topic :: Exercise





Exercise Interview Questions
Questions Answers Views Company eMail

When can the Speaker exercise his right to vote in the House? (a) Whenever the House desires (b) Whenever he desires (c) Only in the event of equality of vote (d) Whenever his part directs

RRB,

3 13695

The greatest dynasty that exercised away over the Vijayanagara empire was (a) Aravidu (b) Tuluva (c) Sangama (d) Saluva

1 2845

A testing process that exercises a software system's coexistence with others by taking multiple integrated systems that have passed system testing as input and tests their required interactions.

Accenture,

2 5284

. The only instance when the President of India exercised his power of veto related to (a) The Hindu Code Bill (b) The PEPSU Appropriation Bill (c) The Indian Post Office (Amendment) Bill (d) The Dowry Prohibition Bill

KPSC Karnataka Public Service Corporation,

9 47565

What is Exercise Invoice?

P&G Procter Gamble,

2 43622

Can i get a simple example exercise for update run mode for sample flight application......... In qtp when i try to run the test in update mode.. Auotmation> update option is disabled............ Pls let me know ................. Thanks in advance.....

3 10365

Random order tests are conducted to exercise different class instance life histories. is it true

1 3009

The purpose of this exercise is to benchmark file writing and reading speed. This exercise is divided into two parts. a). Write a file character by character such that the total file size becomes approximately >10K. After writing close the file handler, open a new stream and read the file character by character. Record both times. Execute this exercise at least 4 times b). Create a buffer capable of storing 100 characters. Now after generating the characters, first store them in the buffer. Once the buffer is filled up, store all the elements in the file. Repeat the process until the total file size becomes approximately >10K.While reading read a while line, store it in buffer and once buffer gets filled up, display the whole buffer. Repeat the exercise at least 4 times with different size of buffer (50, 100, 150 …). Records the times. c). Do an analysis of the differences in times and submit it in class.

1626

what are the examples of isometric exercises?

5 7926

We can add the no. of increase in shares due to exercise of the options.Why diluted eps is calculated separatey?

Capital IQ,

1796

we can add the no. of increase in shares due to exercise of options,convertible debentures,warrants etc.Why diluted eps is calculated separately?

Capital IQ,

1559

what is the best method of recuitment exercise of military oganisation.

1 3432

where do i get exercises for electronic circuits lab, i.e, designing various waveform(clipper, clamper, rectifiers)

1825

what is exercise duty how to calculate that and how to update in tally

1757

how to build a exercise findig min number of e heap with list imlemented?

1605




Un-Answered Questions { Exercise }

Read the case carefully and answer the questions given at the end: CALLS PUT A B C Months of expiration 3 9 3 Continuous yearly risk-free Rate (Rf) 10% 10% 10% Discrete yearly Rf 10.52% 10.52% 10.52% Standard deviation of Stock returns 40% 40% 40% Exercise price Rs.55 Rs.55 Rs.55 Option price Rs.2.56 - Rs.6.20 Stock price Rs.50 Rs.50 Rs.50 Cash Dividend Re.0 Re.0 Re.0 1) Why should call B sell for more than call A? 2) Is the put call parity model working for options A&C? 3) Calculate the Black Scholes values of call A & Call B?

1882


Is any one has SAP GTS( Global Trade Services)Reading and Exercise material. If so, please e-mail me.

3293


The purpose of this exercise is to benchmark file writing and reading speed. This exercise is divided into two parts. a). Write a file character by character such that the total file size becomes approximately >10K. After writing close the file handler, open a new stream and read the file character by character. Record both times. Execute this exercise at least 4 times b). Create a buffer capable of storing 100 characters. Now after generating the characters, first store them in the buffer. Once the buffer is filled up, store all the elements in the file. Repeat the process until the total file size becomes approximately >10K.While reading read a while line, store it in buffer and once buffer gets filled up, display the whole buffer. Repeat the exercise at least 4 times with different size of buffer (50, 100, 150 …). Records the times. c). Do an analysis of the differences in times and submit it in class.

1626


We can add the no. of increase in shares due to exercise of the options.Why diluted eps is calculated separatey?

1796


we can add the no. of increase in shares due to exercise of options,convertible debentures,warrants etc.Why diluted eps is calculated separately?

1559






Topics: Structures, Arrays, Searching and Sorting Assume there is a small mobile computer device including a hard disk and a slot for a memory card. The device shall be used to backup photos e.g. during holiday. Every time a memory card is connected all photos of the card are copied into a new folder automatically. And your task is to develop some basic controlling software to show, add, remove, search and sort the directories of photos. Step by Step Implementation 1.Define two symbolic constants, one to hold the total volume of the disk (e.g. VOLUME) and another one to hold the number of entries the files system of the device can handle (MAXFOLD). 2.Define a new structure data type named DATE to store a date consisting of year, month and day as unsigned values. 3.Define an other structure data type FOLDER to store the information of one folder of photos: ◦A title as character array of appropriate length ◦The location (event) the photos are taken as character array of appropriate length ◦The date of the day the photos are copied to the disk using the just defined data type DATE ◦The number of photos as natural number ◦And the size of the folder in MB as floating point value 4.Define the following global variables and initialise them: ◦disk as an array with MAXFOLD elements of data type FOLDER ◦folders as natural value to count the number of folders currently stored at the disk (valid elements in the array) TEST: Now you should be able to compile the code the first time without any warning or error. In the menu only "p" to print and "q" to quit will work!. 5.Now complete the functions given by their prototype: float freeSpace ();The function has to calculate the sum of the size component of all elements currently stored in the disk array. The function shall return the free space of the disk by the difference between the available total volume and the calculated sum. TEST: To test this function you only need to uncomment printing the "statusline" at the function actionmenu(). Compare the calculated value with a manual calculation of the example values given above. unsigned isBefore (DATE, DATE);The function checks if one date is before the other. There are 3 different possibilities which have to be handled. Imagine for example these 3 different combinations of values: ◦2010-01-01 : 2010-01-02 ◦2010-01-01 : 2010-02-01 ◦2010-01-01 : 2009-01-01 The function shall just return the result of the comparison. unsigned isEqual (DATE, DATE);The function checks if one date is equal to the other, all components have to be compared. The function shall just return the result of the comparison. int findByDate (DATE);As the array is should be kept in order (sorted by date) implement a binary search for a folder by its date here. You need only to adapt the binary search we used in the exercise. Use the 2 comparing functions above where appropriate. The function shall return the index of the element which was found or -1. TEST: Now you can try searching a folder by date via the "s" in the menu. Activate the corresponding part in the main function. int isSpaceLeft (FOLDER);This function compares the free space of the disk with the size of folder given with the parameter list. The function shall return 1 if there is enough space to add the folder, otherwise 0 (just the result of the comparison). void SortByDate ();This function shall implement the InsertionSort using the component date as key. Use the provided algorithm/souce code of the exercise as template. If you need a comparison between dates, use the function isBefore you have written again. void addFolder (FOLDER);The function has to check if the disk has additional capacities to add the new folder (number of folders and space left). If at least one of these conditions is false print an error message and return -1. Else there has to be added an other test to avoid 2 folder elements with the same date (use the findByDate function here. If there is no folder with the new date simply attach the new folder at the end of the array and call the sorting algorithm afterwards to keep the order in the array. TEST: Now you can try to add a folder via the "a" in the menu. Activate the corresponding part in the main function. void delDir (int);This function removes one element of the disk array. The input parameter contains the index of the element to delete. Deletion can simply be done by moving all elements at the right one to the left (overwriting the element to delete. The function may get a -1. This has to be checked first (certainly there is nothing to delete then!) Don't forget to decrement the counter of elements at the end. TEST: Now you can try to remove a folder by date via the "r" in the menu. Activate the corresponding part in the main function. unsigned findAllOfLocation(char[], FOLDER[]);This is an optional additional task: The function shall find all elements with the given value for the component location (first input parameter). The array elements which are found have to be added to the FOLDER array (second input parameter). As this parameter is an array we can use the result later in the main function. There kernel of function implements a modified linear search on the disk array (it does not stop if one element is found bat continues search until the location of all elements is checked). The finally function shall return the number of elements found in the disk array. TEST: Now you can try to add a folder by date via the "l" in the menu. Activate the corresponding part in the main function.

1952


where do i get exercises for electronic circuits lab, i.e, designing various waveform(clipper, clamper, rectifiers)

1825


ssc steno re-exam question paper english 101. serveral guests noticed Mr. sharma / collapsing in his chair/ and gasping for breath/ no error 102. This is our second reminder/ and we are much surprised/ at receiving no answer from you/ no error 103. you should/ be always greatful/ to your mentor. / no error 104. the furnitures/ had become old and rusty./ no error 105. most people/ are afraid of/ swine flu these days. / no error 106 I may not be able / to attend/ to the function. / no error 107 he is / residing here / since 1983/ no error 108 at his return/ we asked him/ many questions/ no error 109 the chief guest entered into/ the room./ no error 110. she is/ very angry /on him /no error fill in the blanks 111. we shall go for a picnic if the weather......... good a is b was c has been d had been 112. mr and mrs joshi go for a ..... walk just before dinner. a vibrant b brisk c vivacious d slow 113 ............ weight gain or weight loss is not good for your body a explosive b expressive c extensive d excessive 114 john must have the ...... to stick to his diet, if he wants to lose weight. a obstinacy b determination c decision d obligation 115 there was an .......... response for the marathon. a overwhelming b overriding c excessive d extreme 116 some animals have unique......... that allow them to survive in extreme weather conditions. a characteristics b problems c feelings d conditions 117 did the boys turn.... for football practice? a up b on c back d in 118 the fireman managed to put.... the fire. a away b down c out d off 119 the pupil was asked to write ...... his name on the front page of the exercise book a back b in c down d about 120 the teacher found many mistakes in my composition, when she went.... it a into b about c for d though 121 to 125 choose the correct alternative in case no improvement is needed your answer is d 121 the advancements in medical science has proved to be a boon for all of us. a has proven b had proven c have proved d no improvement 122. educational facilities in under developed nations are often limiting. limited limitless delimiting no improvement 123 docors are known for their illegible handwriting ineligible eligible incorrigible no improvement 124 he cited a number of reasons for his absence a sited b recited c sighted d no improvement 125 he received many praised for his latest invention great may praises much praise too much praises no improvement idiom/ phrase 126 yesterday in a collision between a truck and a car he had a close shave. a maintain cleanliness b remove the entire hair c a narrow escape d close relations 127 the piece of parental property has created bad blood between the two brothers a impure relation b ill matched temper c active enmity d bad parentage 128 since you couldb't accept a timely warning, it's no use repenting now. why cry over spilt milk cry over irreparable loss to regret uselessly cry needlessly feel guilty of 129 after fifteen years of marriage she did not expect her husband to leave her in the lurch listen to her provoke her ignore her desert her 130 who are we to sit in judgement over their choices a lecture b criticize c speak d communicate 131 the teacher took me to task for not completing my homework a gave me additional homework punished me took me to the principlal redcuced my homework 132 do not lose your head when faced with a difficult situation a forget anything b neglect anything c panic d get jealous 133 when i entered the hosue everything was at sixes and sevens a quarrel among six or seven people to have six or seven visitors at a time in disorder or confusion an unpleasant argument 134 he was pulled up by the director of the company assaulted \ dragged reprimanded cleared 135 the storm broguht about great destruction in the valley invited caused succeeded halted opposite meaning 136 stationary- standing speedy moving fast 137 fictitious- real ambitious unbelievable imaginary 138 acquitted- jailed exonerated convicted accused 139 exhaustive- interesting short incomplete complete 140 sacrifice - assimilate abandon acquire absorb 141 thoroughly- superficially carefully freely callously 142 gradual - unscrupulous dynamic rapid enthuiastic 143 retain- remember release unfurl engage 144 enmity- rivalry amicability animosity proximity 145 diligent- incompletent lazy entravagant frugal choose the one which best expresses the meaning of the given word 146 imaginary- fabulous ficititious factitious fallacious 147 tranquil- tremendous dynamic treacherous peaceful 148 sordid sore unpleasant splendid dissatisfied 149 nefarious- docile natural neurotic wicked 150 mellow- melodious dramatic genial fruity 151 boisterous- boyish huge sound noisy 152 shines glows dazzles blazes glitters 153 circuitous- short roundabout circular different 154 insensitive- repulsive revolting cunning callous 155- dearth- scarcity familiarity closeness relation 156 to 160 PQRS 156. 1. once there was a king p. on the next day a group of merchants passed on that way q. the people in his kingdom were very lazy r the king wanted to teach them a lesson s one night he had arranged a big stone in the middle of the road 6. they didn't move the stone, but passed round it sqrp roqs qrsp qsrp 171 to 175 active passive 171. india is evolving a new plan to control here population a a new plan is evolved by india to control here population b a new plan has been evolved by india to control her population c a new plan was being evolved to control her population by india d a new plan is being evolved by india to control her population 172. we found the lock broken last night a. the lock was found by us breaking last night the lock was found by us broken last night c the lock was broken by us last night d the broken lock we found last night 173. they should shoot the traitor dead. a the traitor should be shot at by them b the traitor should be shot them c the traitor should be shot dead by them. d the traitor is shot by them 174. who inaugurated the fair? the fair was inaugurated by whom the fair is inaugurated by who by whom was the fair inaugurated by who was the fair inaugurated 175 close the doors a let the doors are closed the doors are to be closed c let the doors be closed d allwow the doors to close in the following passage some of the words have been left out. first read the passage over and try to understand what it is about. then fill in the blanks with the help of the alternatives given India and 25 other countries agreed to the copenhagen accord even as other developing countries accepted it as an irreversible decision later. the accord come out of ......181 bargaining lasting almost 20 hours among......182 of governments of some of the most.....183 countries of the world. at the ....184 of the day on saturday, india.....185 to have given ground on some ......186 but blocked intrusion on other red lines. It had become.....187 within the first week of the .....188 that the best even the four emerging and.....189 economies of the developing world were going to do was to defend the......190 economic resource sharing regimes. 181 difficult hard easy early 182 rulers kings heads chiefs 183 influential corrupted useless beautiful 184 middle evening night end 185 proved appeared viewed cleared 186 materials thougts issues discussions 187 evident ambiguous vague indecisive 188 accord talks issues thoughts 189 economic political powerful praiseworthy 190 expected existing resultant consequential passage the stone age was a period of history which began in approximately 2 million bc and lasted until 3000 bc its name was derived from the stone tools and weapons that modern scientist discovered. this period was divided into the paleolithic, mesolithic, and neolithic ages. during the first period 2 million to 8000 bc the fist hatched and the use of fire for heating and cooking were developed. as a result of the ice age, which evolved about 1 million years in the paleolithic age, people were forced to seek shelther in caves, wear clothing and develop new tools. During the mesolithic age 8000 to 6000 bc people made crude pottery and the first fish hooks, took dogs for hunting, and developed a bow and arrowk, which was used until the fourteenth century ad. The nbeolithic age 6000 to 3000 bc saw human kind domesticating sheep, goats, pigs and cattle, becoming less nomadic than in the previous ages, establishing permanent settements and creating goverments. 191 the stone age was divided into ------------ periods five four three six 192 what developed first in the paleolithic period the bow and arrow pottery the fist hatched the fish hook 193 which period lasted longest paleolithic ice age mesolithic neolithic 194 for how many years did mesolithic age exist 2000 3000 4000 5000 195 when did people create governments 8000 - 6000 bc 2 million to 8000 bc 6000 to 3000 bc 2 million to 1 million bc

3999


why hyper acute t waves appears in anterior leads of ECG during exercise

2686


what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }

3310


what is exercise duty how to calculate that and how to update in tally

1757


Q1: Consider part of a control loop, which excludes the transmitter, consisting of a process, a controller and a control valve which may be represented by two dead times of 0.5 min each and three exponential lags of 0.8 min., 1.0 min. and 1.5 min. respectively. We wish to express this system as an overall first order plus dead time (FOPLD) model ie gain, time constant and process dead time. (We will see later that this is often done, to simplify controller tuning). For this exercise, gain is considered to be 1.0. (A) If the transmitter is a flow transmitter whose behaviour can be described by a dead time of 0.2 min. and an exponential lag of 0.5 min. in terms of the overall dead time and overall first order lag how can the system behaviour be approximated ? Overall dead time = Overall time constant = (B) If the transmitter is a temperature transmitter with a temperature sensor in a protecting well whose behaviour can be described by a dead time of 0.7 min. and an exponential lag of 15 min. how can the overall system behaviour be approximated now? Overall dead time = Overall time constant =

1446


how to build a exercise findig min number of e heap with list imlemented?

1605


Do You Expect Capital Demand In The System To Increase On Average Due To The Stress Test Exercise?

630


What Is This Exercise Really Testing?

643