Accenture Material
Accenture Material
specific training
(A) Font
(C) Clipboard
(D) Editing
(A) A word
(B) A sentence
(C) A paragraph
12. What is the shortcut key you can press to create a copyrightsymbol?
(A) Alt+Ctrl+C
(B) Alt + C
(C) Ctrl + C
13. What is the smallest and largest font size available in Font Size tool on
formatting toolbar?
(A) 8 and 72
(B) 8 and 64
(C) 12 and 72
(D) None of above
16. A character that is raised and smaller above the baseline is known as
(A) Outlined
(B) Raised
(C) Superscript
(D) Subscript
specific training
19. A bookmark is an item or location in document that you identify as a name for future
reference. Which of the following task is accomplished by using bookmarks?
A) Office XP
19. A bookmark is an item or location in document that you identify as a name for future
reference. Which of the following task is accomplished by using bookmarks?
A) Office XP
23. What is the short cut key to open the Open dialog box?
(A) F12
24. A feature of MS Word that saves the document automatically after certain
interval is available on
25. Which of the following is not available on the Ruler of MS Word screen?
(A) Winword.exe
(B) Word.exe
(C) Msword.exe
(D) Word2003.exe
27. If you want to keep track of different editions of a document which features will you
use?
(A) Editions
(B) Versions
29. What is a portion of a document in which you set certain page formatting
options?
(A) Page
(B) Document
(C) Section
(A) Cells
(B) Paragraph
(C) Text
(A) Left
(B) Right
(C) Center
(D) Top
(A) 1"
(B) 1.25"
(C) 1.5"
(D) 2"
specific training
34. If you need to change the typeface of a document, which menu will you choose?
(A) Edit
(B) View
(C) Format
(D) Tools
(A) Bold
(B) Italics
(C) Regular
(D) Superscript
36. What happens when you click on Insert >> Picture >> Clip Art
(A) You can set different header footer for even and odd pages
(B) You can set different page number formats for different sections
(C) You can set different header footer for first page of a section
(D) You can set different header and footer for last page of a section
(C) Misspelled
(B) Using your mouse or keyboard, perform the task you want to automate
(B) Source
(D) Sheet
44. Which of the following is not one of the three ‘Mail Merge Helper’steps?
45. Which of the following button will allow you to add, delete, or change
records in your
Data Source?
(A) Create
(B) Modify
(C) Sort
(A) 10
(B) 100
(C) 300
(D) 500
specific training
(A) Standard
(B) Formatting
(C) Drawing
(D) Reviewing
(A) Number
(B) Character
(C) Label
(D) Date/Time
52. Which menu option can be used to split windows into two?
54. When you use the fill effects in the format data series dialog box, you can
not
(A) rotate text on the chart
(B) select a foreground color
(C) select a pattern
(D) select a background color
57. You can add an image to a template by clicking the Insert Picture From File
button on the …. Toolbar.
(A) Standard
(B) Formatting
(C) Drawing
(D) Picture
(D) a, b and c
60. You can open the Sort dialog box by choosing Sort from the ….. menu
(A) View
(B) Format
(C) Tools
(D) Data
specific training
(A) 10
(B) 100
(C) 300
(D) 500
(A) Standard
(B) Formatting
(C) Drawing
(D) Reviewing
66. Which function will you use to enter current time in a worksheet cell?
(A) =today()
(B) =now()
(C) =time()
68. Which of the following format you can decide to apply or not in AutoFormat
dialog box?
(B) Open the list on Border tool in Formatting toolbar then choose first tool (no
border)
71. You can check the conditions against when applying conditional
formatting
(B) Formula
72. When a range is selected, how can you activate the previous cell?
73. Each excel file is a workbook that contains different sheets. Which of the
following cannot be a sheet in workbook?
(A) worksheet
(B) chart sheet
(C) module sheet
(D) data sheet
74. Which of the following Excel screen components can NOT be turned on or off?
(A) Formula Bar
(B) Status Bar
(C) Tool Bar
(D) None of above
75. Which of the following option is not available in Paste Special dialog box?
(A) Add
(B) Subtract
(C) Divide
(D) SQRT
76. Which of the cell pointer indicates that you can fill series?
(A) Doctor’s symbol (Big Plus)
(B) small thin plus icon
(C) Mouse Pointer with anchor at the tip
(A) !A!1
(B) $A$1
(C) #a#1
(D) A1
(A) =
(B) +
(C) (
(D) @
(A) =10+50
(B) =B7*B1
(C) =B7+14
(D) 10+50
80. Which of the following formulas will Excel Not be able to calculate?
(A) =SUM(Sales)-A3
(B) =SUM(A1:A5)*.5
(C) =SUM(A1:A5)/(10-10)
(D) =SUM(A1:A5)-10
specific training
(D) A and c
83. Excel uniquely identifies cells within a worksheet with a cell name
(A) Text
(C) Pictures
(B) Rows
(C) Columns
90. Which area in an excel window allows entering values and formulas
(A) Use the excel menu bar and toolbars inside the word application
(C) Values or cell references although not both at the same time
(A) Workbooks
(B) Worksheets
(C) Charts
(A) Xls
(B) Xlw
(C) Wk1
(D) 123
96. Except for the …… function, a formula with a logical function shows the word
“TRUE” or “FALSE” as a result
(A) IF
(B) AND
(C) OR
(D) NOT
specific training
(A) Insert
(B) Format
(C) Tools
(D) Data
98. You can open the consolidate dialog box byt choosing Consolidate from
the ….. menu.
(A) IF
(B) AND
(C) OR
(D) NOT
100. Gridlines
(A) May be turned off for display but turned on for printing
(D) a, b and c
specific training
Programming
1. Small Large Sum
Write a function SmallLargeSum(array) which accepts the array as an argument or
parameter, that performs the addition of the second largest element from the
even location with the second largest element from an odd location?
Rules:
Input:
321754
Output:
Explanation: The second largest element in the even locations (3, 1, 5) is 3. The
second largest element in the odd locations (2, 7, 4) is 4. So the addition of 3 and
4 is 7. So the answer is 7.
Input:
4079642
Output:
10
Solution: At first we’ve to take input from the user i.e in the main
function. Then we’ve to create two different arrays in which the first
array will contain all the even position elements and the second one
will contain odd position elements. The next step is to sort both the
arrays so that we’ll get the second-largest elements from both the
arrays. At last, we’ve to add both the second-largest elements that we
get from both the arrays. Display the desired output in the main
function.
#include <bits/stdc++.h>
using namespace std;
int smallLargeSum(int *arr, int n) {
if(n <= 3) {
return 0;
}
//Here we use vector because we don't know the array size,
//we can use array also but vector gives us more functionality than
array
vector<int> arrEven, arrOdd;
//Break array into two different arrays even and odd
for(int i = 0; i < n; i++) {
//If Number is even then add it into even array
if(i % 2 == 0) {
arrEven.push_back(arr[i]);
}
else {
arrOdd.push_back(arr[i]);
}
}
//Sort the even array
sort(arrEven.begin(), arrEven.end());
//We use sort function from C++ STL library
//Sort the odd array
sort(arrOdd.begin(), arrOdd.end());
//Taking second largest element from both arrays and add them
return arrEven[1] + arrOdd[1];
}
// Driver code
int main()
{
int n;
cout<<"Enter How many elements you want to enter?\n";
cin>>n;
int arr[n];
//Get input from user
cout<<"Start entering the numbers\n";
for(int i = 0; i < n; i++) {
cin>>arr[i];
}
cout<<"Output is\n";
cout<<smallLargeSum(arr, n);
return 0;
}
2. Check Password
Input:
bB1_89
Output:
#include<iostream>
#include<string.h>
using namespace std;
int CheckPassword(char str[]) {
int len = strlen(str);
bool isDigit = false, isCap = false, isSlashSpace=false,isNumStart=false;
//RULE 1: At least 4 characters in it
if (len < 4)
return 0;
for(int i=0; i<len; i++) {
//RULE 2: At least one numeric digit in it
if(str[i]>='0' && str[i]<='9') {
isDigit = true;
}
//RULE 3: At least one Capital letter
else if(str[i]>='A'&&str[i]<='Z'){
isCap=true;
}
//RULE 4: Must not have space or slash
if(str[i]==' '|| str[i]=='/')
isSlashSpace=true;
}
//RULE 5: Starting character must not be a number
isNumStart = (str[0]>='0' && str[0]<='9');
//FYI: In C++, if int data type function returns the true then it prints 1
and if false then it prints 0
return isDigit && isCap && !isSlashSpace && !isNumStart;
}
int main() {
char password[100];
cout<<"Enter the Password\n";
cin>>password;
cout<<"The output is =\n";
cout<<CheckPassword(password);
}
Conditions:
1C0C1C1A0B1
Output:
Explanation:
Now calculate the string without an operator priority and scan the
string characters from left to right. Now calculate the result and return
the desired output.
Note: This will convert the char into the num (char – ‘0’) in the c++
language.
#include <bits/stdc++.h>
using namespace std;
int CalculateBinaryOperations(char* str)
{
int len = strlen(str);
//Let's consider the first element as a answer (because string can be a
single char)
int ans = str[0]-'0';
for(int i=1; i<len-1; i+=2)
{
int j=i+1;
//Performing operation for AND
if(str[i]=='A')
{
ans = ans & (str[j]-'0');
}
//Performing operation for OR
else if(str[i]=='B')
{
ans = ans | (str[j]-'0');
}
//Performing operation for XOR
else if(str[i]=='C')
{
ans = ans ^ (str[j]-'0');
}
}
return ans;
}
int main()
{
char str[100];
cout<<"Enter the String:\n";
cin>>str;
cout<<"The output is :\n";
cout<<CalculateBinaryOperations(str);
}
10
15 78 96 17 20 65 14 36 18 20
Output:
96
#include<iostream>
using namespace std;
void FindMaxInArray(int arr[],int length)
{
int max=-1, maxIdx=-1;
for(int i = 0;i < length; i++)
{
if(arr[i] > max)
{
max = arr[i];
maxIdx = i;
}
}
cout<<"The Maximum element in an array is = \n";
cout<<max;
cout<<"\nAt the Index = \n";
cout<<maxIdx;
}
int main()
{
int n;
cout<<"How many elements you want to enter:\n";
cin>>n;
int a[n];
cout<<"Enter elements: \n";
for(int i=0;i<n;i++)
cin>>a[i];
FindMaxInArray(a,n);
}
5. Operation Choices
Input:
15
20
Output:
-5
Here, the value of the c is two i.e 2. So it’ll perform the operation as
subtraction (15, 20) and will return -5.
#include<iostream>
using namespace std;
int operationChoices(int c, int a , int b)
{
if(c==1)
{
return a + b;
}
else if(c==2)
{
return a - b;
}
else if(c==3)
{
return a * b;
}
else if(c==4)
{
return a / b;
}
}
int main()
{
int x, y, z;
int result;
cout<<"Enter c\n";
cin>>x;
cout<<"Enter two elements\n";
cin>>y;
cin>>z;
result = operationChoices(x, y, z);
cout<<"The result is ";
cout<<result;
}
6. Difference Of Sum
Consider: a and b are greater than 0. i.e a>0 and b>0. And their sum
should lies between the integral range.
Input:
a = 6 and b = 30
Output:
285
Explanation:
The integers that are divisible by 6 are 6, 12, 18, 24, and 30 and their
sum is 90. The integers that are not divisible by 6 are 1, 2, 3, 4, 5, 7, 8,
9, 10, 11, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 25, 26, 27, 28 and 29.
And their addition is 375.
The difference between them is (375 – 90) = 285.
Input:
a = 10
b=3
Output:
19
7. Anagram Strings
Input:
1st: learn
2nd: simple
Output:
no
Sample Test Case 2:
Input:
1st: Listen
2nd: Silent
Output:
yes
Explanation:
The two strings Listen and Silent are anagrams because rearranging all
the characters from the second string forms the first string.
Rules:
sum: 9
arr: 5 4 2 3 9 1 7
Output:
Solution:
From the given array of integers, you’ve to select the two smallest
integers which are 1 and 2. The addition of these two numbers is (1 + 2
= 3) which is less than 9(3 < 9). And the product of these two is 2 (2 x 1
= 2) so, the output we get is 2.
Input:
sum: 4
arr: 9 8 -7 3 9 3
Output:
-21
9. Replace Character
Input:
str: tervpro
ch1: e
ch2: p
Output:
tprvero
Solution:
All the ‘e’s in the string are replaced with the ‘p’ and ‘p’ is replaced with
the ‘e’.
10. Reverse a String
Write a function that will accept strings from the user and will reverse
the string word-wise. The last word will come as the first word in the
output and vice versa?
Input:
terv pro
Output:
pro terv
Explanation:
Input:
Output:
The function accepts two positive integers ‘r’ and ‘unit’ and a positive
integer array ‘arr’ of size ‘n’ as its argument ‘r’ represents the number
of rats present in an area, ‘unit’ is the amount of food each rat
consumes and each ith element of array ‘arr’ represents the amount of
food present in ‘i+1’ house number, where 0 <= i.
Note:
1. Return -1 if the array is null
2. Return 0 if the total amount of food from all houses is not sufficient
for all the rats.
3. Computed values lie within the integer range.
Example:
Input:
r: 7
unit: 2
n: 8
arr: 2 8 3 5 7 4 1 2
Output:
4
Explanation:
#include<bits/stdc++.h>
using namespace std;
int main ()
{
int r;
cin >> r;
int unit;
cin >> unit;
int n;
cin >> n;
int arr[n];
JAVA SOLUTION
import java.util.*;
class Main
{
public static int solve (int r, int unit, int arr[], int n)
{
if (arr == null)
return -1;
int res = r * unit;
int sum = 0;
int count = 0;
for (int i = 0; i < n; i++)
{
sum = sum + arr[i];
count++;
if (sum >= res)
break;
}
if(sum<res)
return 0;
return count;
}
PYTHON SOLUTION
def calculate(r,unit,arr,n):
if n==0:
return -1
totalFoodRequired=r*unit
foodTillNow=0
house=0
for house in range(n):
foodTillNow+=arr[house]
if foodTillNow >= totalFoodRequired:
break
if totalFoodRequired > foodTillNow:
return 0
return house+1
r = int(input())
unit = int(input())
n = int(input())
arr = list(map(int,input().split()))
print(calculate(r,unit,arr,n))
12. QUESTION – 12
The function accepts an integer array ‘arr’, its length and two integer
variables ‘num’ and ‘diff’. Implement this function to find and return
the number of elements of ‘arr’ having an absolute difference of less
than or equal to ‘diff’ with ‘num’.
Note: In case there is no element in ‘arr’ whose absolute difference
with ‘num’ is less than or equal to ‘diff’, return -1.
Example:
Input:
arr: 12 3 14 56 77 13
num: 13
diff: 2
Output:
3
Explanation:
#include<bits/stdc++.h>
using namespace std;
JAVA SOLUTION
import java.util.*;
class Main
{
public static int findCount (int arr[], int length, int num, int diff)
{
int count = 0;
for (int i = 0; i < length; i++)
{
if (Math.abs (num - arr[i]) <= diff)
count++;
}
return count>0?count:-1;
}
PYTHON SOLUTION
13. DECODE
The function accept positive integer n and num Implement the function
to calculate the n-base equivalent of num and return the same as a
string
Steps:
Assumption:
1 < n < = 36
Example
Input
n: 12
num: 718
Output
4BA
Explanation
Sample Output
CI8
#include<bits/stdc++.h>
using namespace std;
string decitoNBase (int n, int num)
{
string res = "";
int quotient = num / n;
vector<int> rem;
rem.push_back(num % n);
while(quotient != 0)
{
rem.push_back(quotient % n);
quotient = quotient / n;
}
return res;
}
int main ()
{
int n, num;
cin >> n>>num;
return 0;
}
14. MATRIX EVEN ODD
You are required to input the size of the matrix then the elements of
matrix, then you have to divide the main matrix in two sub matrices
(even and odd) in such a way that element at 0 index will be considered
as even and element at 1st index will be considered as odd and so on.
Then you have sort the even and odd matrices in ascending order and
print the sum of second largest number from both the matrices.
Example
C SOLUTION
#include <stdio.h>
int main ()
{
int arr[100];
int length, i, j, oddlen, evenlen, temp, c, d;
int odd[50], even[50];
if (length % 2 == 0)
{
oddlen = length / 2;
evenlen = length / 2;
}
else
{
oddlen = length / 2;
evenlen = (length / 2) + 1;
}
printf ("\n");
printf ("Sorted odd array : "); // printing odd array
for (i = 0; i < oddlen; i++)
{
printf ("%d ", odd[i]);
}
JAVA SOLUTION
import java.util.Scanner;
import java.util.ArrayList;
import java.util.Collections;
Collections.sort(even);
Collections.sort(odd);
int evensec=even.get(even.size()-2);
int oddsec=odd.get(odd.size()-2);
Example
Input:
m : 12
n : 50
Output
90
Explanation:
Sample Input
m : 100
n : 160
Sample Output
510
C SOLUTION
#include <stdio.h>
import java.util.Scanner;
public class Main
{
int Calculate (int m, int n)
{
int sum = 0;
for (int i = m; i <= n; i++)
if ((i % 3 == 0) && (i % 5 == 0))
sum = sum + i;
return sum;
}
public static void main (String[]args)
{
Scanner sc = new Scanner (System.in);
System.out.println ("Enter the value of m and n");
int m = sc.nextInt ();
int n = sc.nextInt ();
Main q = new Main ();
int result = q.Calculate (m, n);
System.out.println (result);
}
}
16. Write a program to find the length of the longest common
subsequence between two strings.
return dp[m][n]
def longest_palindrome_subsequence(s):
n = len(s)
dp = [[0] * n for _ in range(n)]
return dp[0][n - 1]
def string_permutations(s):
return ["".join(p) for p in permutations(s)]
The function accepts an integers sum and an integer array arr of size n.
Implement the function to find the pair, (arr[j], arr[k]) where j!=k, Such
that arr[j] and arr[k] are the least two elements of array (arr[j] + arr[k]
<= sum) and return the product of element of this pair
NOTE
Input
sum:9
size of Arr = 7
Arr:5 2 4 3 9 7 1
Output
Explanation
Sample Input
sum:4
size of Arr = 6
Arr:9 8 3 -7 3 9
Sample Output
-21
#include <iostream>
#include <algorithm>
int main ()
{
int n, sum, result, i;
std::cin >> sum;
std::cin >> n;
int *array = new int[n];
for (i = 0; i < n; i++)
{
std::cin >> array[i];
}
result = productSmallestPair (array, n, sum);
std::cout << result;
delete[]array;
return 0;
}
20. MOVES
The function accepts a string “str” of length ‘n’, that contains alphabets
and hyphens (-). Implement the function to move all hyphens(-) in the
string to the front of the given string.
Example :-
Input:
str.Move-Hyphens-to-Front
Output:
—MoveHyphenstoFront
Explanation:-
Sample Input
Str: String-Compare
Sample Output-
-StringCompare
#include<bits/stdc++.h>
using namespace std;
string MoveHyphen (string s, int n)
{
int count = 0;
for (int i = 0; i < n;)
{
if (s[i] == '-')
{
count++;
s.erase (i, 1);
}
else
i++;
}
while (count--)
{
s = '-' + s;
}
return s;
}
int main ()
{
string s;
cin >> s;
int n = s.size ();
cout << MoveHyphen (s, n);
return 0;
}
Accenture conducts 3 assessment rounds in the Zonal Level Hiring Test.
The first section in Accenture Placement Paper is Cognitive, which is followed by Technical,
Coding, and then finally Communication. Accenture Placement Paper is Conducted
Note: This section has a separate cutoff of 60%- 65% and if you will not be able to clear this section
you will not be Qualified for the Next Round.
Round 2: Coding
Coding No. of questions Time Difficulty
Optional Language 2 45 mins Hard
C
C++
Dot Net
JAVA
Python
Note: This section has a separate cutoff of 55%- 60% and if you will not be able to clear this section
you will not be Qualified for the Next Round.
Round 3: Communication
Communication No. of questions Time Difficulty
Communication No. of questions Time Difficulty
Sentence Mastery 20 (Shared) 20 mins (Shared) Moderate
Vocabulary 20 (Shared) 20 mins (Shared) Hard
Fluency 20 (Shared) 20 mins (Shared) Hard
Pronunciation 20 (Shared) 20 mins (Shared) Hard
Note: This section has a separate cutoff of 50 and once you complete this section your Written Test
will be completed, and if you are able to Qualify the cutoff of this final round you will be called for
an Interview.
English Ability
This section comes under Cognitive Assessment Round, here is the list of topics under the English
Ability section:-
Sentence Correction
Prepositions
Grammar
Reading Comprehension
Synonyms & Antonym
Idioms and Phrases
Speech and Tenses
Article
Sentence Selection
Spotting Error
Sentence Arrangement
Time – 16 mins
Number of Question- 16 ques
This section used to come under Cognitive Assessment Round in Logical Section but after the
pattern got updated this particular topic has now become a new internal section altogether, here is
the list of topics under the Critical Reasoning section:-
Arrangements
Blood Relations
Statement & Conclusions
Coding & Decoding
Agree Disagree Psychometric
Analogies
Inferred Meaning
Logical Sequence
Time – 18 min
Number of Question- 18 ques
Here below you will get detailed information about Accenture Common Application and MS Office
Curriculum. This is a new section being added in the selection process. This section is further
categorized into following subsection:
Microsoft Word
Microsoft Excel
Microsoft Access
Microsoft Power-point
Microsoft Outlook
Microsoft Publisher
+more
Note: This section has a separate cutoff of 65%- 70% and if you will not be able to clear this section
you will not be Qualified for the Next Round.
This section also used to come under Cognitive Assessment Round in Logical Section but after the
pattern got updated this particular topic has now become a new internal section altogether, here is
the list of topics under the Abstract Reasoning section:-
Visual Reasoning
Flowcharts-Visual Reasoning-DI
Directional Sense
Seating Arrangement
Time – 15 min
Number of Question- 15 ques
Here below you will get detailed information about Accenture Fundamental Networking Security
and Cloud Curriculum. This is a new section being added in the selection process. This section is
further categorized into following subsection:
Note: This section has a separate cutoff of 60%- 70% and if you will not be able to clear this section
you will not be Qualified for the Next Round.
Pseudo Code
Here below you will get detailed information about Accenture Pseudo Code Curriculum. This is
moderate level scoring section in Accenture Placement Exams.
Analysis of Pseudo Code Section
Note: This section has a separate cutoff of 70% and if you will not be able to clear this section you
will not be Qualified for the Next Round.
Coding
Here below you will get detailed information about Accenture Coding Curriculum.
C
C++
Java
Python
The coding platform is divided into two, one for writing the code and the other for output. We
should write the whole program.
Note: This section has a separate cutoff of 55%- 60% and if you will not be able to clear this section
you will not be Qualified for the Next Round.
Communication
Here below you will get detailed information about Accenture Communication Curriculum. This is
moderate level scoring section in Accenture Placement Exams.
Note: This section has a separate cutoff of 70% and if you will not be able to clear this section you
will not be Qualified for the Next Round.