Tip 1: Practice basic coding questions.
Tip 2: Practice pseudocoding.
Tip 3: Practice aptitude questions.
Tip 4: Practice theory questions from core subjects.
Tip 5: Focus on problem-solving skills.
Tip 6: Focus on communication skills.
Tip 7: Complete at least one project.
Tip 1: Mention the technical skills you have.
Tip 2: Mention the projects you have completed in college.
Tip 3: Mention if you have completed any internships.
Tip 4: Mention the competitions and hackathons you have participated in.
Tip 5: Mention any achievements you have.
Tip 6: Mention any extracurricular activities and certifications you have.
Tip 7: Design it properly.
Tip 8: Keep it short and simple.
This round is divided into three parts. The first part is an arithmetic ability test, the second part is a verbal reasoning test, and the third part is a logical reasoning test.
Three cubes of edges 6 cm, 8 cm and 10 cm are meted without loss of metal into a single cube. The edge of the new cube will be:
8 cms
12 cms
14 cms
16 cms
Volume of new cube = Volume of cube 1 + cube 2 + cube 3 = 63 + 83 + 103, = 216 + 512 + 1000
a3 = 1728,
a = (1728)1/3 = 12
In 24 minutes, the hour hand of a clock moves through an angle of:
60°
24°
12°
5°
12 hour = 360°, 1 hr. = 360/12 = 30° 60 min = 30°, 1 min 30/60 = .5° 24 min. = 1/2 ×24 = 12°
A reduction of 20% in the price of mangoes enables a person to purchase 12 more for Rs. 15. What was the price of 16 mangoes before reduction of the price?
Rs. 6
Rs. 5
Rs.7
Rs. 9
Price x Consumption = Expenditure
Consumption = Exp. Price
(15 / 8x) - (15 / x) = 12
x = (15 x 2) / (12 x 8)
For 16 Mangoes = [(15 x 2) / (12 x 8)] x 16 = 5
√0.0081 is equal to :
0.09
0.9
±0.08
0.81
√0.0081 = √0.0081/10000 = √81/10000 = 9/100 =0.09
What is the number which when multiplied by 13 is increased by 180?
13
15
23
35
13 × 15 = 195 so ans is option B
This morning, I participated in an online interview via Superset. The session began early and went smoothly, with no technical issues on the platform. The interviewer asked a diverse range of questions, including coding challenges, aptitude problems, and theoretical concepts. We also discussed my previous projects and internship experiences. I was able to answer all questions confidently, which felt reassuring. The interviewer was engaging and supportive throughout, making the entire process informative and positive.



'arr '= [1,2,3,4,5]
'k' = 1 rotated array = [2,3,4,5,1]
'k' = 2 rotated array = [3,4,5,1,2]
'k' = 3 rotated array = [4,5,1,2,3] and so on.
Suppose the give array is arr[] = [1, 2, 3, 4, 5, 6, 7], d = 2.
First Step:
=> Store the elements from 2nd index to the last.
=> temp[] = [3, 4, 5, 6, 7]
Second Step:
=> Now store the first 2 elements in the temp[] array.
=> temp[] = [3, 4, 5, 6, 7, 1, 2]
Third Steps:
=> Copy the elements of the temp[] array into the original array.
=> arr[] = temp[] So arr[] = [3, 4, 5, 6, 7, 1, 2]



Given an array arr[] of size N, the task is to find the largest element in the given array.
Examples:
Input: arr[] = {10, 20, 4}
Output: 20
Explanation: Among 10, 20 and 4, 20 is the largest.
Input: arr[] = {20, 10, 20, 4, 100}
Output: 100
Create a local variable max and initiate it to arr[0] to store the maximum among the list
Iterate over the array
Compare arr[i] with max.
If arr[i] > max, update max = arr[i].
Increment i once.
After the iteration is over, return max as the required answer.
A person travels 48 km at 12 km/hour and a further 48 km at 16km.s/hour. His average speed for the whole
14 km/hour
13(4/7)km/hour
12(5/7)km/hour
13(5/7)km/hour
Avg. Speed = (Total Distance / Total Time)
TD = 48 + 48= 96,
T1 = 48/12 = 4hrs
T2 = 48/16 = 3hrs
T1 + T2 = 4 + 3 = 7
Avg Speed = 96/7 = 13(5/7) km/hr

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: