Citrix Written Test Questions-1

1. What is the output of this statement ?
Printf(“%d”,printf(“%d %d”,2,2) & printf(“%d %d ”, 2, 2));
a. 22222
b. 22221
c. It will give an error during compilation

2. What is the output of this code snippet

main()
{ int *p[10];
printf("%d %d\n",sizeof(*p),sizeof(p));
}

3. Function inlining is best used when
a. In a small recursive function
b. In large function where number of variables used is small
c. In a large function where there are many loops and number of variables used is small
d. None of these

4. If there is a large quantum in round robin it will be equivalent to
a. First come first serve
b. Shortest job first
c. Least recently used
d. None of these

5 . which of the following will lead to starvation
a. Fifo
b. Shortest job first
c. Round robin
d. Least recently used

6 . if the address space is 192.168.36.16/28 which of the following is the broadcast ip
a. 192.168.36.0
b. 192.168.36.1
c. 192.168.36.255
d. 192.168.36.31

7. if there are 9 yellow balls, 3 red balls and 2 green balls. What is the probability that the second ball picked is yellow given the first ball is yellow
a. 8/13
b. 9/13
c. 8/14
d. 9/14

8. How many processes are created in this snippet?
Main()
{
Fork();
Fork() && fork () || fork ();
Fork ();
}

a. 15
b. 19
c. 21
d. 27
e. 31

9. which of the following is TRUE about the declaration const char * p
a. the pointer cannot be changed but the value to which it points can be changed
b. the value is constant but the pointer can be changed
c. neither the value nor the pointer can be changed
d. none of these

10. If F and L are the pointers to the first and last elements in a linked list, then which of the following operations is dependent on the length of the list?
a. delete the first element in the list
b. insert a new element as a first element
c. delete the last element of the list
d. add a new element at the end of the list

245 comments:

  1. 1st answer should be 22220 because printf returns the number of characters printed by it . and thus 3 & 4 is 0 .

    8th answer is 19 ( check lazy evaluation etc. ) .

    ReplyDelete
    Replies
    1. 1st answer will be 22222...... kindly remove the spaces then check.....there are no space between int in the answer

      Delete
  2. How am i suppose to contribute to this website ?

    ReplyDelete
  3. The solution for 2 is
    4 40
    Assuming sizeof(int *) is 4

    ReplyDelete
    Replies
    1. Teri maa naa chodh du.
      Saale, variable ka size hain 10.
      so 10 0 is answer.
      Lodu saala Vivek!

      Delete
  4. Very good. Thanks for sharing!

    ReplyDelete
  5. 7 answer is 8/13
    good question

    ReplyDelete
  6. Replies
    1. answer is d....last 8 bit
      000 10000
      last 4 bit ki maximum value 1111....so its now 00011111=31

      Delete
  7. please tell me d answer for d 6th question....

    ReplyDelete
  8. i think the answer of 10th question is none of these because if we have first and last node pointer in our hand then we can add or delete first or last element from the list without the knowledge of no of nodes in the list i.e. the length of the list

    ReplyDelete
    Replies
    1. answer should be deleting from end....

      Delete
    2. ohh really....then please tell me how will u remove the last element without accessing the whole list....

      Delete
  9. There is this site www . careercompanion.net. This is a site for complete placement preparation for Engineering/MCA students and fresh graduates.

    There are no useless links just lots of questions in a test simulator format. This is really a great resource. Students should atleast create the free login and try the Free Sample Tests in the online simulator.

    ReplyDelete
  10. Answer for 10th question:
    I think the answer for this question is

    c.delete the last element of the list

    once we delete the last element, "L" should point to the previous element of the list which can be obtained only by traversing the whole list.

    ReplyDelete
  11. Answers:
    1.c
    2.4 4
    3.d
    4.a
    5.b
    6.a
    7.a
    8.6
    9.a
    10.none

    ReplyDelete
  12. In 5th qns wat does 4th option denote ?

    ReplyDelete
  13. I feel the answer for 8th question is 'a'

    ReplyDelete
  14. can i get answers for this questions

    ReplyDelete
  15. need answers please

    ReplyDelete
  16. the resources section has been deleted. please upload it. it will be very useful.
    otherwise this siteis really great. very helpful for placement preparation.
    god bless u..

    ReplyDelete
  17. please post the answers related to the operating system problems

    ReplyDelete
  18. These Questions Are Useful To Me.......

    ReplyDelete
  19. 1. c //Printf is invalid. printf is valid
    2.4 40 //*p points to 1st element. p to array
    3. a //Never use inlining for large functions
    4. a //Not sure
    5. b //longjob will not be served if smallcomes
    6. d //4 bits can be chaged 00011111-->31
    7. a //2nd event doesn't depend on first
    8. a // 1+3+3+6+2
    9. b //Value is constant
    10.c //L should point prev node(length is traversed)

    ReplyDelete
  20. where are the answers dude?

    ReplyDelete
  21. You have mentioned such a good questionnaire here. I really appreciate this great post. Thanks for sharing.

    ReplyDelete
  22. # include

    int functionA(int (*ptr)[10])
    {
    /* passing array address. */

    /* ptr pointer to an array and &ptr is the pointer to array pointer
    Both are of size 4 bytes */
    printf("sizeof(ptr) = %ld\n", sizeof(ptr));
    printf("sizeof(&ptr) = %ld\n", sizeof(&ptr));

    /* if ptr is incremented . ptr + 10*4 will be the answer */
    printf("pointer address ptr=%p ptr+1=%p\n" , ptr ,ptr+1);

    /*since ptr is an array pointer ; element are accessed like (*ptr[0])
    */
    printf("access memory ptr=%d\n" , (*ptr)[0] );
    /* we could do this by *(*ptr)+0); this is
    same as **ptr
    */
    printf("access memory **ptr=%d\n" , (**ptr) );

    /* access memory at *(*ptr+1)) */
    printf("access memory *(*ptr+1)=%d\n" , *(*ptr+1) );

    return 0;
    }

    int functionB(int *abc )
    {
    /* address of first element is passed */

    /* sizof pointer is 4 bytes */
    printf("sizeof(abc) = %ld\n" ,sizeof(abc));

    /* pointer increment will point to next element. pointes is of type (int *)
    */
    printf("pointer address abc=%p abc+1=%p\n", abc ,abc+1 );
    /* we could access memory locations by dereferencing each location */

    printf("access memory at *(abc)=%d, *(abc+1)=%d\n" , *abc ,*(abc+1));
    }

    int functionC(int pqr[])
    {
    /* prq[] is same as char *abc (in functionA ). eventhough we have pqr[] declaration
    compiler will treat this as simple char *pqr.
    Please refer funnctiuonA for all explanations
    */
    printf("sizeof(pqr) = %ld\n" ,sizeof(pqr));
    printf("pointer address pqr=%p pqr+1=%p\n", pqr ,pqr+1 );
    printf("access memory at *(pqr)=%d, *(pqr+1)=%d\n" , *pqr ,*(pqr+1));
    }

    int functionD(int stp[20])
    {
    /*stp[20] is also treated as simple char *stp */
    printf("sizeof(stp) = %ld\n" ,sizeof(stp));
    printf("pointer address stp=%p stp+1=%p\n", stp ,stp+1 );
    printf("access memory at *(stp)=%d, *(stp+1)=%d\n" , *stp ,*(stp+1));
    }


    int main()
    {
    /* integer array is defined and values are initialized */
    int arr[10]={1,2,3,4,5,6,7,8,9,0};

    /* sizeof(arr) gives totoal sizeof array. that is equal to no_of_elements * sizeof_an_element
    here it 10*4 = 40
    */
    printf("Sizeof(arr) = %ld\n", sizeof(arr));
    /* address of array is &arr and its size is of 32bit (4bytes) */
    printf("sizeof(&arr)=%ld\n" , sizeof(&arr));
    /* sizeof(int) is 4 and arr[0] contains and integer */
    printf("sizeof(arr[0])=%ld\n" , sizeof(arr[0]));
    /* arr contains pointer to first element of the array . so it is incremented
    it will point to next element
    */
    printf("pointer address arr=%p arr+1=%p \n" ,arr, arr+1 );
    /* &arr contains array address. so if it is incremented, it will point to (&arr) + (no.of.elements) * (sizof.each.element)
    eg: if &arr is 1000 ;then
    1000 + 10*4 =1040
    */
    printf("pointer address &arr=%p &arr+1=%p\n" ,&arr ,&arr+1);

    /* arr points to first element of the array. and *arr dereference first element */
    printf("access element *arr=%d\n", *arr);
    /* normal array access */
    printf("access element arr[0]=%d\n", arr[0]);

    /* (arr+1) points to next element in the array */
    printf("access element *(arr+1)=%d\n", *(arr+1));

    functionA(&arr);
    functionB(arr);
    functionC(arr);
    functionD(arr);
    }

    ReplyDelete
  23. Thanks for your questions , really good collection on questions in your blog.

    ReplyDelete
  24. Thank you for sharing this test questions.

    ReplyDelete
  25. please post answers also

    ReplyDelete
  26. Answer to 1st question:


    Assuming that the P of printf is capital, it will give a compiler error.


    Otherwise, printf returns number of characters printed.

    printf(“%d%d”,2,2) will return 2. (Removed spaces in between).

    Unary anding of both will be 2 again. ( since n & n = n).

    So the output will be : 22222.

    ReplyDelete
  27. Answer to 2nd question.

    If size of int is 4 on your machine, then output will be 4, 40.

    ReplyDelete
  28. 1.b. 22221
    2.20,2
    3.a. In a small recursive function
    4.a. First come first serve
    5.Shortest job first
    6.a. 192.168.36.0
    7.a. 8/13
    8.31
    9.b. the value is constant but the pointer can be changed
    10.d. add a new element at the end of the list

    by Harikrishna

    ReplyDelete
  29. Oh, thank you sooo much, very easy to understand..

    Thanks for sharing!

    Interview Questions

    ReplyDelete
  30. Its a nice blo to get information regarding placement consultant in delhi NCR and all types of competitive question.

    ReplyDelete
  31. This comment has been removed by the author.

    ReplyDelete
  32. can anyone explain the answer to question 8 ??

    ReplyDelete
  33. 1. if we ignore the capital P in this question, then a should be the answer.

    9. should it be a or b

    why sn't there any explanation here to 8th question?

    ReplyDelete
  34. Awesome blog....
    looking for such a site for all my placement preparation... Thankyou very much

    ReplyDelete
  35. in 1st question d output comes after running d program is 2 22 23

    ReplyDelete
  36. 1. c
    2. 4,4
    3 d
    4 a
    5 b
    6 a
    7 8/13
    8 ????
    9 b
    10 c

    ReplyDelete
  37. I am very impressed with your collection and blog....good work keep it up..

    I have also started a blog to help freshers...

    http://www.firstdestination.co.in

    ReplyDelete
  38. Million thanks! exactly what i was looking for!
    Resume Format

    ReplyDelete
  39. Thanks for the post.

    free e books http://free-ebooks-corner.blogspot.com/

    ReplyDelete
  40. Its really good.very helpful for freshers.just you can check your skills in computer quiz .Then you will get some new ideas.and you will learn new things also.

    ReplyDelete
  41. Good to see these questions...It's very useful for me..
    Placement Papers

    ReplyDelete
  42. This is the nice blog. We are providing the best placement in Delhi NCR and to know more about that the placement and recruitment…………http://www. placementconsultantsncr.com

    ReplyDelete
  43. Please provide answers also..questions are very intresting..
    Technical Interview question

    ReplyDelete
  44. Hi

    Tks very much for post:

    I like it and hope that you continue posting.

    Let me show other source that may be good for community.

    Source: Yahoo interview questions

    Best rgs
    David

    ReplyDelete
  45. i can daresay i have the right answers for some but definitely not for all. i just look it up online and find this website about how
    india imports permeate our quality of living..can anyone vouch for that?

    ReplyDelete
  46. I came across your website and feel that you could be a great partner for myAMCAT.com.

    www.myAMCAT.com is the exclusive portal for students around the country to schedule AMCAT – India’s largest Employability Test.

    AMCAT is taken by over 30,000 candidates every month. The test is available pan-India through our authorized centers. We would like to partner with you to promote AMCAT through your website.

    You can find more details at http://affiliates.myamcat.com. Please let me know a good time to talk to you in this regard. You can reach me at affiliates [AT] myamcat.com

    ReplyDelete
  47. Hi there, awesome site. I thought the topics you posted on were very interesting. I tried to add your RSS to my feed reader and it a few. take a look at it, hopefully I can add you and follow.


    Job Interview Tips

    ReplyDelete
  48. Well I used to worry and study so much for this, back then when I was in computer school. Now i work as an import export trader selling goods online. Working from home selling import export is the best thing I ever did!

    ReplyDelete
  49. wher is answers???????

    ReplyDelete
  50. Ques 1:
    output will be 2 22 23

    ReplyDelete
  51. nice post. Now you can also find latest placement papers alerts.

    ReplyDelete
  52. thankx for giving me such useful information about question from languages....

    ReplyDelete
  53. for more c,c++,dot net ,java,c# and also HR and GD round question and FT question is available on this site

    http://freshersarena.com

    thanks nice work keep it up....

    ReplyDelete
  54. where is the answer's for these.........!!????????????????????????

    ReplyDelete
  55. Thank you indeed have a very beautiful work

    boyacı

    ReplyDelete
  56. Really nice interview question. i like it. Thank you for sharing.

    Upcoming Bank Exams

    ReplyDelete
  57. Thanks for this objective questions. It is quite impressive.

    Interview Questions

    ReplyDelete
  58. from whr i cn find out da answer. of these questions, i hv seen lots s paper, hope these kind f questions vil b askd, whn mine turn vil b on, nd i knw da answers...

    ReplyDelete
  59. answer for 1st question is 22222 if there are no spaces b/w %d 's in printf

    ReplyDelete
  60. The placement papers are really helpful in this blog with lot of information .





    datastage

    ReplyDelete
  61. Facebook with its 500+ million users has virtually become a world of its kind on internet. As in real world your looks are your identity, and so in the internet world your Facebook profile is your identity. Your facebook profile speaks a lot about you as a person, and so most definitely you would love to have it customized, particularly its looks.
    More information visit our website :-
    http://www.goospoos.com/2011/04/facebook-profile-hack-using-profile-maker/

    ReplyDelete
  62. I work from home selling export goods and it has been interesting to read a bunch of blogs! Keep it up.

    ReplyDelete
  63. Thanks for this post.I have to be appear in the coming year would guide me from my queries.

    ReplyDelete
  64. want more questions like this ...
    just visit...
    http://learninginsight.blogspot.in/p/learning-hub.html

    ReplyDelete
  65. any answers for above questions

    ReplyDelete
  66. Dear Team,

    LinuxPune and Technocrop has been a specialized group of Training and Placement Partner who comes out of passion to help industry design their Outsourcing and Placement requirement on all sector and take the benefit of huge cost saving benefits.

    We are in the business of providing organizations with full service of recruitment solutions to efficiently screen and select the most qualified candidates for their current job openings. We provide recruitment solutions in

    • IT Security,
    • IT Software,
    • IT Hardware,
    • IT Networking.

    TechnoCorp Solutions Pvt Ltd Offers Free Placement to our Students & we don’t charge Companies as well we take away many of your day-to-day hassles, enabling you to focus on your core business area.

    We also have become a favorite destination for IT job seekers across Pune.

    We are sure of our ability to provide you with the candidate of your choice. We would appreciate it if you would give us an opportunity to work with you as an authorized vendor for recruitment and Staff hiring. We are hereby enclosing our company profile for your kind perusal and records & hope to get your valuable order at the earliest.

    Hoping for best and your positive reply as soon as possible.




    LinuxPune – Inspired by Open Source Technology
    Infrastructure | Outsourcing | Training | Placement
    301,Kamala Arcade,Jangali Maharaj Road, Shivaji Nagar,
    Opp BalGandharva Rang Mandir,Pune, Maharashtra
    Ph: 91 808 71 71 71 0 / Ekta -020 41007600
    info@linuxpune.com , www.linuxpune.com

    ReplyDelete
  67. 1. a
    2. 4 40 (on 32 bit system)
    3. d
    4. a
    5. b
    6.
    7. 8/13
    8. e
    9. b
    10. c
    by Invincible

    ReplyDelete
  68. Completely solved placement papers with thorough explanation and it would be easy to comprehend.
    Find here good Quality set Of Sample Placement Papers of Top IT Companies across India.

    placement papers

    ReplyDelete
  69. Thanks for sharing this placement news. Also I want you to share more placement related news in your website. Can you update it in your website?

    ReplyDelete
  70. I am fairly much satisfied with your excellent perform and you put really very information, Looking to studying your next post.
    Professional Job Network

    ReplyDelete
  71. hi
    really good questions. i like this type this type of questions. thanks for sharing.
    i also found and read this type of questions from here.

    placement Papers

    ReplyDelete
  72. More than Thousands of jobs are available at Pinhopes(www.pinhopes.com), It is India's first video job application portal. Search best jobs across top companies in India & find your dream job with one minute video simply & swiftly.

    ReplyDelete
  73. Hi, really good questions. Thanks for sharing.

    For more interview questions and answers in C language, go to >>

    http://www.codewithc.com/most-common-c-interview-questions-answers/

    ReplyDelete
  74. Good blog worth reading. For freshers i would suggest you to see this link
    IT Jobs alerts to get some good IT jobs.

    ReplyDelete
  75. "It is very beneficial tips for everyone. I really appreciate this blog. Need a job or job change we can provide your best job. ""Visit Here
    ""
    "

    ReplyDelete
  76. If you Want Fully Approved NON HOSTED ADSENSE Account Please Contact me---> 9553267423.

    Very Low Cost....

    ReplyDelete
  77. great article!!!!!This is very importent information for us.I like all content and information.I have read it.You know more about this please visit again.Oracle RAC Training in Chennai

    ReplyDelete
  78. Thank U for this nice blog, It's very beneficial for Freshers. Find More Accounting Jobs here - Visit Here

    ReplyDelete
  79. WebMethods Training in Chennai
    This information is impressive; I am inspired with your post writing style & how continuously you describe this topic. After reading your post, thanks for taking the time to discuss this, I feel happy about it and I love learning more about this topic..

    ReplyDelete
  80. Read your blog I get many information please follow us at :-The data warehouse interview questions are all related and here in this particular website user can get the chance to learn more about interview questionnaires as well as topics. The blog here covers all important topics related to the interview question and other necessary areas. The questionnaires are all prepared and tabulated by professional informatica scenario based questions.

    ReplyDelete
  81. Great work,freshers interview questions was very important question are provided through this post.It is post was more helpful at the my interview time.I can easily understand all given information.Thanks for sharing that valuable information in my life.
    java training

    ReplyDelete
  82. the blog is very nice and informative. thank you for sharing the blog with us. keep on updating.

    Java training in Chennai

    ReplyDelete
  83. One of the most interesting blog . I love reading it .To crack a interview ,you need to have good knowledge in that domain which is asked by the company and specially when you are a fresher without any reference ,apart from knowledge you need some tips about do's and don'ts of interview .As to crack a interview, you have to know about every aspects.

    ReplyDelete
  84. One of the most interesting blog . I love reading it .To crack a interview ,you need to have good knowledge in that domain which is asked by the company and specially when you are a fresher without any reference ,apart from knowledge you need some tips about do's and don'ts of interview .As to crack a interview, you have to know about every aspects.

    ReplyDelete
  85. Wow, what a fantastic post. The best post around. Thumbs up
    interview preparation for freshers

    ReplyDelete
  86. Thankyou for the informative Post for More Interview Tips Please Follow here :

    Interview tips

    ReplyDelete
  87. This comment has been removed by the author.

    ReplyDelete
  88. thnks for this sharing the lot of interview tips.
    tib co training in chennai

    ReplyDelete
  89. I cant wait to read far more from you. This is really a wonderful website.
    hiall.in

    ReplyDelete
  90. You make it entertaining and you still take care of to keep it smart. I cant wait to read far more from you. This is really a wonderful website.
    job6.in

    ReplyDelete
  91. Thanks a lot!! It's valuable even in 2016
    Do visit my blog for 2016 posts placements

    ReplyDelete
  92. This blog giving the details of technology. This gives the details about working with the business processes and change the way. Here explains think different and work different then provide the better output. Thanks for this blog.
    Back to Original Services Private Limited

    ReplyDelete
  93. Now it is known to me that articles is nothing but inspiring is everything to do something great. This is a great article for the people who want to come in freelancing.
    Best Interior Designers in Chennai
    Interior Designers in Chennai

    ReplyDelete
  94. Great articles, first of all Thanks for writing such lovely Post! Earlier I thought that posts are the only most important thing on any blog. But here at Shoutmeloud I found how important other elements are for your blog.Keep update more posts..
    Tax Accountant Melbourne
    Investment Advisor Melbourne
    Mortgage Broker
    Mortgage Broker Melbourne

    ReplyDelete
  95. Thanks For your information. We are dealing with placement services for various profiles. Get in touch with top 10 placement agencies in pune

    ReplyDelete
  96. Usually I do not read post on blogs, but I would like to say that this write-up very forced me to try and do it! Your writing style has been surprised me. Great work admin..Keep update more blog..
    Architects in Chennai

    ReplyDelete
  97. Right,Good to see these helpful information here C++ Jobs.Thanks lots for sharing them with us.

    ReplyDelete
  98. Greetings for sharing this interview questions. It was really helpful for more people to learn.
    Interior Designers in Chennai
    Interior Decorators in Chennai
    Interior Design in Chennai

    ReplyDelete
  99. Excellent Article
    Leading Local Search Engine in India
    you can Find AC Mechanic in Chennai
    you can Find Automobile Batteries Chennai
    you can Find Beauty and Spa Chennai
    you can Find Best Bike Mechanics Chennai
    you can Find Leading Call Taxi Chennai
    you can Find 24 Hours Pharmacy Chennai
    You can find All your requirements in call360 for more details & search Visit CALL360

    ReplyDelete
  100. It is really a great and useful piece of info. I’m glad that you shared this helpful info with us. Please keep us informed like this. Thank you for sharing.
    Manufacturing ERP
    ERP software companies
    Best ERP software
    ERP for the manufacturing industry

    ReplyDelete
  101. You have done a good job. All the possible questions are here for technical interview.

    ReplyDelete
  102. This comment has been removed by the author.

    ReplyDelete
  103. Above given article are very useful to me.keep on sharing.Thank you
    Best Python Training Institute in Bangalore

    ReplyDelete
  104. I feel really happy to have seen your webpage and look forward to so many more entertaining times reading here. Thanks once more for all the details.

    Best Java Training Institute Chennai


    ReplyDelete
  105. Needed to compose you a very little word to thank you yet again regarding the nice suggestions you’ve contributed here.


    Devops Training in Chennai

    ReplyDelete
  106. Appreciation for really being thoughtful and also for deciding on certain marvelous guides most people really want to be aware of. Best Selenium Training in Bangalore

    ReplyDelete
  107. You truly did more than visitors’ expectations. Thank you for rendering these helpful, trusted, edifying and also cool thoughts on the topic to Kate.

    Hadoop Training in Chennai

    ReplyDelete
  108. Greetings from Florida! I’m bored at work, so I decided to browse your site on my iPhone during lunch break. I love the information you provide here and can’t wait to take a look when I get home. I’m surprised at how fast your blog loaded on my cell phone .. I’m not even using WIFI, just 3G. Anyways, awesome blog!

    Hadoop Training in Chennai

    ReplyDelete
  109. Hey there! I know this is kind of off-topic, but I’d figured I’d ask. Would you be interested in exchanging links or maybe guest authoring a blog post or vice-versa? My blog goes over a lot of the same topics as yours, and I believe we could greatly benefit from each other. If you happen to be interested, feel free to shoot me an e-mail. I look forward to hearing from you! Great blog by the way!

    Hadoop Training in Chennai

    ReplyDelete
  110. Following logical rules such as “if/then” rules, Making calculations, Extracting data from documents, Inputting data to forms, Extracting and reformatting data into reports or dashboards, Merging data from multiple sources and Copying and pasting data are some of the Data Processing models.
    Robotic Process Automation training in Chennai

    ReplyDelete
  111. Needed to compose you a very little word to thank you yet again regarding the nice suggestions you’ve contributed here.
    python training in chennai

    python training in bangalore

    python online training

    python training in pune

    ReplyDelete
  112. I am sure this post has helped me save many hours of browsing other related posts just to find what I was looking for. Many thanks!

    python training in chennai | python training in bangalore

    python online training | python training in pune

    python training in chennai

    ReplyDelete
  113. I found your blog while searching for the updates, I am happy to be here. Very useful content and also easily understandable providing.. Believe me I did wrote an post about tutorials for beginners with reference of your blog. 
    Data Science with Python training in chenni
    Data Science training in chennai
    Data science training in velachery
    Data science training in tambaram
    Data Science training in OMR
    Data Science training in anna nagar
    Data Science training in chennai
    Data science training in Bangalore

    ReplyDelete
  114. Thank you for sharing such great information with us. I really appreciate everything that you’ve done here and am glad to know that you really care about the world that we live in
    python training in tambaram
    python training in annanagar
    python training in Bangalore

    ReplyDelete
  115. This is really a great support for the latest adviser from online. Really a supportive work for writing a good article.Any one can enjoy it with the style of writing.


    Shekhawati kirshi farm
    Organic farming
    Top organic farm
    Best organic farm in Rajasthan
    Top organic farm in India
    Organic Pomegranate Farming

    ReplyDelete
  116. Its really an Excellent post. I just stumbled upon your blog and wanted to say that I have really enjoyed reading your blog. Thanks for sharing....
    Blueprism training in Pune

    Blueprism training in Chennai

    ReplyDelete
  117. Thanks for sharing such beautiful information with us This is a wonderful article, Given so much info in it, You can see Travel Nearby best tourist place Best Honeymoon Destination in this page.

    Places to visit in Dharamshala
    Places to visit in Kasol
    Places to visit in Kinnaur
    Travel Destination Near Manali
    Beautifull Hill Station Shimla for Couples
    Tourist Place Near Kasauli
    Weekend Destination near Chamba
    Weekend Destination near Kufri

    ReplyDelete
  118. Hmm, it seems like your site ate my first comment (it was extremely long) so I guess I’ll just sum it up what I had written and say, I’m thoroughly enjoying your blog. I as well as an aspiring blog writer, but I’m still new to the whole thing. Do you have any recommendations for newbie blog writers? I’d appreciate it.

    Best Selenium Training in Chennai | Selenium Training Institute in Chennai | Besant Technologies

    Selenium Training in Bangalore | Best Selenium Training in Bangalore

    AWS Training in Bangalore | Amazon Web Services Training in Bangalore

    ReplyDelete
  119. I really like the dear information you offer in your articles. I’m able to bookmark your site and show the kids check out up here generally. Im fairly positive theyre likely to be informed a great deal of new stuff here than anyone

    Data Science Training in Indira nagar | Data Science Training in btm layout

    Python Training in Kalyan nagar | Data Science training in Indira nagar

    Data Science Training in Marathahalli | Data Science training in Bangalore | Data Science Training in BTM Layout | Data Science training in Bangalore

    ReplyDelete
  120. This information is impressive. I am inspired with your post writing style & how continuously you describe this topic. Eagerly waiting for your new blog keep doing more.
    Franchise For Spoken English Classes
    Computer Training Institute Franchise
    Best Education Franchise In India
    Training Franchise Opportunities In India
    Language School Franchise
    English Language School Franchise

    ReplyDelete
  121. I have been searching for quite some time for information on this topic and no doubt your website saved my time and I got my desired information. Your post has been very helpful. Thanks.

    QlikView Training in Chennai
    QlikView Training

    ReplyDelete
  122. Have you been thinking about the power sources and the tiles whom use blocks I wanted to thank you for this great read!! I definitely enjoyed every little bit of it and I have you bookmarked to check out the new stuff you post
    Java training in Chennai | Java training in Bangalore

    Java online training | Java training in Pune

    ReplyDelete
  123. Excellent post!!!. The strategy you have posted on this technology helped me to get into the next level and had lot of information in it.

    Data Science course in Indira nagar
    Data Science course in marathahalli
    Data Science Interview questions and answers

    ReplyDelete
  124. It seems you are so busy in last month. The detail you shared about your work and it is really impressive that's why i am waiting for your post because i get the new ideas over here and you really write so well.
    online Python training | python training in chennai

    ReplyDelete
  125. We are a group of volunteers and starting a new initiative in a community. Your blog provided us valuable information to work on.You have done a marvellous job!
    Java training in Chennai | Java training in Bangalore

    Java online training | Java training in Pune

    ReplyDelete
  126. Amazing information,thank you for your ideas.after along time i have studied
    an interesting information's.we need more updates in your blog.
    AWS Training in Guindy
    AWS Certification Training in Anna nagar
    AWS Web Services Training in Bangalore

    ReplyDelete
  127. I am really very happy to find this particular site. I just wanted to say thank you for this huge read!! I absolutely enjoying every petite bit of it and I have you bookmarked to test out new substance you post.
    python course in pune
    python course in chennai
    python course in Bangalore

    ReplyDelete
  128. Brilliant ideas that you have share with us.It is really help me lot and i hope it will help others also.update more different ideas with us.
    android training course in bangalore
    Android Training in Ambattur
    Android Training in Guindy
    Android Certification Training in OMR

    ReplyDelete
  129. Hmm, it seems like your site ate my first comment (it was extremely long) so I guess I’ll just sum it up what I had written and say, I’m thoroughly enjoying your blog. I as well as an aspiring blog writer, but I’m still new to the whole thing. Do you have any recommendations for newbie blog writers? I’d appreciate it.

    AWS Interview Questions And Answers
    AWS Training in Bangalore | Amazon Web Services Training in Bangalore
    AWS Training in Pune | Best Amazon Web Services Training in Pune
    Amazon Web Services Training in Pune | Best AWS Training in Pune
    AWS Online Training | Online AWS Certification Course - Gangboard

    ReplyDelete
  130. This is such a good post. One of the best posts that I\'ve read in my whole life. I am so happy that you chose this day to give me this. Please, continue to give me such valuable posts. Cheers!
    python course in pune
    python course in chennai
    python Training in Bangalore

    ReplyDelete
  131. This is quite educational arrange. It has famous breeding about what I rarity to vouch. Colossal proverb. This trumpet is a famous tone to nab to troths. Congratulations on a career well achieved. This arrange is synchronous s informative impolite festivity to pity. I appreciated what you ok extremely here.
    Data Science Training in Chennai
    Data Science course in anna nagar
    Data Science course in chennai
    Data science course in Bangalore
    Data Science course in marathahalli

    ReplyDelete
  132. Superb. I really enjoyed very much with this article here. Really it is an amazing article I had ever read. I hope it will help a lot for all. Thank you so much for this amazing posts and please keep update like this excellent article. thank you for sharing such a great blog with us.
    best rpa training in bangalore
    rpa training in pune | rpa course in bangalore
    RPA training in bangalore
    rpa training in chennai

    ReplyDelete
  133. Superb. I really enjoyed very much with this article here. Really it is an amazing article I had ever read. I hope it will help a lot for all. Thank you so much for this amazing posts and please keep update like this excellent article. thank you for sharing such a great blog with us.
    best rpa training in bangalore
    rpa training in pune | rpa course in bangalore
    RPA training in bangalore
    rpa training in chennai

    ReplyDelete
  134. Whoa! I’m enjoying the template/theme of this website. It’s simple, yet effective. A lot of times it’s very hard to get that “perfect balance” between superb usability and visual appeal. I must say you’ve done a very good job with this.
    aws training in bangalore
    RPA Training in bangalore
    Python Training in bangalore
    Selenium Training in bangalore
    Hadoop Training in bangalore

    ReplyDelete
  135. Your good knowledge and kindness in playing with all the pieces were very useful. I don’t know what I would have done if I had not encountered such a step like this.
    Authorized macbook pro service center in Chennai | Macbook pro service center in chennai | Authorized iMac service center in Chennai | iMac service center in chennai | Mac service center in chennai

    ReplyDelete
  136. Great Article… I love to read your articles because your writing style is too good,
    its is very very helpful for all of us and I never get bored while reading your article because,
    they are becomes a more and more interesting from the starting lines until the end.
    data science online training
    python online training
    uipath online training
    data science with python online training
    rpa online training

    ReplyDelete
  137. From your discussion I have understood that which will be better for me and which is easy to use. Really, I have liked your brilliant discussion. I will comThis is great helping material for every one visitor. You have done a great responsible person. i want to say thanks owner of this blog.

    Microsoft Azure online training
    Selenium online training
    Java online training
    Java Script online training
    Share Point online training


    ReplyDelete
  138. I would like to thank you for the efforts you have made in writing this article. I am hoping the same best work from you in the future as well. In fact your creative writing abilities has inspired me to start my own BlogEngine blog now. Really the blogging is spreading its wings rapidly. Your write up is a fine example of it.
    Microsoft Azure online training
    Selenium online training
    Java online training
    uipath online training
    Python online training

    ReplyDelete
  139. This is the exact information I am been searching for, Thanks for sharing the required infos with the clear update and required points.
    oneplus service center chennai
    oneplus service center in chennai
    oneplus service centre chennai

    ReplyDelete
  140. Very Clear Explanation. Thank you to share this
    R Training in Chennai

    ReplyDelete