Tip 1: Practice coding regularly on online platforms to enhance your problem-solving skills.
Tip 2: Prepare for common interview questions and practice your answers.
Tip 3: Enhance your communication and English proficiency before interviews
Tip 1: Keep the resume to one page in length.
Tip 2: Create a dedicated section for technical skills, including programming languages, software tools, and technologies you're proficient in.
Tip 3: Showcase personal coding or tech-related projects.
Total Questions :17
Fill in the blanks with most suitable options
Q1- The guy refused to let go of .............. fast rising hot air balloon .
i-a
ii-the
iii-an
iv-on
Correct answer: - the
Q2-It was a chance meeting a person who ......... the crowd.
i-had leading
ii-were leading
iii-had been lead
iv-was leading
Correct answer: - was leading
Q3-Choose the word that is opposite in meaning
DAINITY
i-divina
ii-comformity
iii-dumsy
iv-superior
Correct answer - dumsy
Total Questions :18
Statements: People who exercise regularly tend to have better physical health.
Conclusions:
I. Regular exercise is essential for maintaining physical health.
II. Physical health is solely determined by exercise.
Options:
i) Only conclusion I follows
ii) Only conclusion II follows
iii) Either I or II follows
iv) Neither I nor II follows
v) Both I and II follow
The correct answer is: Either I or II follows
Total Questions :18
What will be the ouput of the following pseudocode for a=8,b=2?
Q1-Integer fun(Integer a,Integer b)
if(bb)
b=1+1+a
a=2+1+b
return fun(a,b)
End if
b=(b+2)+b
return. a+b
i-37
ii-38
iii-14
iv-15
The correct answer is: 14
Total Questions :12
Q1-In which of the following application you can not run spellcheck?
i-MS Word
ii-PowerPoint
iii-Notepad
iv-MS Excel
Correct answer: MS Excel
Q2-In MS excel,which of the folllowing symbol with Ctrl+Shift is used to change the cell format to general
i-~
ii-#
iii-@
iv-^
Correct answer: - @
Total Questions :15
Q1- Complete the comparison :
BF:512::GF:?
i-2156
ii-2187
iii-2256
iv-2100
Correct answer: -2187
Q2-Mark the odd one out?
i-STUDIO=DIOSTU
ii-VIDEO=DEIOV
iii-LIGHT-GIHLT
iv-PHOTO=HOOPT
Correct answer: PHOTO=HOOPT
Q3-Mark the odd one out?
i-TABLE=TLEAB
ii-HEATER=TRHEEA
iii-WHALE=WLHEA
iv-EIGHT=TIHGE
Correct answer: WHALE=WLHEA
Total Questions :10
Q1-What does VPN stand for?
i) Virtual Personal Network
ii) Virtual Private Network
iii) Visible Public Network
iv) Virtual Protocol Network
Correct answer: Virtual Private Network
Q2-What is the primary benefit of cloud computing?
i) Reduced hardware costs
ii) Increased security risks
iii) Limited scalability
iv) Decreased accessibility
Correct answer: Reduced hardware costs
Implement the following function :
int CommonDigit(int a,int b,int c)
The function accepts three positive integers 'a','b' and 'c' as its argument .Implement the function to find and return common digit in all the three numbers,if there is no common digit then return -1 Assumption :All 3 numbers are three digit numbersAll 3 numbers can have at most 1 digit common
Example
Input :
426
486
652
Output :6
Explanation :6 is the common digit in all three numbers ,thus ,6 is the output .
You are given a function ,int* ProductArray(int* arr,int n)
The function accepts an integer array 'arr' of length 'n' .Implement the function to modify the given array such that ,value at each index is replaced with product of all integers of the array except for the integer on that index .Assumption:Array index starts from 0.n>1Each product operations is within the integer range .Note :Input and output arrays are of same length
Example:
Input :arr:2 3 7 5
Output:105 70 30 42
Explanation :arr[0]=arr[1]*arr[2]*arr[3]=3*7*5=105,similarly all other elements are replaced with product of all integers of the array except the integer on that particular index of array .
This round evaluates your communication abilities through specialized software. It assesses both your listening and speaking skills. Due to the sensitivity of the software, it's important to ensure a quiet environment and a stable internet connection.
Section 1- Reading
In this section, you'll see 8 sentences on the screen. Your task is to read each one aloud for 20-30 seconds. This exercise assesses your reading skills.
Section 2- Repeating Sentences
In this section, you'll hear 16 audio sentences and repeat them aloud. This tests your pronunciation skills.
Section 3-Jumbled Sentence
In this part,there will be 10 jumbled sentence audio will be given.. Your task is to unscramble them and repeat them aloud.
Q1- Audio: "behind the car, the house is."
Answer: "The house is behind the car."
Q2-Audio: "on the shelf, the books are arranged."
Answer: "The books are arranged on the shelf."
Section 4-Question and Answer
In this part, you'll hear 24 simple questions orally, with no text displayed.You have to answer each question in one or two words.. This round evaluates your quick thinking, speaking, and vocabulary.
Q1-Audio :"You put your clothes in the wardrobe or in the bathtub!"
Answer: "In the wardrobe."
Q2- Audio:"Where do you store your groceries, in the pantry or on the balcony?"
Answer: "In the pantry."
Section 5- Story Telling
This section tests your memorization skills. You'll listen to a short story twice, then retell it in your own words within 30 seconds. It evaluates your fluency and vocabulary.
Section 6- Open questions
It's akin to a virtual HR interview. You'll be asked a HR question and given a minute to respond, followed by another question.
Q1-Can you discuss a mistake you made in the past and how you learned from it?
Q2-What are your hobbies
Following the communication round, I received an email inviting me to an interview as per the slot I have chosen .
Overall it was a techinical+HR round ,interviewer started by introducing himself and the following questions were asked :
1-Asked me to introduce myself
3-Internship Experience
4-About Major Project done in final year
5-Why you choose JAVA
6-JAVA vs C++
7-What are your Strengths
8-Why Accenture?
9-Any questions for me
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++?