Tip 1 : Prepare with basic of any coding language like Java, C,Python,C++,etc.
Tip 2 : Do atleast 2 projects.One is major project and one minor.
Tip 1 : Have some projects on resume.
Tip 2 : Do not put false things on resume.
Question are bit easy.
50 question of Time, Speed, Percentage and 10 question on C basic mcq.
A boat can travel with a speed of 13 km/hr in still water. If the speed of the stream is 4 km/hr, find the time taken by the boat to go 68 km downstream.
Speed downstream = (13 + 4) km/hr = 17 km/hr.
Time taken to travel 68 km downstream = 68/17 hrs = 4 hrs



1. You can return the list of values in any order. For example, if a valid triplet is {1, 2, -3}, then (2, -3, 1), (-3, 2, 1) etc is also valid triplet. Also, the ordering of different triplets can be random i.e if there are more than one valid triplets, you can return them in any order.
2. The elements in the array need not be distinct.
3. If no such triplet is present in the array, then return an empty list, and the output printed for such a test case will be "-1".
Run three loops and check one by one whether the sum of the three elements is zero or not. If the sum of three elements is zero then print elements otherwise print not found.
Predict the output of the following pseudo-code if x= 1 and y=2: Integer solve(int x, int y) if(x > 1) solve(x – 1, y + 3) end if print y End function solve()A) 2B) 3C) 6D) 4
Ans:- 2
What is the output?#includeint main() { typedef int num; num bunk = 0.00; printf("%d", bunk); return 0; }A) Zero B) 0.0C) Garbage Value
Integer part of 0.00 is equal to 0.
Hence only zero will be printed with printf("%d", bunk), when 0.00 is passed, because %d stands for integer.
What is the compound interest on Rs. 2500 for 2 years at rate of interest 4% per annum?
Rs. 180
Rs. 204
Rs. 210
Rs. 220
The Correct answer is (B) :- 204
Explanation:
Principal (P) = Rs. 2500
Rate of interest(r) = 4%
Time (t) = 2 years
Compound Interest = Amount ? Principal
Amount(A)=P
Compound Interest 1
1 +
r
Compound Interest 2
t
100
= 2500
Compound Interest 3
1 +
4
Compound Interest 4
2
100
= 2500 +Apti Compound interest26
C.I. = 2704 ? 2500 = Rs. 204
What is virtual Memory?
How is the 3rd element in an array accessed based on pointer notation?
a[3] in C is equivalent to *(a + 3) in pointer notation.
Which of the following series will be printed by the given pseudocode? Integer a, b, c Set b = 4, c = 5 for(each a from 2 to 4) print c b = b - 1 c = c + b end forA) 5 8 10B)1 3 6C) 8 9 10
Firstly variables a, b, and c are initialized, then b and c are assigned values 4 and 5 respectively.
Now run a loop from 2 to 4, in each iteration b is decremented by 1, and c is incremented by b.
In the first iteration print c = 5 value of b is decremented by 1 i.e. b = 3, c is incremented by b i.e. c = 5
In the second iteration print c = 8 value of b is decremented by 1 i.e. b = 2, c is incremented by b i.e. c = 8
In the third iteration print c = 10 value of b is decremented by 1 i.e. b = 1, c is incremented by b i.e. c = 10
Thus the final series is 5, 8, 10
Tell me About yourself?
What do you know about Toluna?
What is market research?
What do you about the Survey programmer role?
How will you manage short-tempered clients?
About yourself?
2 questions regarding coding one is a print pattern and another one is based on Array.




Use for Loop for this question



For the given string “what we think we become”
“what”,” think”, and “become” occurs 1 time, and “we” occurs 2 times in the given string.
they asked for some basic tags of HTML

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?