Accenture Technical Questions And Answers

Accenture Technical MCQs : This section focuses on "Technical Questions" for Accenture Exam. These Technical MCQs are asked in previous Accenture placements/recruitment exams and will help you to prepare for upcoming Accenture drives.

1. What was Photo Editor renamed to while using Microsoft Office, 2003?

A. Photo Manager
B. Picture Manager
C. Photo Editor
D. Paint Editor

View Answer


2. Which of the following attributes of text box control allow to limit the maximum character?

A. len
B. size
C. maxlength
D. none

View Answer


3. Traffic in a VPN is NOT ____________

A. Logically separated from other traffic
B. Restricted to a single protocol in IPsec
C. Invisible from public networks
D. Accessible from unauthorized public networks

View Answer


4. What is the time complexity of searching for an element in a circular linked list?

A. O(n)
B. O(nlogn)
C. O(1)
D. None of the mentioned

View Answer


5. In the worst case, the number of comparisons needed to search a singly linked list of length n for a given element is

A. log 2 n
B. n⁄2
C. log 2 n – 1
D. n

View Answer


6. What does the following piece of code do?

public void func (Tree root)
{
  func (root.left ());
  func (root.right ());
  System.out.println (root.data ());
}

A. preorder traversal
B. postorder traversal
C. inorder traversal
D. level order traversal

View Answer


7. Consider the following piece of code. What will be the space required for this code?

int sum (int A[], int n)
{
  int sum = 0, i;
  for (i = 0; i < n; i++)
    sum = sum + A[i];
  return sum;
}// sizeof(int) = 2 bytes

A. 2n+8
B. 2n+4
C. 2n+2
D. 2n

View Answer


8. Which is not an objective of network security?

A. Identification
B. Authentication
C. Lock
D. Access Control

View Answer


9. Checksum, Error control and Length information are main features of?

A. SCTP
B. IP
C. TCP
D. UDP

View Answer


10. ALOHA was developed in early?

A. 1970
B. 1980
C. 1990
D. 1997

View Answer


11. 1. What is the output of the following code snippet in Python?

a = ""9876""
b = a[-2:-1]
print(b)

A. 6
B. 7
C. 8
D. 9

View Answer


12. 2. What is the output of the following code snippet in Java?

int a = 5;
int b = 7;
int c = a++ + ++b;
System.out.println(c);

A. 11
B. 12
C. 13
D. 14

View Answer


13. In which programming language is the keyword 'this' used?

A. C
B. C++
C. Python
D. Java

View Answer


14. Which data structure uses FIFO (First In First Out) order?

A. Queue
B. Set
C. Stack
D. Map

View Answer


15. Which of the following is NOT a valid way to declare and initialize a variable in Java?

A. int x = 5;
B. double y = 3.14;
C. boolean z = true;
D. string w = "hello";

View Answer




Discussion



* You must be logged in to add comment.