Fresher software engineer Interview Questions
1K
Fresher Software Engineer interview questions shared by candidates
Questions were asked to check basic knowledge of OOPS concepts, String manipulation, Data Structures. Not very hard questions but were good enough to check concept.
10 Answers↳
No they specifically told not to write codes in c and cpp. any other language will do even pseudo code will do Less
↳
Did they shortlisted you for the next round?
↳
They didn't asked aptitude when I appeared... Only on Java or the programming language you are comfortable with other than c and cpp Less

The questions in the initial round were about the topics learnt in college about networking, cloud computing basics and some java programming question.
7 Answers↳
What are the 3 rounds you gone through?
↳
Is there any coding round after technical round
↳
Can you please tell me how many rounds have you gone through and how much time are they taking for the interview process? Less

A google doc link with questions ranging from JAVA, Logical and Quantitative aptitude and Verbal.
6 Answers↳
Bhai same issue...I cleared test on 8 aug and one of my friend on 31 sept
↳
Sorry 31 July
↳
I was facing the same. I gave exam in the first week of August and got a call from HR today. Don't lose hope. You'll recieve a call soon. :) Less

In interview, for DS: link list , stack, queues , Quicksort etc, JAVA(core) .
4 Answers↳
For any interview, you have to give time and study all these subjects (java/c++, Sql, DS). Less
↳
If you want to read it easily, try glassdoor APP , there it would be properly spaced out, properly. Less
↳
Hello Ajay, the first two comments(to explain the interview) and the interview "new process" have been written by me. I was giving this interview the second time, so I was shocked by the spike in difficulty level compared to the first time. So I wrote all this so people will be more prepared, I had a very very hard time in first round, but other had it hard in second round. Less

Write a program to count the number of occurrences of any two vowels in succession in a line of text. For example, in the sentence, “Please read this application and give me gratuity”, such occurrences are ea, ea, io and ui.
4 Answers↳
a = 'Please read this application and give me gratuity' count=0 for i in range(len(a)): if a[i] in ['a','e','i','o','u']: if a[i+1] in ['a','e','i','o','u']: count+=1 print(count) Less
↳
#include bool is_vowel(char q) { if((q == 'A' || q == 'a' || q == 'E' || q == 'e' || q == 'I' || q == 'i' || q == 'O' || q == 'o' || q == 'U' || q == 'u')) return 1; return 0; } using namespace std; int main() { string str = "Please read this application and give me gratuity"; int i = -1; int count = 0; int len = str.length(); //“Please read this application and give me gratuity” cout << "such occurences are:" << endl; while(++i < len) { if(is_vowel(str[i])) if(is_vowel(str[i + 1])) { cout << str[i] << str[i + 1] << endl; count++; } } cout << "Total occurences are: "< Less
↳
''' #include bool is_vowel(char q) { if((q == 'A' || q == 'a' || q == 'E' || q == 'e' || q == 'I' || q == 'i' || q == 'O' || q == 'o' || q == 'U' || q == 'u')) return 1; return 0; } using namespace std; int main() { string str = "Please read this application and give me gratuity"; int i = -1; int count = 0; int len = str.length(); cout << "such occurences are:" << endl; while(++i < len) { if(is_vowel(str[i])) if(is_vowel(str[i + 1])) { cout << str[i] << str[i + 1] << endl; count++; } } cout << "Total occurences are: "< Less

Mostly C program based questions will be helpful for this interview process
4 Answers↳
I need a detailed info... Please reply me!!
↳
Please Send questions u have been asked
↳
Details please..

How much salary do you expect?
2 Answers↳
i am expecting 10k to 12k...
↳
I am expecting 18k salary per month


Program For Covert Number to Text
2 Answers↳
Hello mate. Can we use extra space complexity?? For example, I used three string arrays for my simplicity. But the time complexity is only O(n). And what is the maximum no. of digits in the input.??My program will work for only six digits. Less
↳
i.e Input : 1234 Output : One Thousand Two Hundred and Thirty Four
