Freshers Interview Questions

358 freshers interview questions shared by candidates

Tech-- Introduction If you are presenting an project and it fails what will you do What is dbms Diffrence between dbms and rdbms Why rdbms and not dbms Why python Intrested technologies and why interested Views in dbms and have you ever implemented it HR. Introduction Family background Why birlasoft Something not mentioned in resume Anything which you were not good but you have overvome it now Relocation Are you okay with salary work time Flexible with technologies and projects Okay with 2 years bond
avatar

Freshers 2021

Interviewed at Birlasoft

3.4
Oct 11, 2020

Tech-- Introduction If you are presenting an project and it fails what will you do What is dbms Diffrence between dbms and rdbms Why rdbms and not dbms Why python Intrested technologies and why interested Views in dbms and have you ever implemented it HR. Introduction Family background Why birlasoft Something not mentioned in resume Anything which you were not good but you have overvome it now Relocation Are you okay with salary work time Flexible with technologies and projects Okay with 2 years bond

question number 3] , Code it using , C , C plus plus , java Get the details of N number of students , Name , ID number , marks in 5 subjects , find the average marks for each student ? Find number of subjects a student score more than 75 marks ? #include <stdio.h> struct student { char name ; float mat , phy , chem , bot , comp , sum , avg ; }s[100]; void main() { int n , x; printf(" Enter the number of students "); scanf("%d", &n); for(x=0;x<n;x++) { printf(" Enter the name of the students"); scanf("%s", s[x].name); printf("Enter the MATHS marks of students "); scanf("%f", &s[x].mat); printf("Enter the PHYSICS marks of students "); scanf("%f", &s[x].phy); printf("Enter the CHEMISTRY marks of students "); scanf("%f",& s[x].chem); printf("Enter the BOTANY marks of students "); scanf("%f", &s[x].bot); printf("Enter the COMPUTER SCIENCE marks of students "); scanf("%f", &s[x].comp); s[x].sum= (s[x].mat+s[x].phy+s[x].chem+s[x].bot+s[x].comp); s[x].avg=(s[x].sum/5); printf(" sum of marks of %s = %f" , s[x].name , s[x].sum ); printf(" sum of marks of %s = %f" , s[x].name , s[x].avg ); if( s[x].mat<40) { printf( " %s is FAIL in MATHS " , s[x].name); } else { printf( "%s is FIRST CLASS in MATHS " , s[x].name); } if( s[x].phy<40) { printf( " %s is FAIL in PHYSICS " , s[x].name); } else { printf( "%s is FIRST CLASS in PHYSICS " , s[x].name); } if( s[x].chem<40) { printf( " %s is FAIL in CHEMISTRY " , s[x].name); } else { printf( "%s is FIRST CLASS in CHEMISTRY " , s[x].name ) ; } if( s[x].bot<40) { printf( " %s is FAIL in BOTANY " , s[x].name); } else { printf( "%s is FIRST CLASS in BOTANY " , s[x].name); } if( s[x].mat<40) { printf( " %s is FAIL in COMPUTER SCIENCE ", s[x].name); } else { printf( "%s is FIRST CLASS in COMPUTER SCIENCE " , s[x].name); } } }
Mar 8, 2018

question number 3] , Code it using , C , C plus plus , java Get the details of N number of students , Name , ID number , marks in 5 subjects , find the average marks for each student ? Find number of subjects a student score more than 75 marks ? #include <stdio.h> struct student { char name ; float mat , phy , chem , bot , comp , sum , avg ; }s[100]; void main() { int n , x; printf(" Enter the number of students "); scanf("%d", &n); for(x=0;x<n;x++) { printf(" Enter the name of the students"); scanf("%s", s[x].name); printf("Enter the MATHS marks of students "); scanf("%f", &s[x].mat); printf("Enter the PHYSICS marks of students "); scanf("%f", &s[x].phy); printf("Enter the CHEMISTRY marks of students "); scanf("%f",& s[x].chem); printf("Enter the BOTANY marks of students "); scanf("%f", &s[x].bot); printf("Enter the COMPUTER SCIENCE marks of students "); scanf("%f", &s[x].comp); s[x].sum= (s[x].mat+s[x].phy+s[x].chem+s[x].bot+s[x].comp); s[x].avg=(s[x].sum/5); printf(" sum of marks of %s = %f" , s[x].name , s[x].sum ); printf(" sum of marks of %s = %f" , s[x].name , s[x].avg ); if( s[x].mat<40) { printf( " %s is FAIL in MATHS " , s[x].name); } else { printf( "%s is FIRST CLASS in MATHS " , s[x].name); } if( s[x].phy<40) { printf( " %s is FAIL in PHYSICS " , s[x].name); } else { printf( "%s is FIRST CLASS in PHYSICS " , s[x].name); } if( s[x].chem<40) { printf( " %s is FAIL in CHEMISTRY " , s[x].name); } else { printf( "%s is FIRST CLASS in CHEMISTRY " , s[x].name ) ; } if( s[x].bot<40) { printf( " %s is FAIL in BOTANY " , s[x].name); } else { printf( "%s is FIRST CLASS in BOTANY " , s[x].name); } if( s[x].mat<40) { printf( " %s is FAIL in COMPUTER SCIENCE ", s[x].name); } else { printf( "%s is FIRST CLASS in COMPUTER SCIENCE " , s[x].name); } } }

question number 2] , A car travelling to a place. total volume of petrol is 10 l. there are three types of roads, smooth medium hard and get the mileage are 40, 30, 20 mpl respectively. Get the number of distance travelled in each road. Find the average mileage of the travel and the remaining petrol. . OR Find the Average mileage and Remaining fuel , distance travelled in the smooth , medium and hard roads are given . and also the mileage in smooth , medium and hard roads are given . OR A car travelling to a place. total volume of petrol is 10 l. there are three types of roads, smooth medium hard and get the number of distance travelled in each road are 40, 30, 20 miles respectively. Get the mileage of each road. Find the average mileage of the travel and the remaining petrol. [i'm not sure, which one they asked]
Mar 8, 2018

question number 2] , A car travelling to a place. total volume of petrol is 10 l. there are three types of roads, smooth medium hard and get the mileage are 40, 30, 20 mpl respectively. Get the number of distance travelled in each road. Find the average mileage of the travel and the remaining petrol. . OR Find the Average mileage and Remaining fuel , distance travelled in the smooth , medium and hard roads are given . and also the mileage in smooth , medium and hard roads are given . OR A car travelling to a place. total volume of petrol is 10 l. there are three types of roads, smooth medium hard and get the number of distance travelled in each road are 40, 30, 20 miles respectively. Get the mileage of each road. Find the average mileage of the travel and the remaining petrol. [i'm not sure, which one they asked]

There is always 2- 3 aptitude question asked in an interview. Most of the time skills in resume leads the interview. General idea of programming language like OOP concept and general coding like prime number coding can be asked in an interview.
avatar

Freshers

Interviewed at Cognizant

4
Jun 29, 2023

There is always 2- 3 aptitude question asked in an interview. Most of the time skills in resume leads the interview. General idea of programming language like OOP concept and general coding like prime number coding can be asked in an interview.

Viewing 281 - 290 interview questions

Glassdoor has 358 interview questions and reports from Freshers interviews. Prepare for your interview. Get hired. Love your job.