Tip 1 : Always keep learning
Tip 2 : Create account on Hackerank & Leetcode
Tip 3 : Do atleast 1 project
Tip 1 : be clear with resume
Tip 2 : do not put false things
Round 1 at Accenture is an online test that consists of 5 sections (Mathematics Ability, Logical Reasoning, Verbal Ability, Pseudocode, and Puzzles). The total duration of the test is 60 minutes. Each section of the test has specific time allocated to them and all questions of that section need to be completed in that specific period. There is no negative marking but you cannot navigate between the questions or sections.
Why we use semaphore?
Input: 'n' = 5, 'arr' = [1, 2, 3, 4, 5]
Output: 5
Explanation: From the array {1, 2, 3, 4, 5}, the largest element is 5.
The HR interview round assesses your overall personality and suitability for the role. You can expect questions on your skills, hobbies, reasons for applying for Mindtree, educational background and expectations from your position
Tell me about yourself.
Tell me about your project and internship experience.
What are your hobbies?
Tip 1 : Focus on the way you present your projects.
Tip 2 : Be polite and confident
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
How do you write a single-line comment in C++?
import java.util.* ;
import java.io.*;
public class Solution {
static int largestElement(int[] arr, int n) {
int x = arr[0];
for(int i=0;i<arr.length;i++){
if(arr[i]>x){
x=arr[i];
}
}
return x;
}
public static void main(String[] args){
int arr[]={1,2,3,4,5};
int n=arr.length;
System.out.print(largestElement(arr,n));
}
}
#include <bits/stdc++.h>
int largestElement(vector<int> &arr, int n) {
// Write your code here.
return *max_element(arr.begin(), arr.end());
}