Placement Papers: Accenture Paper at MJCET

Glide to success with Doorsteptutor material for CTET/Paper-2 : get questions, notes, tests, video lectures and more- for all subjects of CTET/Paper-2.

Accenture IDC:

Section 1-Verbal Ability

No. Of Quesrions: 20 Durarion in Minutes: 20

Assessments by MeritTrac

Section 1-Verbal Ability

No. Of Questions: 20

Duration in Minutes: 20

Directions for Questions 1 − 3:

Choose the option which will correctly fill the blank.

  1. I am writing to enquire ________the possibility of hiring a conference room at the hotel on the 2nd of September.
    1. Of
    2. About
    3. Into
    4. After
  2. ________ having her lunch, she stood-the tree and waited ________ him.
    1. With, below, for
    2. After, under, for
    3. Inside, further, to
    4. About, across, into
  3. The microscopic animals are the primary food for larval cod and their decline has meant that fewer fish are making it to adulthood to be caught________ trawlermen.
    1. In
    2. Into
    3. By
    4. With
  4. Same Meaning The jacket is impervious to water.
    1. Dirty
    2. Pure
    3. Impenetrable
    4. Favorable
  5. Chandan was chagrined with the continuous disruption of the power supply to his home.
    1. Delighted
    2. Creation
    3. Peeved
    4. Security
  6. The latest ordinance issued by the government has provided the bank with two options.
    1. Decision
    2. Law
    3. Opinion
    4. Verdict
  7. Directions for Questions 7 − 10:
  8. Choose the answer option which will correctly fill the blank.
  9. ________ great writer is convinced that whatever he says is not an echo or imitation of what others have said.
    1. An
    2. A
    3. The
    4. No article required
  10. ________ Reserve Bank of India directed banks to closely watch ________spending through International Debit Cards.
    1. A, the
    2. The, the
    3. The, a
    4. -⧵n, the
  11. The officer received ________ official letter from ________ Ministry of IT in ________ Central Government.
    1. A, the, an
    2. An, the, the
    3. A, an, the
    4. An, an, the
  12. You CANNOT send out ________uneducated man into ________ world of technology and expect him to perform.
    1. An, an
    2. A, an
    3. An, the
    4. The, an

Comprehension

Readthe passage and answer the questions that follow on the basis of the information provided in the passage.

Microprocessor is an electronic computer Central Processing Unit (CPU) made from miniaturized transistors and other circuit elements on a single semiconductor Integrated Circuit (IC) . Before the advent of microprocessors, electronic CPUs were made from individual small-scale Integrated Circuits

Containing the equivalent of only a few transistors. By integrating the processor onto one or a very few large-scale Integrated Circuit packages (containing the equivalent of thousands or millions of discrete transistors) , the cost of processor power was greatly reduced. The evolution of microprocessors has been known to follow Moore ′ s Law when it comes to steadily increasing performance over the years. This law suggests that the complexity of an Integrated Circuit with respect to minimum component cost will double in about 18 months. From humble beginnings as the drivers for calculators, the continued increase in power has led to the dominance of microprocessors over every other form of computer; every system from the largest mainframes to the smallest handheld computers now uses a microprocessor at their core. As with many advances in technology, the microprocessor was an idea wbose time had come. Three projects arguably delivered a complete microprocessor at about the same time: Intel ′ s 4004, Texas Instruments ′ TMS1000, and Garrett AiResearch ′ s Central Air Data Computer.

A computer-on-a-chip is a variation of a microprocessor, which combines the microprocessor core (CPU) , some memory, and I/O (input/output) lines, all on one chip. The proper meaning of microcomputer is a computer using a (number of) microprocessor (s) as its CPU (s) , while the concept of the patent is somewhat more similar to a micro controller.

  1. Which of the following descriptions would NOT fit a microprocessor?
    1. Electronic computer
    2. Central Processing Unit
    3. Memory disk
    4. A single integrated chip circuit.
  2. Select the TRUE statement from the following:
    1. 11icroprocessors and computers on a chip are variations of each other.
    2. Integration of processing power on chips has made processing power cheaper.
    3. Before microprocessors, CPUs were not made from individual small scale ICs.
    4. A microprocessor circuit only has transistors in it.
  3. Which of the following was NOT the first to develop a microprocessor?
    1. Microsoft
    2. Intel
    3. Texas Instruments
    4. Garret
  4. According to the passage, which of these is NOT a use of microprocessors?
    1. Drivers for calculators
    2. Core for large mainframes
    3. Advanced mobile phones
    4. Used for small handheld computers
  5. “A number of microprocessors at its CPU” is an apt description of a:
    1. 11icro-controller
    2. Micro-computer
    3. Micro-processor
    4. Micro-transistor
  6. Directions for Questions 16 − 20:
  7. Read the passage and answer the questions that follow on the basis of the information provided in the passage.
  8. Dynamic Link Libraries
  9. Windows provides several files called dynamic link libraries (DLLs) that contain collections of software code that perform common functions such as opening or saving a file. When Windows application wants to use one of those functions or routines, the app sends a message to Windows with the names of the DLL file and the function. This procedure is known as calling a function. One of the most frequently used DLLs is Windows COMMDLG. DLL, which includes among others, the functions to display File Open, File Save, Search, and Print dialog boxes. The application also sends any information the DLL function will need to complete the operation. For example, a program calling the Open File function in COMMDLG. DLL would pass along a file spec, such as ⚹ . ⚹ or ⚹ . DOC, to be displayed in the dialog box՚s Filename text box. The application also passes along a specification for the type of information it expects the DLL to return to the application when the DLL՚s work is done. The application, for example, may expect return information in the form of integers, true/false values, or text. Windows passes the responsibility for program execution to the DLL, along with the parameters and the return information the DLL will need. The specific DLL is loaded into memory, and then executed by the processor. At this point the DLL, rather than the application, runs things. The DLL performs all the operations necessary to communicate with Windows and, through Windows, with the PC՚s hardware. After the DLL function is complete, the DLL puts the return information into
  10. memory, where it can be found by the application, and instructs Windows to remove the DLL routine from memory. The application inspects the return information, which usually tells whether the DLL function was able to execute correctly. If the operation was a success, the application continues from where it left off before issuing the function call. If the operation failed, the application displays an error message.
  11. By using DLLs, Windows:
    1. Saves processing time
    2. Multitasks
    3. Shares program code
    4. Communicates with PCs hardware
  12. To use any routine of a DLL, Windows:
    1. Searches and copies it in the application code and executes it
    2. Loads the DLL file and searches and executes the routine
    3. Loads just the required routine in memory and executes it
    4. Searches the location of the routine and instructs the application to execute it
  13. Which information does an application need to passto Windows to use a DLL routine?
    1. Just the name of the routine
    2. Just the name of the DLL, which finds in turn the routine to be executed in return
    3. Both the name of the routine as well as DLL and any parameters
    4. Name of the DLL, routine, any parameters and type of information to be returned
  14. According to the passage, while the DLL routine is executing, the calling application:
    1. Waits for the routine to execute
    2. Continues with other tasks
    3. Helps the DLL routine perform by communicating with Windows and through Windows with the PC՚s hardware
    4. Passes all responsibility of program execution to the DLL and is removed from memory
  15. The DLL function after execution returns:
    1. The parameters and information into memory, where it can be inspected by the calling application
    2. Information into memory, where it can be inspected by the calling application
    3. To the calling application the information required by it so that it can inspect it
    4. The information required into memory so that DLL can inspect whether the function operation was a success
  16. Section 2-Analytical Ability
  17. No. Of Questions: 20
  18. Duration in Minutes: 20
  19. 70 students are required to paint a picture. 52 use green color and some children use red, 38 students use both the colors. How many students use red color?
    1. 24
    2. 42
    3. 56
    4. 70
  20. At an international conference, 100 delegates spoke English, 40 spoke French, and 20 spoke both English and French. How many delegates could speak at least one of these two languages?
    1. 110
    2. 100
    3. 140
    4. 120
  21. A group of 50 students were required to clear 2 tasks, one in rock-climbing and the other in bridge crossing during an adventure sports expedition. 30 students cleared both the tasks. 37 cleared bridge crossing, 38 students cleared rockclimbing. How many students could not clear any task?
    1. 0
    2. 3
    3. 5
    4. 9
  22. A dance instructor conducts annual workshops in which he holds sessions for basic learners and trainers. In a particular year, 2000 people attended the workshop. 1500 participated as learners and 800 as trainers. How many participated as only trainers?
    1. 200
    2. 500
    3. 800
    4. 1500
  23. In a group of 400 readers who read science fiction or literacy works or both, 250 read science fiction and 230 read literacy works. How many read both science fiction and literacy works?
    1. 80
    2. 160
    3. 220
    4. 400
  24. A man said to a lady, “Your mother՚s husband՚s sister is my aunt.” How is the lady related to the man?
    1. Daughter
    2. Grand daughter
    3. Mother
    4. Sister
  25. A man is facing west. He turns 45degree in the clockwise direction and then another 180 degree in the same direction and then 270 degree in the anticlockwise direction. Which direction is he facing now?
    1. South
    2. North-West
    3. West
    4. South-West
  26. In a row of 60, if Ram is standing at 17th from the first, what is his position from the last?
    1. 25
    2. 43
    3. 44
    4. 45
  27. A man is facing northwest. He turns 90 degrees in the clockwise direction and then 135degrees in the anti-clockwise direction. Which direction is he facing now?
    1. East
    2. West
    3. North
    4. South
  28. What three letter word bestcompletes the below words? VA________E and S________TER________ER
    1. STR
    2. TER
    3. CAT
    4. fAT