TVM Infotech Fresher Interview Questions

TVM Infotech Fresher Interview Questions

Last week, Our Trainees attended Fresher Full Stack Developer Interview in TVM Infotech, Chennai. Below are the Interview questions asked in TVM Infotech, Chennai.

TVM Infotech Fresher Interview Questions

  • Given Array is {0,0,10,3,12}. Expected Output is {10,3,12,0,0}
  • Count of vowels in given String Array.
    • String[] words = {“apple”, “tea”, “tree”};
  • Check if the first letter and last letter of the given word is same.
    • Eg. MOM, DAD
  • Reverse the given number.
    • Eg. 12345 to 54321
  • Frequency of each Character in a given String:
    • Sample Input: String s = “hello”
    • Expected Output: h:1, e:1, l:2, o:1
  • Print Only the duplicate values in the given array.
    • int[] a = {1,2,2,3,5,6,6};
  • Pattern Program – Right Angle Triangle
  • Armstrong Number
  • Questions on Object Oriented Programming
    • What is Object
    • Define Class
    • Explain Inheritance
    • Describe Polymorphism