Posts

Managerial round interview questions

Image
 Managerial round interview questions 1)Introduction Gd mng sir, its my pleasure to introduce my self. My name is Thirumala. I have completed btech in R.L Jalapa inst of tech. After that i got slected for both TCS and LTI. I have choosen LTI bcz i was much passonate to learn the technolgy which industry demand now a days. and i have worked as a data science intern for 3.5 months , in internship i have worked on different projects like 1)  Determining Status for Loan Applicants  with banking domain. 2) Movie Recommendation and Analysis  with enterntment domain 3) Optimizing-Agricultural-Production  with agriculture domain 4) Predicting Medical Health Expenses  with helath care domain 5) Startups Case Study and Analysis  with finance domain. while comming to me i am down to earth, sweet smart and creative, and i am a cool heated person so usually see every dificulties with positive attitude and keep muself always smiling which makes me stronger evenmore....

DATAISGOOD INTERVIEW QUESTIONS

Image
  DATA SCIENCE INTERVIEW QUESTIONS PYTHON 1)Difference between List, Tuple, Set, Dict List:- l=[1,1,1,2,2,68,9,98,46]          Duplicates allowed, Order is imp Tupple:- Same as list except that is it immutable.          l[0]=7777// Error Set:- Order not imp, duplicates not allowed dict:- key,value pair, no duplicate key but value can be duplicate. 2)How to check armstrong number? # Python program to check if the number is an Armstrong number or not # take input from the user num = int( input ( "Enter a number: " )) # initialize sum sum = 0 # find the sum of the cube of each digit temp = num while temp > 0 : digit = temp % 10 sum += digit ** 3 temp //= 10 # display the result if num == sum: print (num, "is an Armstrong number" ) else : print (num, "is not an Armstrong number" ) 3)Program to swap without using temporary variable? x=5 y="greate" x,y=y,x print(x) print(y)         ...