An actor in an animation is a small program invoked ............... per frame to determine the characteristics of some object in the animation. (A) once (B) twice (C) 30 times (D) 60 times

1 Answer

Answer :

(A) once

Related questions

Description : Which of the following characteristics of constructor are true. i) They should be declared in the public section. ii) They are invoked automatically when the objects are created. iii) They do not have return type and void also. ... and v C) Only i, iii, iv and v D) All i, ii, iii, iv and v

Last Answer : D) All i, ii, iii, iv and v

Description : Suppose that the number of instructions executed between page faults is directly proportional to the number of page frames allocated to a program. If the available memory is doubled, the mean interval between page faults is also ... memory were available? (A) 60 sec (B) 30 sec (C) 45 sec (D) 10 sec

Last Answer : Answer: C Explanation: T = Ninstr x 1µs + 15,000 x 2,000 µs = 60s Ninstr x 1µs = 60,000,000 µs - 30,000,000 µs = 30,000,000 µs Ninstr = 30,000,000 The number of instruction ... doesn't mean that the program runs twice as fast as on the first system. Here, the performance increase is of 25%.

Description : Which of the following statement is not correct with reference to cron daemon in UNIX O.S? (A) The cron daemon is the standard tool for running commands on a predetermined schedule. (B) It starts ... command lines and the times at which they invoked. (D) Crontab for individual users are not stored.

Last Answer : (D) Crontab for individual users are not stored.

Description : A network with bandwidth of 10 Mbps can pass only an average of 15,000 frames per minute with each frame carrying an average of 8,000 bits. What is the throughput of this network ? (A) 2 Mbps (B) 60 Mbps (C) 120 Mbps (D) 10 Mbps

Last Answer : (A) 2 Mbps Explanation: In data transmission, throughput is the amount of data moved successfully from one place to another in a given period of time, and typically measured in bits per second (bps), ... second (Mbps) or gigabits per second (Gbps). Here, Throughput = 15000 x 8000/60 = 2 Mbps 

Description : ............ is a special type of stored procedure that is automatically invoked whenever the data in the table is modified. A) Procedure B) Trigger C) Curser D) None of the above

Last Answer : B) Trigger

Description : System calls are usually invoked by using: (A) A privileged instruction (B) An indirect jump (C) A software interrupt (D) Polling

Last Answer : (C) A software interrupt

Description : One of the disadvantages of user level threads compared to Kernel level threads is (1) If a user level thread of a process executes a system call, all threads in that process are ... privileges. (4) The library procedures invoked for thread management in user level threads are local procedures.

Last Answer : If a user level thread of a process executes a system call, all threads in that process are blocked.

Description : A computer program selects an integer in the set {k : 1 ≤ k ≤ 10,00,000} at random and prints out the result. This process is repeated 1 million times. What is the probability that the value k = 1 appears in the printout atleast once ? (A) 0.5 (B) 0.704 (C) 0.632121 (D) 0.68

Last Answer : (C) 0.632121

Description : Consider a uniprocessor system where new processes arrive at an average of five processes per minute and each process needs an average of 6 seconds of service time. What will be the CPU utilization ? (A) 80 % (B) 50 % (C) 60 % (D) 30 %

Last Answer : (B) 50 %

Description : Given below are three basic rules: I. Squash and Stretch II. Slow-in and Slow-out III. To stage the action properly These rules are applied in case of (A) Rendering (B) Morphing (C) Animation (D) All the above

Last Answer : (C) Animation

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

Last Answer : (B) 2 Mbps

Description : Suppose a digitized voice channel is made by digitizing 8 kHz bandwidth analog voice signal. It is required to sample the signal at twice the highest frequency (two samples per hertz). What is the bit rate required, if it ... sample requires 8 bits? (A) 32 kbps (B) 64 kbps (C) 128 kbps (D) 256 kbps

Last Answer : (C) 128 kbps

Description : In precision theodolite traverse if included angles are read twice and the mean reading accepted using both verniers having a least count of 30". Assuming the instrument to be in perfect adjustment, linear measurements correct to 6 mm per ... legs) (A) 50" n (B) 30" n (C) 60" n (D) None of these

Last Answer : (A) 50" n

Description : Which of the following is/ are the characteristics of friend function. A) It is not in the scope of the class to which it has been declared as friend. B) It can invoke like a normal function without the help of any object. C) Usually, it has the objects as arguments. D) All of the above.

Last Answer : D) All of the above.

Description : Which of the following provides the best description of an entity type? (A) A specific concrete object with a defined set of processes (e.g. Jatin with diabetes) (B) A value given to a ... template for a group of things with the same set of characteristics that may exist in the real world

Last Answer : Answer: D

Description : The standard and labelling scheme is invoked for 20 equipment from which __________ number of equipment are mandatory. A. 30. B. 20. C. 10. D. 15.

Last Answer : 20

Description : Which one of the following is not a software myth? (A) Once we write the program and get it to work, our job is done. (B) Project requirements continually change, but ... not understand how to control software projects internally, it will invariably struggle when it outsources software projects.

Last Answer : (D) If an organization does not understand how to control software projects internally, it will invariably struggle when it outsources software projects.

Description : Which of the following is true about the static member variable in C++. i) It is initialized to zero when the first object of its class is created. Other initialization is also permitted. ii) It is visible only within ... , ii-True B) ii-False, ii-True C) i-True, ii-False D) i-False, iii-False

Last Answer : B) ii-False, ii-True

Description : A server crashes on the average once in 30 days, that is, the Mean Time Between Failures (MTBF) is 30 days. When this happens, it takes 12 hours to reboot it, that is, the Mean Time to Repair (MTTR) is 12 ... these reliability data values is approximately: (A) 96.3% (B) 97.3% (C) 98.3% (D) 99.3%

Last Answer : (C) 98.3%

Description : Consider the following JAVA program: public class First { public static int CBSE (int x) { if (x < 100) x = CBSE (x +10); return (x - 1); } public static void main (String[] args){ System.out.print(First.CBSE(60)); } } What does this program print? (1) 59 (2) 95 (3) 69 (4) 99

Last Answer : (2) 95 

Description : For a stable frame structure, number of members required, is  (A) Three times the number of joints minus three  (B) Twice the number of joints minus three  (C) Twice the number of joints minus two  (D) Twice the number of joints minus one 

Last Answer : (B) Twice the number of joints minus three 

Description : Consider a fuzzy set old as defined below Old = {(20, 0.1), (30, 0.2), (40, 0.4), (50, 0.6), (60, 0.8), (70, 1), (80, 1)} Then the alpha-cut for alpha = 0.4 for the set old will be (A) {(40, 0.4)} (B) {50, 60, ... , (30, 0.2)} (D) {(20, 0), (30, 0), (40, 1), (50, 1), (60, 1), (70, 1), (80, 1)}

Last Answer : (D) {(20, 0), (30, 0), (40, 1), (50, 1), (60, 1), (70, 1), (80, 1)}

Description : The pure object oriented programming language with extensive metadata available and modifiable at run time is (A) Small talk (B) C++ (C) Java (D) Eiffel

Last Answer : (A) Small talk

Description : A software project was estimated at 352 Function Points (FP). A four person team will be assigned to this project consisting of an architect, two programmers, and a tester. The salary of the architect is Rs.80,000 per month, the ... ) Rs.28,16,000 (2) Rs.20,90,000 (3) Rs.26,95,000 (4) Rs.27,50,000

Last Answer : (4) Rs.27,50,000 

Description : The objective of governmental effectiveness or program auditing is to determine if the desired results of a program are being achieved. What is thefirst step in conducting such an audit? a. Identify the ... c. Determine the time frame to be audited. d. Evaluate the system used to measure results.

Last Answer : Evaluate the system used to measure results.

Description : Software testing is (A) the process of establishing that errors are not present. (B) the process of establishing confidence that a program does what it is supposed to do. (C) the process of ... as per specifications. (D) the process of executing a program with the intent of finding errors. 

Last Answer : (D) the process of executing a program with the intent of finding errors.

Description : The ............layer of OSI model can use the trailer of the frame for error detection. A) Physical B) Data link C) Transport D) Presentation

Last Answer : A) Physical

Description : The data unit in the TCP/IP layer called a ..... A) Message B) Segment C) Datagram D) Frame

Last Answer : D) Frame

Description : Which of the following is widely used inside the telephone system for longhaul data traffic ? (A) ISDN (B) ATM (C) Frame Relay (D) ISTN

Last Answer : (B) ATM

Description : When data and acknowledgement are sent in the same frame, this is called as (A) Piggy packing (B) Piggy backing (C) Back packing (D) Good packing

Last Answer : (B) Piggy backing

Description : In a demand paging memory system, page table is held in registers. The time taken to service a page fault is 8 m.sec. if an empty frame is available or if the replaced page is not modified, and it takes 20 m.secs., if the replaced ... ? (A) 11.6 m.sec. (B) 16.4 m.sec. (C) 28 m.sec. (D) 14 m.sec.

Last Answer : (B) 16.4 m.sec. 

Description : Which one of the following is correct? (A) Java applets cannot be written in any programming language (B) An applet is not a small program. (C) An applet can be run on its own. (D) Applets are embedded in another applications. 

Last Answer : (D) Applets are embedded in another applications.

Description : There was once a girl who was always jealous of her sister. One day a genie appeared and told her that he was 'half magic' which meant that he could grant her wishes, but her sister would always ... woman in the world, but her sister gets twice as much beauty.What was her third wish? -Riddles

Last Answer : She askes the genie to grab a nearby stick and beat her half to death.

Description : The Constitution of India lays down that the two Houses of Parliament must be summoned at least – (1) four times a year (2) thrice a year (3) twice a year (4) once a year

Last Answer : (3) twice a year Explanation: The period during which the House meets to conduct its business is called a session. The Constitution empowers the President to summon each House at such intervals that there ... month's gap between the two sessions. Hence the Parliament must meet at least twice a year.

Description : How many times was the term of the Lok Sabha extended upto 6 years? (1) Once (2) Twice (3) Thrice (4) Never

Last Answer : (1) Once Explanation: The first sitting of the Fifth Lok Sabha was held on 19 March, 1971. The term of the Fifth Lok Sabha, which was to expire on 18 March, 1976, was extended by one ... term of the Lok Sabha was restored to rivet years under the Constitution (Forty fourth Amendment) Act, 1978.

Description : In India, how many times has the President declared Financial Emergency? (1) Once (2) Never (3) Thrice (4) Twice

Last Answer : (2) Never Explanation: No Financial Emergency has been declared so far, though there was a financial crisis in 1991. Article 360 empowers the president to proclaim a Financial Emergency if he is ... to which the financial stability or credit of India or any part of its territory is threatened.

Description : ECE Board Exam March 1996 According to the Nyquist theorem, the sampling rate that can be used in a PCM system is ________ the highest audio frequency. A. once B. eight times C. twice D. thrice

Last Answer : C. twice

Description : In a shell and tube heat exchanger, putting a longitudinal baffle across the shell, forces the shell side fluid to pass __________ through the heat exchanger. (A) Once (B) Twice (C) Thrice (D) Four times

Last Answer : (B) Twice

Description : Banana plant bears in it’s life time: a. Once in life b. Twice in life c. Multiple times d. All of above

Last Answer : Once in life

Description : In IGMP, a membershipreport is sent_______. A) once B) twice C) three times D) noneof the above

Last Answer : twice

Description : If you getboth local and remote echoes,every character youtype will appearon the screen A. once B. twice C. three times D. never E. None of the above

Last Answer : never

Description : How many times chlorination must be carried out for cooling towers 1. Twice a year 2. Once a year 3. Thrice a year 4. None of above

Last Answer : Twice a year

Description : . How many times year cooling water must be cleaned 1. Once a year 2. Thrice a year 3. Twice a year 4. Four times a year

Last Answer : Twice a year

Description : If a clock strikes once at 1’o clock, twice at 2’o clock and twelve times at 12’o clock and again once at 1’o clock and so on, how many times will the clock strike in the course of 2 days? a) 156 b) 312 c) 78 d) 288

Last Answer : b) 312

Description : The regimens recommended for treatment of chloroquine resistant P.falciparum malaria in an adult include the following except: A. Quinine 10 mg/kg/8 hourly+ doxycycline 100 mg/day for 7 days B. Quinine 10 mg/kg ... 7 days D. Artemether 80 mg i.m./twice on first day followed by once daily for 4 days

Last Answer : C. Mefloquine 0.5 g daily for 7 days

Description : Each term occurs ______ in the syllogism. A) once B) twice C) thrice D) four times. 

Last Answer : B) twice

Description : How many times the word 'print' shall be printed by the following program segment? for(i=1, i≤2, i++) for(j=1, j≤2, j++) for(k=1, k≤2, k++) printf("print/n") (A) 1 (B) 3 (C) 6 (D) 8

Last Answer : (D) 8

Description : Given the symbols A, B, C, D, E, F, G and H with the probabilities 1/30, 1/30, 1/30, 2/30, 3/30, 5/30, 5/30 and 12/30 respectively. The average Huffman code size in bits per symbol is: (A) 67/30 (B) 70/34 (C) 76/30 (D) 78/30

Last Answer : (C) 76/30

Description : A network with bandwidth of 10 Mbps can pass only an average of 15,000 frames per minute with each frame carrying an average of 8,000 bits. What is the throughput of this network? a. 2 Mbps b. 60 Mbps c. 120 Mbps

Last Answer : a. 2 Mbps