Vous êtes sur la page 1sur 5

Accenture-Placement-Paper-Interview-Tech-Interview-19370

http://placement.freshersworld.com/placement-papers/Accenture/Plac...

Jobs

Placement Preparation

Career & Courses


Recommended

P3 Free Trial

Go

Placement Papers | Power Placement Preparation

GATE Mock Online Tests With Topic Wise Fully Solved Questions | Prepare for companies tests and interviews with P3 | Practice online mock CWE and Bank PO exams | Share your campus recruitment experience with us..!

Home > Accenture > Test paper : 19370

COMPANY LIST
3i-Infotech(26) AAI(28) AbacusInfotech(3) ABATIX(1) Abaxis(1) ABB(8) ACC(3) ACCEL(2) Accenture(237) ADB(2) Aditi(8) Adobe(16) ADP(15) Agilysys(1) AgreeYa(4) AIG(3) AirNet(1) Alanco(1) Alletech(2) ALLFON(7) Alter(3) Alumnus(4) Amazon(14)

Go with Gmail Gmail is Smart, Practical and Fun to Use. Try it, it's Easy and Free! Mail.Google.com Dell Business tablets Perfect companion to take Your Office along W/ Intel Atom dell.com/in/en/enterprise/latitude Study In Uk Get Scholarship for Study Abroad Contact Now fro Free Expert Advice Global-Opportunities.net/Register! Job Vacancies. Find 1000's of Jobs in your City. Connect with Employers. Apply Now! Quikr.com/Jobs

Placement Papers
Accenture

Company Profiles | Test Patterns | Contribute Placement Papers

: Test Paper
Paper Type : Interview-Tech Interview Test Location : Latest-2012 Posted By : Geetha mishra
Accenture placement paper

The number of viewers:46177 reads Previous Papers | Next Papers

Accenture recruitment process and aptitude test experiences

Accenture Latest Placement paper 2012-2013 Technical HR and Group discussion Topics
Accenture Previous Year Technical Interview Questions with Answer | Possible Technical interview Questions for IT and Non-IT Freshers-2012 Free Placement Paper for New Accenture Campus Recruitment 2012 |

Which is the parameter that is added to every non-static member function when it is called? Answer: 'this' pointer
View All >>

What is a binary semaphore? What is its use? Answer: A binary semaphore is one, which takes only 0 and 1 as values. They are used to implement mutual exclusion and synchronize concurrent processes. What is thrashing? Answer: It is a phenomenon in virtual memory schemes when the processor spends most of its time swapping pages, rather than executing instructions. This is due to an inordinate number of page faults. What are turnaround time and response time? Answer: Turnaround time is the interval between the submission of a job and its completion. Response time is the interval between submission of a request, and the first response to that request. What is data structure? Answer: A data structure is a way of organizing data that considers not only the items stored, but also their relationship to each other. Advance knowledge about the relationship between data items allows designing of efficient algorithms for the manipulation of data. List out the areas in which data structures are applied extensively? Answer: The name of areas are: Compiler Design, Operating System, Database Management System, Statistical analysis package,
Tweet Like

2
0 3.1k

1 of 5

2/19/2013 9:28 AM

Accenture-Placement-Paper-Interview-Tech-Interview-19370

http://placement.freshersworld.com/placement-papers/Accenture/Plac...

Numerical Analysis, Graphics, Artificial Intelligence, Simulation What are the major data structures used in the following areas : RDBMS, Network data model & Hierarchical data model. Answer: The major data structures used are as follows: RDBMS - Array (i.e. Array of structures) Network data model - Graph Hierarchical data model - Trees What is the data structures used to perform recursion? Answer: Stack. Because of its LIFO (Last In First Out) property it remembers its 'caller' so knows whom to return when the function has to return. Recursion makes use of system stack for storing the return addresses of the function calls. Every recursive function has its equivalent iterative (non-recursive) function. Even when such equivalent iterative procedures are written, explicit stack is to be used. Predict the output or error(s) for the following: void main() { int const * p=5; printf("%d",++(*p)); } Answer: Compiler error: Cannot modify a constant value. Explanation: p is a pointer to a "constant integer". But we tried to change the value of the "constant integer". main() { char s[ ]="man"; int i; for(i=0;s[ i ];i++) printf("\n%c%c%c%c",s[ i ],*(s+i),*(i+s),i[s]); } Answer: mmmm aaaa nnnn Explanation:s[i], *(i+s), *(s+i), i[s] are all different ways of expressing the same idea. Generally array name is the base address for that array. Here s is the base address. i is the index number/displacement from the base address. So, indirecting it with * is same as s[i]. i[s] may be surprising. But in the case of C it is same as s[i]. main() { float me = 1.1; double you = 1.1; if(me==you) printf("I love U"); else printf("I hate U"); } Answer: I hate U Explanation: For floating point numbers (float, double, long double) the values cannot be predicted exactly. Depending on the number of bytes, the precession with of the value represented varies. Float takes 4 bytes and long double takes 10 bytes. So float stores 0.9 with less precision than long double. Rule of Thumb: Never compare or at-least be cautious when using floating point numbers with relational operators (== , >, <, <=, >=,!= ).

2 of 5

2/19/2013 9:28 AM

Accenture-Placement-Paper-Interview-Tech-Interview-19370

http://placement.freshersworld.com/placement-papers/Accenture/Plac...

List out few of the Application of tree data-structure? Answer: The list is as follows: The manipulation of Arithmetic expression, Symbol Table construction, Syntax analysis. List out few of the applications that make use of Multi linked Structures? Answer: The applications are listed below: Sparse matrix, Index generation. In tree construction which is the suitable efficient data structure? Answer: Linked list is the efficient data structure. What is the type of the algorithm used in solving the 8 Queens problem? Answer: Backtracking In RDBMS, what is the efficient data structure used in the internal storage representation? Answer: B+ tree. Because in B+ tree, all the data is stored only in leaf nodes, that makes searching easier. This corresponds to the records that shall be stored in leaf nodes. Whether Linked List is linear or Non-linear data structure? Answer: According to Access strategies Linked list is a linear one. According to Storage Linked List is a Non-linear one.
Previous Year Questions
What is dangling pointer in c? In C++, what is the difference between method overloading and method overriding? What methods can be overridden in Java? What are the defining traits of an object-oriented language? Write a program that ask for user input from 5 to 9 then calculate the average? What is the diffrence between a "assignment operator" and a "copy constructor"? Explain the popular multiprocessor thread-scheduling strategies.? What is a trap and trapdoor? What is time-stamping? How are the wait/signal operations for monitor different from those for semaphores?

Previous Papers | Next Papers More Sample Papers Accenture Company-Profile

Accenture Selection-Procedure

Accenture Placement-Paper Question-Bank Aptitude,Programming,Tech & Hr-11 Dec 2012 Accenture Placement-Paper Interview-Tech Interview Latest-2012-11 Dec 2012 Accenture Placement-Paper Interview-HR Interview Latest(2012-2013)-11 Dec 2012 Accenture Placement-Paper Interview-Group Discussion Latest 2012-2013-11 Dec 2012 Accenture Placement-Paper Candidate-Experiences Greater Noida-10 Sep 2012 1 2 3 4 5 6 7 8 9 next last Yoga on Sun, 2013-02-03 18:32 good work ,really its well organised and clearly managed the company profile,its test pattern and all other procedure of selection and its better for on-campus and off-campus tests preparing students. reply

Join the conversation


Your name: *

E-mail: *

3 of 5

2/19/2013 9:28 AM

Accenture-Placement-Paper-Interview-Tech-Interview-19370

http://placement.freshersworld.com/placement-papers/Accenture/Plac...

The content of this field is kept private and will not be shown publicly.

Comment: *

Switch to plain text editor


Web page addresses and e-mail addresses turn into links automatically. Lines and paragraphs break automatically.

More information about formatting options

Type Here:

Save

Preview

Cv Resume Format
www.Quikr.com

Multiple Positions Open In Your Desired Field. Apply Now. Free!

Sample Placement Papers / Latest test pattern /Interview experiences of all IT and non-IT Companies Company List: TCS, Infosys, WIPRO, Accenture, Syntel, IBM, CTS, HCL and many more

4 of 5

2/19/2013 9:28 AM

Accenture-Placement-Paper-Interview-Tech-Interview-19370

http://placement.freshersworld.com/placement-papers/Accenture/Plac...

Jobs
JOBS BY CATEGORY IT / Software Core Technical Government Sector Defence Research BPO Jobs MBA Jobs Dream Jobs> 5 lpa Walk-ins BSc / BCA / BBM Teaching 1-3 Years Exp. Job Results Internships Scholarships Success Stories Ahmedabad Bengaluru Chennai Delhi / NCR Hyderabad Kolkata Mumbai Pune BCA B.Sc Diploma JOBS BY CITIES M.Sc B.Com BBA / BBM MCA MBA / PGDM ME / M.Tech JOBS BY COURSES BE / B.Tech

Placement Preparation
SAMPLE PLACEMENT PAPERS Placement Papers Selection Procedure Company Profiles Latest Test Patterns POWER PLACEMENT PREPARATION Courses Practice Tests Comprehensive Assessment Tests Company Based Preparation Employability Assessment Tests

Career & Courses


HIGHER STUDIES IN INDIA M.Tech MBA MCA TEST PREPARATION GRE GMAT CAT / MAT IELTS / TOEFL GATE Defence Civil Services STUDIES ABROAD USA Australia UK New Zealand Canada Singapore TRAINING COURSES ASP, .NET AutoCAD / CAM BPO / ITES / CRM / Transcription C / C++ Embedded / VLSI PHP / MySQL IT-Hardware & Networking Java / J2EE SAP / Cognos / ABAP Mainframe SQL, Oracle, Datawarehousing Linux / Unix Software Testing Wireless Technology Mobile Technology Robotics and Automation

Candidate Services

Freshersworld.com : The No.1 Jobsite for Freshers in India


Freshersworld.com is the No.1 Jobsite for freshers in India with more than 3500+ top companies hiring through Freshersworld.com. Freshersworld is a one-stop shop for all your career needs, right from your campus interview preparation till the final selection in your dream company.

Get in Touch

About Us

Blog

| |

FAQs

| |

Advertise With Us
Copyright

Recruitment Solutions

Contact Us

Terms of Use

Privacy Policy

Sitemap

2000 - 2012 Freshersworld.com

5 of 5

2/19/2013 9:28 AM

Vous aimerez peut-être aussi