Let's learn java programming language with easy steps. This Java tutorial provides you complete knowledge about java technology.

Wednesday 6 September 2017

Top 10 Java Programming Interview Questions and Answers

Java Programming Interview Questions

Java Coding Interview Questions

Now, Here we will discuss some basic java programming interview questions and answers which are mostly asked in written java programming interviews.

Let's start java coding interview questions and answers step-by-step.


(1) Write a java program to check prime number

Prime number is a number which is divisible by 1 and itself. Prime number cannot be divisible by other numbers except 1 or itself. 

Prime number start from 2, 3, 5, 7, 11.....etc.

0 and 1 are not a prime number.

For example :

class PrimeNumberExample
{
public static void main(String args[])
{
//check prime number from 2 to 10 number
for(int i =2; i<=10; i++)
{
for(int j = 2; j<=i; j++)
{
if(j==i)
{
System.out.println(i);
}
if(i%j==0)
{
break;
}
}
}
}
}

Output: 2
             3
             5
             7



(2) Java Program to Print Even and Odd Numbers

An Even number is a number which is divisible by 2 and even numbers start with 2,4,6,8...etc . Odd number is a number which is not divisible by 2 and odd numbers start with 1,3,5,7,9....etc.

For example : 

class EvenOddExample
{
public static void main(String args[])
{
//Let's create an array of 10 numbers to check number is even or odd
int a[] = {1,2,3,4,5,6,7,8,9,10};
for(int i = 0; i<a.length; i++)
{
if(a[i]%2==0)//Use modulus(%) operator to check even or odd
{
System.out.println(a[i]+"is even number");
}
else
{
System.out.println(a[i]+"is odd number");
}
}
}
}

Output: 1 is odd number
             2 is even number
             3 is odd number

             4 is even number

             5 is odd number

             6 is even number

             7 is odd number

             8 is even number

             9 is odd number

            10 is even number


(3) Java Program for Armstrong Number

An Armstrong number is a number that is equal to the sum of cubes of its digits for example :

153 is an Armstrong number because, 

1^3+5^3+3^3 = 153 i.e 

1+125+27 = 153.

For example :

class ArmstrongNumberExample
{
public static void main(String args[])
{
int a, temp, b = 0;
int c = 153;//Number to be checked for Armstrong 
temp = c;
while(c>0)
{
a = c%10;
c = c/10;
b = b+(a*a*a);
}
if(temp==b)
{
System.out.println("Armstrong Number");
}
else
{
System.out.println("Not Armstrong Number");
}
}
}Output: Armstrong Number


(4) Write a Java Programs to Check Palindrome Number

Palindrome number is a number that remains the same after reverse. for example : 121, 747, 212, 545, 64646, etc. 

For example : 

class PalindromeExample
{
public static void main(String args[])
{
int r, temp, sum=0;
int n = 747;//number to be checked for palindrome 
temp = n;//temporary variable hold the number
while(n>0)
{
r = n%10;
sum = (sum*10)+r;
n = n/10;
}
if(temp==sum)
{
System.out.println("Number is palindrome");
}
else
{
System.out.println("Number is not palindrome");
}
}
}



Output: Number is palindrome




(5) Write a Java Program to Swap Two Numbers

Java swapping is a very easy program and java swapping can be done with third variable or temporary variable and without third variable or temporary variable. But in this program, we use the third variable or temporary variable.

For example :

class SwappingWithThirdVariable


{
public static void main(String args[])
{
int a = 10;
int b = 20;
System.out.println("before swapping");
System.out.println("value of a "+a);
System.out.println("value of b "+b);
System.out.println();
int temp = a;
a = b;
b = temp;
System.out.println("after swapping");
System.out.println("value of a "+a);
System.out.println("value of b "+b);
}
}

Output: before swapping

             value of a 10
             value of b 20

            after swapping

            value of a 20
            value of b 10




(6) Write a Java Program to Swap Two Numbers Without Third Variable

In this program, we can swap two number without using the third variable or temporary variable. For example 

class SwappingWithoutThirdVariable


{
public static void main(String args[])
{
int a = 10;
int b = 20;
System.out.println("before swapping");
System.out.println("value of a "+a);
System.out.println("value of b "+b);
System.out.println();
a = a + b;
b = a - b;
a = a - b;
System.out.println("after swapping");
System.out.println("value of a "+a);
System.out.println("value of b "+b);
}
}


Output: before swapping
             value of a 10
             value of b 20

            after swapping
            value of a 20
            value of b 10



(7) Find Minimum and Maximum Number in Java Array

In this array program, we will find the largest and smallest number in an array.

class MinAndMaxInArray


{
public static void main(String args[])
{
int n[] = {1,2,5,10,33,47,4,21,81,37,91,102};
//assign first element of an array to largest and smallest 
int smallest = n[0];
int largest = n[0];
for(int i = 1; i<n.length; i++)
{
if(n[i]>largest)
largest = n[i];
else if(n[i]<smallest)
smallest = n[i];
}
System.out.println(" Largest Number is "+largest);
System.out.println(" Smallest Number is "+smallest);
}
}


Output: Largest Number is 102
             Smallest Number is 1



(8) Write a Java Programs to Find Duplicate Elements in Array


There are many methods we can use for finding duplicates elements in a java array such as Brute force, HashSet etc. But in this program, we will find the duplicates in an array by using the HashSet concept of the collection.


import java.util.*;
class DuplicatesElementsInArray
{
public static void main(String args[])
{
//taking String array 
String d[] = {"eye", "leg", "eye", "ear", "hair"};
HashSet<String> hs = new HashSet<String>();
for(String elements : d)
{
if(!hs.add(elements))
{
System.out.println(elements);
}
}
}
}

Output: eye



(9) Java Program to Reverse a String

In this program, we will not use reverse method of String. We will reverse the string without using String API.
For example :
class ReverseString
{
public static void main(String args[])
{
String str = "Hello Java";
String reverse = "";
for(int i= str.length()-1; i>=0; --i)
{
reverse+=str.charAt(i);
}
System.out.println(reverse);
}
}

Output: avaJ olleH


(10) Write a String Palindrome Program in Java

In this program, we will check given string is palindrome or not. Palindrome means remains the same after reverse e.g Madam is palindrome because if we reverse this string it will look the same madam and sir is not a palindrome.

For example :
class PalindromeString
{
public static void main(String args[])
{
String str = "MADAM";
String reverse = "";for(int i= str.length()-1; i>=0; --i)
{
reverse+=str.charAt(i);
}
System.out.println(reverse);
if(reverse.equalsIgnoreCase(str))
{
System.out.println("String is palindrome");
}
else
{
System.out.println("String is not palindrome");
}
}
}

Output: MADAM

Share:

107 comments:

  1. Thanks for sharing this interview questions. It is really helpful, continue hsaring more like this.
    Angularjs Training in Chennai | Angularjs course in Chennai

    ReplyDelete
    Replies
    1. Great Article android based projects

      Java Training in Chennai

      Project Center in Chennai

      Java Training in Chennai

      projects for cse

      The Angular Training covers a wide range of topics including Components, Angular Directives, Angular Services, Pipes, security fundamentals, Routing, and Angular programmability. The new Angular TRaining will lay the foundation you need to specialise in Single Page Application developer. Angular Training

      Delete
  2. Try Matthew Urban's book "TOP 30 SQL Interview Coding Tasks", all potential questions in one book, well explained, detailed etc. It was recommended to me by a friend. Well written.

    ReplyDelete
    Replies
    1. Great recommendation, thanks for this. Helped a lot. thanks (https://www.net-boss.org/shop/top-30-sql-interview-coding-tasks-by-matthew-urban)

      Delete
    2. Very good book. (https://www.net-boss.org/shop/top-30-sql-interview-coding-tasks-by-matthew-urban), great help when it comes to preparations for the interview.

      Delete
    3. Recommending the best books on coding there are, very simple to understand and easy to read, by Matt Urban: Top 30 JAVA Interview Coding Tasks (https://www.net-boss.org/shop/top-30-java-interview-coding-tasks-by-matthew-urban) and Top 30 SQL Interview Coding Tasks (https://www.net-boss.org/shop/top-30-sql-interview-coding-tasks-by-matthew-urban).

      Delete
    4. Great recommendation! Very good book.

      Delete
  3. I am always searching online for articles that can help me. There is obviously a lot to know about this. I think you made some good points in Features also. Keep working, great job !
    data science in malaysia
    tableau training in malaysia
    data analytics certification
    360DigiTMG

    ReplyDelete
  4. aws training in Hyderabad
    AWS training will give the students obtain expertise in the theories of AMI Creation, EBS Persistent Storage, Amazon Storage Services S3, Route 53, AWS EC2 and AWS S3 Instances & further high-level concepts.
    https://360digitmg.com/amazon-web-services-aws-training-in-hyderabad

    ReplyDelete
    Replies
    1. A while ago I came across Matthew Urban's coding books (Top 30 JAVA Interview Coding Tasks on https://www.net-boss.org/shop/top-30-java-interview-coding-tasks-by-matthew-urban and Top 30 SQL Interview Coding Tasks on https://www.net-boss.org/shop/top-30-sql-interview-coding-tasks-by-matthew-urban). Very good read and excellent tips on programming. Thanks!

      Delete
  5. nice blog
    great information.
    VLCC Institute Advance Nail Art and Nail Extension Course provides finest level of learning in Nail art techniques like 3D Art,
    Nail Piercing with Jwellery, Upper form with inbuilt design, Transfer foil designs and many more.

    ReplyDelete
  6. My advice i also recommending Matthew Urban's book "Top 30 JAVA Interview Coding Tasks" (https://www.net-boss.org/shop/top-30-java-interview-coding-tasks-by-matthew-urban) and "Top 30 SQL Interview Coding Tasks" (https://www.net-boss.org/shop/top-30-sql-interview-coding-tasks-by-matthew-urban). Enjoy!

    ReplyDelete
  7. Also recommending Mathew Urban's books: Top 30 JAVA Interview Coding Tasks (https://www.net-boss.org/shop/top-30-java-interview-coding-tasks-by-matthew-urban) and Top 30 SQL Interview Coding Tasks (https://www.net-boss.org/shop/top-30-sql-interview-coding-tasks-by-matthew-urban). Very good list of questions and very useful.

    ReplyDelete
    Replies
    1. Thanks for sharing the post. Great to read some useful info, also here "Top 30 SQL Interview Coding Tasks" by Matthew Urban and here "Top 30 JAVA Interview Coding Tasks" (https://www.net-boss.org/shop/top-30-java-interview-coding-tasks-by-matthew-urban) & (https://www.net-boss.org/shop/top-30-sql-interview-coding-tasks-by-matthew-urban). Really recommending! good list of questions and easy to read stuff.

      Delete
  8. I have found it extremely helpful.Content of the Articles are fabulous, Thanks for all your Advice keep.updating more and more...
    python training in chennai | python training in annanagar | python training in omr | python training in porur | python training in tambaram | python training in velachery

    ReplyDelete
  9. A while ago I came across Matthew Urban's coding books (Top 30 JAVA Interview Coding Tasks on https://www.net-boss.org/shop/top-30-java-interview-coding-tasks-by-matthew-urban and Top 30 SQL Interview Coding Tasks on https://www.net-boss.org/shop/top-30-sql-interview-coding-tasks-by-matthew-urban). Very good read and excellent tips on programming. Thanks!

    ReplyDelete
  10. This is one of the best books in coding, by Matthew Urban: Top 30 JAVA Interview Coding Tasks (https://www.net-boss.org/shop/top-30-java-interview-coding-tasks-by-matthew-urban) and Top 30 SQL Interview Coding Tasks (https://www.net-boss.org/shop/top-30-sql-interview-coding-tasks-by-matthew-urban).
    Easy read, great tips, well explained.

    ReplyDelete
  11. Such a very useful article. Very interesting to read this article.I would like to thank you for the efforts you had made for writing this awesome article.
    Data Science Institute in Bangalore

    ReplyDelete
  12. As easy as it is to get some help, try one of these books, by Matt Urban. Well worth the money. Top 30 JAVA Interview Coding Tasks (https://www.net-boss.org/shop/top-30-java-interview-coding-tasks-by-matthew-urban) and
    Top 30 SQL Interview Coding Tasks (https://www.net-boss.org/shop/top-30-sql-interview-coding-tasks-by-matthew-urban).

    ReplyDelete
  13. Recommending te best books on coding there are, very simple to understand and easy to read, by Matt Urban: Top 30 JAVA Interview Coding Tasks (https://www.net-boss.org/shop/top-30-java-interview-coding-tasks-by-matthew-urban) and Top 30 SQL Interview Coding Tasks (https://www.net-boss.org/shop/top-30-sql-interview-coding-tasks-by-matthew-urban).

    ReplyDelete
  14. Recommending the best books on coding there are, very simple to understand and easy to read, by Matt Urban: Top 30 JAVA Interview Coding Tasks (https://www.net-boss.org/shop/top-30-java-interview-coding-tasks-by-matthew-urban) and Top 30 SQL Interview Coding Tasks (https://www.net-boss.org/shop/top-30-sql-interview-coding-tasks-by-matthew-urban).

    ReplyDelete
  15. I like the helpful info you supply in your articles. I’ll bookmark your weblog and take a look at once more here regularly. I am relatively certain I will learn a lot of new stuff right here! Good luck for the following!
    web designing training in chennai

    web designing training in velachery

    digital marketing training in chennai

    digital marketing training in velachery

    rpa training in chennai

    rpa training in velachery

    tally training in chennai

    tally training in velachery


    ReplyDelete
  16. Replies
    1. Recommending the best books on coding there are, very simple to understand and easy to read, by Matt Urban: Top 30 JAVA Interview Coding Tasks (https://www.net-boss.org/shop/top-30-java-interview-coding-tasks-by-matthew-urban) and Top 30 SQL Interview Coding Tasks (https://www.net-boss.org/shop/top-30-sql-interview-coding-tasks-by-matthew-urban).

      Delete
  17. I'd love to thank you for the efforts you've made in composing this post. I hope the same best work out of you later on too. I wished to thank you with this particular sites! Thank you for sharing. Fantastic sites!
    360DigiTMG Data Science Course in Bangalore

    ReplyDelete
  18. Fantastic post found to be very impressive to come across such an awesome blog. I really felt enthusiast while reading and enjoyed every bit of your content. Certainly, since this blog is being more informative it is an added advantage for the users who are going through this blog. Once again nice blog keep it up.

    360DigiTMG IoT Course

    ReplyDelete
  19. This is one of the best books in coding, by Matthew Urban: Top 30 JAVA Interview Coding Tasks (https://www.net-boss.org/shop/top-30-java-interview-coding-tasks-by-matthew-urban) and Top 30 SQL Interview Coding Tasks (https://www.net-boss.org/shop/top-30-sql-interview-coding-tasks-by-matthew-urban).
    Easy read, great tips, well explained.

    ReplyDelete
  20. Fantastic blog with unique content and information provided was very valuable waiting for next blog update thank you .
    Ethical Hacking Course in Bangalore 360DigiTMG

    ReplyDelete
  21. The content that I normally go through nowadays is not at all in parallel to what you have written. It has concurrently raised many questions that most readers have not yet considered.

    Data Science training in Mumbai
    Data Science course in Mumbai
    SAP training in Mumbai

    ReplyDelete
  22. My advice is also recommending Matthew Urban's book "Top 30 JAVA Interview Coding Tasks" (https://www.net-boss.org/shop/top-30-java-interview-coding-tasks-by-matthew-urban) and "Top 30 SQL Interview Coding Tasks" (https://www.net-boss.org/shop/top-30-sql-interview-coding-tasks-by-matthew-urban). Enjoy!

    ReplyDelete
  23. If anyone struggles with preparing for the interview on coding, only one book can help! This is "Top 30 JAVA Interview Coding Tasks" (https://www.net-boss.org/shop/top-30-java-interview-coding-tasks-by-matthew-urban). very recommended by a lot of guys, myself included, very well written, concise, good list of questions.

    ReplyDelete
  24. My advice is also recommending Matthew Urban's book "Top 30 JAVA Interview Coding Tasks" (https://www.net-boss.org/shop/top-30-java-interview-coding-tasks-by-matthew-urban) and "Top 30 SQL Interview Coding Tasks" (https://www.net-boss.org/shop/top-30-sql-interview-coding-tasks-by-matthew-urban). Enjoy!

    ReplyDelete
  25. Informative post. Glad to find yo ur blog. Thanks for sharing.data science course in Hyderabad

    ReplyDelete
  26. Two books I go to when it comes to coding are always Matthew Urban's books (https://www.net-boss.org/shop/top-30-java-interview-coding-tasks-by-matthew-urban and https://www.net-boss.org/shop/top-30-sql-interview-coding-tasks-by-matthew-urban), very simple and yet there is everything I need, specially when studying/ preparing for exam or interview. Really worth checking this guy.

    ReplyDelete
  27. I've read this post and if I could I desire to suggest you some interesting things or suggestions. Perhaps you could write next articles referring to this article. I want to read more things about it!
    data science course in Hyderabad

    ReplyDelete
  28. As easy as it is to get some help, try one of these books, by Matt Urban. Well worth the money. Top 30 JAVA Interview Coding Tasks (https://www.net-boss.org/shop/top-30-java-interview-coding-tasks-by-matthew-urban) and
    Top 30 SQL Interview Coding Tasks (https://www.net-boss.org/shop/top-30-sql-interview-coding-tasks-by-matthew-urban).

    ReplyDelete
  29. Two books I go to when it comes to coding are always Matthew Urban's books (https://www.net-boss.org/shop/top-30-java-interview-coding-tasks-by-matthew-urban and https://www.net-boss.org/shop/top-30-sql-interview-coding-tasks-by-matthew-urban), very simple and yet there is everything I need, specially when studying/ preparing for exam or interview. Really worth checking this guy.

    ReplyDelete
  30. wonderful article contains lot of valuable information. Very interesting to read this article.I would like to thank you for the efforts you had made for writing this awesome article.
    This article resolved my all queries.good luck an best wishes to the team members.continue posting.learn digital marketing use these following link
    Digital Marketing Course in Chennai

    ReplyDelete
  31. I am really very happy to visit your blog. Now I am finding which I actually want. I check your blog everyday and try to learn something from your blog. Thank you and waiting for your new post.
    Best Digital Marketing Courses in Hyderabad

    ReplyDelete
  32. Wonderful blog found to be very impressive to come across such an awesome blog. I should really appreciate the blogger for the efforts they have put in to develop such an amazing content for all the curious readers who are very keen of being updated across every corner. Ultimately, this is an awesome experience for the readers. Anyways, thanks a lot and keep sharing the content in future too.

    Digital Marketing training in Bhilai

    ReplyDelete
  33. We are really grateful for your blog post. You will find a lot of approaches after visiting your post. Great work
    data scientist certification

    ReplyDelete
  34. i am glad to discover this page : i have to thank you for the time i spent on this especially great reading !! i really liked each part and also bookmarked you for new information on your site.
    best data science courses in bangalore

    ReplyDelete

  35. Very awesome!!! When I searched for this I found this website at the top of all blogs in search engines.

    business analytics course

    ReplyDelete
  36. i am glad to discover this page : i have to thank you for the time i spent on this especially great reading !! i really liked each part and also bookmarked you for new information on your site.
    data science training in bangalore

    ReplyDelete
  37. I really want to appreciate the way to write this

    ReplyDelete
  38. Excellent Blog! I would like to thank for the efforts you have made in writing this post. I am hoping the same best work from you in the future as well. I wanted to thank you for this websites! Thanks for sharing. Great websites!
    Data Science Training in Bangalore

    ReplyDelete
  39. I really like reading a post that can make people think. Also, thank you for permitting me to comment!|
    data scientist training in hyderabad

    ReplyDelete
  40. Great post i must say and thanks for the information. Education is definitely a sticky subject. However, is still among the leading topics of our time. I appreciate your post and look forward to more.
    Data Science Course in Bangalore

    ReplyDelete
  41. Truly mind blowing blog went amazed with the subject they have developed the content. These kind of posts really helpful to gain the knowledge of unknown things which surely triggers to motivate and learn the new innovative contents. Hope you deliver the similar successive contents forthcoming as well.

    data science in bangalore

    ReplyDelete
  42. I was very pleased to find this site.I wanted to thank you for this great read!! I definitely enjoy every little bit of it and I have you bookmarked to check out new stuff you post.

    business analytics course

    ReplyDelete
  43. Excellent work done by you once again here. This is just the reason why I’ve always liked your work. You have amazing writing skills and you display them in every article. Keep it going!
    data scientist course in hyderabad

    ReplyDelete
  44. It's really nice and meaningful. it's a really cool blog.you have really helped lots of people who visit blogs and provide them useful information.
    digital marketing courses in hyderabad with placement

    ReplyDelete
  45. I started reading your post from the beginning, and it was quite interesting to read. I appreciate you providing such a nice blog, and I hope you continue to update it on a regular basis.

    1000 Social BookMarking Sites List

    ReplyDelete
  46. I want to leave a little comment to support and wish you the best of luck.we wish you the best of luck in all your blogging enedevors.
    data science training in chennai

    ReplyDelete
  47. Very nice article, I enjoyed reading your post, very nice share, I want to tweet this to my followers. Thanks!.
    data scientist training and placement

    ReplyDelete
  48. Thanks for posting the best information and the blog is very important.digital marketing institute in hyderabad

    ReplyDelete
  49. Thanks for posting the best information and the blog is very good.data science institutes in hyderabad

    ReplyDelete
  50. Awesome content. Thanks for sharing.

    Trading for beginners

    ReplyDelete
  51. The web site is lovingly serviced and saved as much as date. So it should be, thanks for sharing this with us.
    data scientist training in hyderabad

    ReplyDelete
  52. I have read your excellent post. This is a great job. I have enjoyed reading your post first time. I want to say thanks for this post. Thank you...

    Data Science Training in Hyderabad

    ReplyDelete
  53. Impressive blog to be honest definitely this post will inspire many more upcoming aspirants. Eventually, this makes the participants to experience and innovate themselves through knowledge wise by visiting this kind of a blog. Once again excellent job keep inspiring with your cool stuff.

    Data Science Training in Bhilai

    ReplyDelete
  54. Great post. MuleSoft Training in Canada is a best institute for training.

    ReplyDelete
  55. First You got a great blog .I will be interested in more similar topics. i see you got really very useful topics, i will be always checking your blog thanks.
    data science training in malaysia

    ReplyDelete
  56. I was actually browsing the internet for certain information, accidentally came across your blog found it to be very impressive. I am elated to go with the information you have provided on this blog, eventually, it helps the readers whoever goes through this blog. Hoping you continue the spirit to inspire the readers and amaze them with your fabulous content.

    Data Science Course in Faridabad

    ReplyDelete
  57. This post is very simple to read and appreciate without leaving any details out. Great work!
    data scientist training in malaysia

    ReplyDelete
  58. What a really awesome post this is. Truly, one of the best posts I've ever witnessed in my whole life. Wow, just keep it up.
    data science course

    ReplyDelete
  59. Thanks For Sharing such a wonderful article the way you presented is really amazing It was extraordinarily simple to discover my way around and amazingly clear, this is staggering!!!
    Best Digital Marketing Training Institutes

    ReplyDelete
  60. Extremely overall quite fascinating post. I was searching for this sort of data and delighted in perusing this one. Continue posting. A debt of gratitude is in order for sharing. data analytics course in delhi

    ReplyDelete
  61. THANKS FOR SHARING THIS BLOG. YOUR CONTENT WAS VERY INFORMATIVE AND GO AHEAD WITH YOUR INDIVIDUAL OF DESCRIPTIVE WRITING SKILL FOR OUR DEVELOPMENT. Memory Improvement Techniques

    ReplyDelete
  62. Thanks for the informative and helpful post, obviously in your blog everything is good..
    data science course in malaysia

    ReplyDelete


  63. Great to become visiting your weblog once more, it has been a very long time for me. Pleasantly this article i've been sat tight for such a long time. I will require this post to add up to my task in the school, and it has identical subject along with your review. Much appreciated, great offer. data science course in nagpur

    ReplyDelete
  64. Thanks for posting the best information and the blog is very good.data science course in Lucknow

    ReplyDelete
  65. Very nice job... Thanks for sharing this amazing and educative blog post!
    data science training in malaysia

    ReplyDelete
  66. First You got a great blog .I will be interested in more similar topics.I commend you for your excellent report on the knowledge that you have shared in this blog.

    digital marketing training in hyderabad
    free digital marketing course in hyderabad

    ReplyDelete
  67. Excellent post.I want to thank you for this informative read, I really appreciate sharing this great post.Keep up your work
    data science course in malaysia

    ReplyDelete
  68. It was a wonderful chance to visit this kind of site and I am happy to know. Thank you so much for giving us a chance to have this opportunity..
    data scientist training in hyderabad

    ReplyDelete
  69. Impressive. Your story always bring hope and new energy. Keep up the good work.
    data scientist certification malaysia

    ReplyDelete
  70. Great tips and very easy to understand. This will definitely be very useful for me when I get a chance to start my blog.
    cyber security course in malaysia

    ReplyDelete
  71. Informative blog and knowledgeable content. If you want to become a data science training then follow the below link.
    Data Science Training Institute in Hyderabad

    ReplyDelete
  72. Thank you for helping people get the information they need. Great stuff as usual. Keep up the great work!!!
    full stack development course

    ReplyDelete
  73. Thank you for helping people get the information they need. Great stuff as usual. Keep up the great work!!!
    full stack development course

    ReplyDelete
  74. I want to leave a little comment to support and wish you the best of luck.we wish you the best of luck in all your blogging enedevors
    data science training in trivandrum

    ReplyDelete
  75. This post is so useful and informative. Keep updating with more information.....
    Angular JS Features
    Angular JS Job

    ReplyDelete
  76. Thanks for sharing this valuable information, we also provide instagram video download and,
    really appreciate your hard work and good research that help us in for of your good valuable article. Keep updating us with your awesome content.

    ReplyDelete
  77. Thanks for sharing this valuable information, we also provide instagram video download and,
    really appreciate your hard work and good research that help us in for of your good valuable article. Keep updating us with your awesome content.

    ReplyDelete
  78. Amazing post...very valuable info. Thanks for sharing. I hope everybody love this site because all the post is so informative for me, every post is make me sure the writer is so good. Best Psychiatrist Doctor In Chennai

    ReplyDelete
  79. The blog was very informative and I came to know about the Top 10 B Arch Colleges In Tamilnadu

    ReplyDelete
  80. I have read your blog it’s very attractive and impressive. I like your blog.

    .Net Development Services
    .Net Development Company

    ReplyDelete

Facebook Page Likes

Follow javatutorial95 on twitter

Popular Posts

Translate