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
1st answer should be 22220 because printf returns the number of characters printed by it . and thus 3 & 4 is 0 .
ReplyDelete8th answer is 19 ( check lazy evaluation etc. ) .
1st answer will be 22222...... kindly remove the spaces then check.....there are no space between int in the answer
DeleteHow am i suppose to contribute to this website ?
ReplyDeleteThe solution for 2 is
ReplyDelete4 40
Assuming sizeof(int *) is 4
Teri maa naa chodh du.
DeleteSaale, variable ka size hain 10.
so 10 0 is answer.
Lodu saala Vivek!
good :P
DeleteVery good. Thanks for sharing!
ReplyDelete7 answer is 8/13
ReplyDeletegood question
can any1 give the answers
ReplyDeleteanswer is d....last 8 bit
Delete000 10000
last 4 bit ki maximum value 1111....so its now 00011111=31
please tell me d answer for d 6th question....
ReplyDeletei 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
ReplyDeleteanswer should be deleting from end....
Deleteohh really....then please tell me how will u remove the last element without accessing the whole list....
DeleteThere is this site www . careercompanion.net. This is a site for complete placement preparation for Engineering/MCA students and fresh graduates.
ReplyDeleteThere 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.
Answer for 10th question:
ReplyDeleteI 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.
Answers:
ReplyDelete1.c
2.4 4
3.d
4.a
5.b
6.a
7.a
8.6
9.a
10.none
1. ans: 2 22 23
Deletehow it will be?
DeleteIn 5th qns wat does 4th option denote ?
ReplyDeleteI feel the answer for 8th question is 'a'
ReplyDeletecan i get answers for this questions
ReplyDeleteneed answers please
ReplyDeletethe resources section has been deleted. please upload it. it will be very useful.
ReplyDeleteotherwise this siteis really great. very helpful for placement preparation.
god bless u..
please post the answers related to the operating system problems
ReplyDeleteThese Questions Are Useful To Me.......
ReplyDelete1. c //Printf is invalid. printf is valid
ReplyDelete2.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)
where are the answers dude?
ReplyDeletenice
ReplyDeleteYou have mentioned such a good questionnaire here. I really appreciate this great post. Thanks for sharing.
ReplyDelete# include
ReplyDeleteint 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);
}
Thanks for your questions , really good collection on questions in your blog.
ReplyDeleteThank you for sharing this test questions.
ReplyDeleteplease post answers also
ReplyDeleteAnswer to 1st question:
ReplyDeleteAssuming 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.
Answer to 2nd question.
ReplyDeleteIf size of int is 4 on your machine, then output will be 4, 40.
1.b. 22221
ReplyDelete2.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
Oh, thank you sooo much, very easy to understand..
ReplyDeleteThanks for sharing!
Interview Questions
Its a nice blo to get information regarding placement consultant in delhi NCR and all types of competitive question.
ReplyDeletehi i m irfa
ReplyDeleteThis comment has been removed by the author.
ReplyDeletecan anyone explain the answer to question 8 ??
ReplyDelete1. if we ignore the capital P in this question, then a should be the answer.
ReplyDelete9. should it be a or b
why sn't there any explanation here to 8th question?
Awesome blog....
ReplyDeletelooking for such a site for all my placement preparation... Thankyou very much
in 1st question d output comes after running d program is 2 22 23
ReplyDelete1. c
ReplyDelete2. 4,4
3 d
4 a
5 b
6 a
7 8/13
8 ????
9 b
10 c
.....
ReplyDeleteI am very impressed with your collection and blog....good work keep it up..
ReplyDeleteI have also started a blog to help freshers...
http://www.firstdestination.co.in
Million thanks! exactly what i was looking for!
ReplyDeleteResume Format
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.
ReplyDeleteGood to see these questions...It's very useful for me..
ReplyDeletePlacement Papers
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
ReplyDeletePlease provide answers also..questions are very intresting..
ReplyDeleteTechnical Interview question
Hi
ReplyDeleteTks 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
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
ReplyDeleteindia imports permeate our quality of living..can anyone vouch for that?
I came across your website and feel that you could be a great partner for myAMCAT.com.
ReplyDeletewww.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
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.
ReplyDeleteJob Interview Tips
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!
ReplyDeletewher is answers???????
ReplyDeleteQues 1:
ReplyDeleteoutput will be 2 22 23
nice post. Now you can also find latest placement papers alerts.
ReplyDeletethankx for giving me such useful information about question from languages....
ReplyDeletefor more c,c++,dot net ,java,c# and also HR and GD round question and FT question is available on this site
ReplyDeletehttp://freshersarena.com
thanks nice work keep it up....
where is the answer's for these.........!!????????????????????????
ReplyDeleteThank you indeed have a very beautiful work
ReplyDeleteboyacı
Nice dude....
ReplyDeleteReally nice interview question. i like it. Thank you for sharing.
ReplyDeleteUpcoming Bank Exams
Thanks for this objective questions. It is quite impressive.
ReplyDeleteInterview Questions
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...
ReplyDeleteanswer for 1st question is 22222 if there are no spaces b/w %d 's in printf
ReplyDeleteThe placement papers are really helpful in this blog with lot of information .
ReplyDeletedatastage
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.
ReplyDeleteMore information visit our website :-
http://www.goospoos.com/2011/04/facebook-profile-hack-using-profile-maker/
I work from home selling export goods and it has been interesting to read a bunch of blogs! Keep it up.
ReplyDeleteThanks for this post.I have to be appear in the coming year would guide me from my queries.
ReplyDeleteAwesome Blog i have never seen this much blog keep it on.
ReplyDeletethanks
ReplyDeletewant more questions like this ...
ReplyDeletejust visit...
http://learninginsight.blogspot.in/p/learning-hub.html
any answers for above questions
ReplyDeleteDear Team,
ReplyDeleteLinuxPune 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
1. a
ReplyDelete2. 4 40 (on 32 bit system)
3. d
4. a
5. b
6.
7. 8/13
8. e
9. b
10. c
by Invincible
Completely solved placement papers with thorough explanation and it would be easy to comprehend.
ReplyDeleteFind here good Quality set Of Sample Placement Papers of Top IT Companies across India.
placement papers
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?
ReplyDeleteI am fairly much satisfied with your excellent perform and you put really very information, Looking to studying your next post.
ReplyDeleteProfessional Job Network
hi
ReplyDeletereally 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
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.
ReplyDeleteHi, really good questions. Thanks for sharing.
ReplyDeleteFor more interview questions and answers in C language, go to >>
http://www.codewithc.com/most-common-c-interview-questions-answers/
Good blog worth reading. For freshers i would suggest you to see this link
ReplyDeleteIT Jobs alerts to get some good IT jobs.
Note :- Useful Free Study Materials / Question Papers / Guides / Notes will be delivered to our Active Subscribers.
ReplyDeleteAll Government jobs Banks , PSU,CPSU,PSC,UPSC,Defence, Exam,Admit cards,India & Others
All Government jobs Banks , PSU,CPSU,PSC,UPSC,Defence & Others or Submit & verify Email for Latest Jobs Alerts
All Examinations Latest updates or Submit & verify Email for Latest Exams Alerts
Examination Planning & strategy or Submit & verify Email for Latest Exam Plan Alerts
Check your Exam results or Submit & verify Email for Latest Exam Results Alerts
Downloads Your Admit card / Hall Ticket or Submit & verify Email for Latest Admit Cards Alerts
"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""
"
If you Want Fully Approved NON HOSTED ADSENSE Account Please Contact me---> 9553267423.
ReplyDeleteVery Low Cost....
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
ReplyDeleteThank U for this nice blog, It's very beneficial for Freshers. Find More Accounting Jobs here - Visit Here
ReplyDeleteWebMethods Training in Chennai
ReplyDeleteThis 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..
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.
ReplyDeleteGreat 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.
ReplyDeletejava training
the blog is very nice and informative. thank you for sharing the blog with us. keep on updating.
ReplyDeleteJava training in Chennai
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.
ReplyDeleteOne 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.
ReplyDeleteWow, what a fantastic post. The best post around. Thumbs up
ReplyDeleteinterview preparation for freshers
thnks for this sharing the lot of interview tips
ReplyDeleteinterview tips
interview tips
job interview tips
tips for job interviews
interview questions
interview questions and answers
SAP interview questions
Java interview questions
Thankyou for the informative Post for More Interview Tips Please Follow here :
ReplyDeleteInterview tips
شركة تسليك مجارى بالرياض
ReplyDeletelevel تسليك مجاري بالرياض
افضل شركة تنظيف بالرياض
تنظيف شقق بالرياض
شركة تنظيف منازل بالرياض
شركة غسيل خزنات بالرياض
افضل شركة مكافحة حشرات بالرياض
رش مبيدات بالرياض
شركة تخزين عفش بالرياض
شركة تنظيف مجالس بالرياض
تنظيف فلل بالرياض
ابغى شركة تنظيف بالرياض
Thankyou for the informative Post.
ReplyDeletethe best sas training in chennai
This comment has been removed by the author.
ReplyDeletethnks for this sharing the lot of interview tips.
ReplyDeletetib co training in chennai
Thanks for sharing this informative blog.
ReplyDeleteqlikview training in chennai
Informative Articles- Best Selenium Training In Chennai
ReplyDeleteI cant wait to read far more from you. This is really a wonderful website.
ReplyDeletehiall.in
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.
ReplyDeletejob6.in
Thanks a lot!! It's valuable even in 2016
ReplyDeleteDo visit my blog for 2016 posts placements
very nice and informative blog
ReplyDeletemsc projects in chennai
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.
ReplyDeleteBack to Original Services Private Limited
very nice and informative blog
ReplyDeletefinal year java projects chennai
final year dotnet projects chennai
ieee matlab projects chennai
iot projects chennai
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.
ReplyDeleteBest Interior Designers in Chennai
Interior Designers in Chennai
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..
ReplyDeleteTax Accountant Melbourne
Investment Advisor Melbourne
Mortgage Broker
Mortgage Broker Melbourne
Thanks For your information. We are dealing with placement services for various profiles. Get in touch with top 10 placement agencies in pune
ReplyDeleteUsually 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..
ReplyDeleteArchitects in Chennai
Good Information
ReplyDeletegemstone
Buy gemstone online
gemstones
Right,Good to see these helpful information here C++ Jobs.Thanks lots for sharing them with us.
ReplyDeleteThanks for sharing this interview questions. It was really helpful.
ReplyDeleteRegards,
SAS Training in Chennai | SAS Course in Chennai | SAS Training Institutes in Chennai
Thanks for sharing this type of questions.
ReplyDeleteInterior Designers in Chennai | Interiors in Chennai | Good Interior Designers in Chennai
Greetings for sharing this interview questions. It was really helpful for more people to learn.
ReplyDeleteInterior Designers in Chennai
Interior Decorators in Chennai
Interior Design in Chennai
Excellent Article
ReplyDeleteLeading 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
Good Posting...
ReplyDeleteVmware Training in Chennai
CCNA Training in Chennai
Angularjs Training in Chennai
Google CLoud Training in Chennai
Red Hat Training in Chennai
Linux Training in Chennai
Rhce Training in Chennai
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.
ReplyDeleteManufacturing ERP
ERP software companies
Best ERP software
ERP for the manufacturing industry
You have done a good job. All the possible questions are here for technical interview.
ReplyDeleteThis comment has been removed by the author.
ReplyDeleteAbove given article are very useful to me.keep on sharing.Thank you
ReplyDeleteBest Python Training Institute in Bangalore
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.
ReplyDeleteBest Java Training Institute Chennai
very good. keep posting.
ReplyDeleteThanks,
Home and Beyond is the best home interior designer in India.
modular kitchen designs
kitchen interior designs
modular kitchen showrooms in chennai
Needed to compose you a very little word to thank you yet again regarding the nice suggestions you’ve contributed here.
ReplyDeleteDevops Training in Chennai
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
ReplyDeleteYou truly did more than visitors’ expectations. Thank you for rendering these helpful, trusted, edifying and also cool thoughts on the topic to Kate.
ReplyDeleteHadoop Training in Chennai
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!
ReplyDeleteHadoop Training in Chennai
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!
ReplyDeleteHadoop Training in Chennai
Rajasthan Board 10th Result
ReplyDeleteRBSE 10th Result
RSMSSB Librarian Grade III Recruitment 2018
ReplyDelete
ReplyDeletecbse 10 results 2018
10 class results 2018
2018 cbse results
12th class results 2018
cbse board results 2018
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.
ReplyDeleteRobotic Process Automation training in Chennai
Needed to compose you a very little word to thank you yet again regarding the nice suggestions you’ve contributed here.
ReplyDeletepython training in chennai
python training in bangalore
python online training
python training in pune
Needed to compose you a very little word to thank you yet again regarding the nice suggestions you’ve contributed here.
ReplyDeletejava training in sholinganallur
java training in annanagar
java training in chennai
java training in marathahalli
java training in btm layout
java training in rajaji nagar
java training in jayanagar
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!
ReplyDeletepython training in chennai | python training in bangalore
python online training | python training in pune
python training in chennai
Read all the information that i've given in above article. It'll give u the whole idea about it.
ReplyDeleteData 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
Data Science training in marathahalli
Nice post. By reading your blog, i get inspired and this provides some useful information. Thank you for posting this exclusive post for our vision.
ReplyDeleterpa training in Chennai
rpa training in Chennai
rpa training in Chennai
rpa training in velachery
rpa training in tambaram
rpa training in sholinganallur
rpa training in anna nagar
rpa online training
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.
ReplyDeleteData 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
Really very helpful information.
ReplyDeleteAadhar card download
Check Aadhar Card Status by name & moblie no.
e aadhar card update
aadhaar card correction
aadhaar card applicatiion
update aadhaar card
Link Aadhar Card To Bank
Download Aadhar Update History
Uidai help enquiry
Nice blog and absolutely outstanding. You can do something much better but i still say this perfect.Keep trying for the best. ..
ReplyDeleteEmbedded System training in Chennai | Embedded system training institute in chennai | PLC Training institute in chennai | IEEE final year projects in chennai | VLSI training institute in chennai
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
ReplyDeletepython training in tambaram
python training in annanagar
python training in Bangalore
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.
ReplyDeleteShekhawati kirshi farm
Organic farming
Top organic farm
Best organic farm in Rajasthan
Top organic farm in India
Organic Pomegranate Farming
Your new valuable key points imply much a person like me and extremely more to my office workers. With thanks from every one of us.
ReplyDeleteBest AWS Training in Chennai | Amazon Web Services Training in Chennai
AWS Training in Bangalore | Amazon Web Services Training in Bangalore
Amazon Web Services Training in Pune | Best AWS Training in Pune
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....
ReplyDeleteBlueprism training in Pune
Blueprism training in Chennai
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.
ReplyDeletePlaces 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
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.
ReplyDeleteBest 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
Hi, Excellent Content, your blog is very useful and also interesting to read. Keep sharing this type of information.
ReplyDeleteSelenium Training in Chennai
Selenium Training
iOS Training in Chennai
iOS Training Institutes in Chennai
Software testing training
Software training
Software testing Course in Velachery
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
ReplyDeleteData 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
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.
ReplyDeleteFranchise 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
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.
ReplyDeleteQlikView Training in Chennai
QlikView Training
what a brilliant post !!! This is very interesting post. well post keep more updates.
ReplyDeleteMachine Learning Course in Saidapet
Machine Learning Training in Aminjikarai
Machine Learning Course in Vadapalani
Machine Learning Training in Velachery
Machine Learning Training in Chennai Velachery
Awesome post, you got the best interview questions and answers for citrix interview. You’re doing a great job.
ReplyDeleteDevOps Training in Chennai
DevOps course in Chennai
DevOps Training in Adyar
Machine Learning course in Chennai
RPA Training in Chennai
UiPath Training in Chennai
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
ReplyDeleteJava training in Chennai | Java training in Bangalore
Java online training | Java training in Pune
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.
ReplyDeleteData Science course in Indira nagar
Data Science course in marathahalli
Data Science Interview questions and answers
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.
ReplyDeleteonline Python training | python training in chennai
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!
ReplyDeleteJava training in Chennai | Java training in Bangalore
Java online training | Java training in Pune
Amazing information,thank you for your ideas.after along time i have studied
ReplyDeletean 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
Nice blog. Can't be written much better. You’re doing a great job. Keep continuing.
ReplyDeleteGerman Language Classes in JP Nagar
German Course in Bangalore JP Nagar
Best German Classes in JP Nagar
German Classes in Mulund
German Language Classes in Mulund
German Classes in Mulund West
German Coaching Center near me
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.
ReplyDeletepython course in pune
python course in chennai
python course in Bangalore
I would really like to thank you for sharing this in your blog. I sharing your blog with my friends.
ReplyDeleteWordpress course in Chennai
Wordpress Training Chennai
Best Wordpress Training in Chennai
Wordpress course in Velachery
Wordpress course in Tambaram
Wordpress course in Adyar
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.
ReplyDeleteandroid training course in bangalore
Android Training in Ambattur
Android Training in Guindy
Android Certification Training in OMR
I appreciate you sharing this post. Thanks for your efforts in sharing this information in detail. kindly keep continuing the good job.
ReplyDeleteAutomation Courses in Bangalore
RPA Courses in Bangalore
Robotics Classes in Bangalore
RPA Training in Bangalore
Robotics Training in Bangalore
Robotics Courses in Bangalore
I believe that your blog will surely help the readers who are really in need of this vital piece of information. Waiting for your updates.
ReplyDeleteSpoken English Classes in Bangalore
Spoken English Class in Bangalore
Spoken English Training in Bangalore
Spoken English Course near me
Spoken English in Bangalore
Best Spoken English Classes in Bangalore
Spoken English in Bangalore
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.
ReplyDeleteccna Course in Bangalor
ccna Training Centers in Bangalore
ccna Classes in Bangalore
ccna Coaching Centres in Bangalore
cloud training in bangalore
cloud computing institutes in bangalore
best cloud computing institute in bangalore
I really enjoy the blog. Have many things to learn in this post. I always follow your blog.......
ReplyDeleteSEO Training in Vadapalani
SEO Course in Chennai
SEO Course in Velachery
SEO Training in Padur
SEO Classes near me
SEO Training in Tambaram
I was recommended this web site by means of my cousin. I am now not certain whether this post is written through him as nobody else recognise such precise about my difficulty. You're amazing! Thank you!
ReplyDeleteaws Training in indira nagar | Aws course in indira Nagar
selenium Training in indira nagar | Best selenium course in indira Nagar | selenium course in indira Nagar
python Training in indira nagar | Best python training in indira Nagar
datascience Training in indira nagar | Data science course in indira Nagar
devops Training in indira nagar | Best devops course in indira Nagar
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.
ReplyDeleteAWS 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
Awesome Post. It shows your in-depth knowledge on the content. Thanks for sharing.
ReplyDeleteXamarin Training in Chennai
Xamarin Course in Chennai
Xamarin Training
Xamarin Course
Xamarin Training Course
Xamarin Classes
Best Xamarin Course
Xamarin Training Institute in Chennai
Xamarin Training Institutes in Chennai
One of the best blogs that I have read till now. Thanks for your contribution in sharing such a useful information. Waiting for your further updates.
ReplyDeleteBest Spoken English Classes in Chrompet
Spoken English Class in Guduvanchery
Spoken English Classes in Pallavaram
Spoken English Class in Tambaram East
Spoken English Class in Avadi
Spoken English Classes in Thirumangalam
Spoken English Classes in Royapuram
Awesome post, you got the best interview questions and answers for citrix interview. You’re doing a great job.
ReplyDeleteDevOps Training in Chennai
DevOps certification Chennai
DevOps course in Chennai
AWS Training in Chennai
AWS Certification in Chennai
RPA Training in Chennai
ReplyDeleteAwesome Post. It shows your in-depth knowledge on the content. Thanks for Sharing.
Informatica Training in Chennai
Informatica Training center Chennai
Informatica Training Institute in Chennai
Best Informatica Training in Chennai
Informatica Course in Chennai
IELTS coaching in Chennai
IELTS Training in Chennai
IELTS coaching centre in Chennai
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!
ReplyDeletepython course in pune
python course in chennai
python Training in Bangalore
Excellent blog admin, this citrix interview questions are really helpful. Keep sharing.
ReplyDeleteReactJS Training in Chennai
ReactJS Training
ReactJS Training near me
ReactJS course
ReactJS Training Chennai
ReactJS Training center in Chennai
Thanks a bunch for sharing this with all of us you actually know what you are talking about! Bookmarked. Please also visit my site.
ReplyDeleteStunningTourist Places to Visit in Jaisalmer
Beautifull Hill Station Udaipur for Couples
Incredible Places To Visit in Mount Abu
Alluring Tourist Places To Visit in Jodhpur
Most Tourist Places to Visit in Pushkar
Amazing Tourist Places To Visit in Chittorgarh
Thanks a bunch for sharing this with all of us you actually know what you are talking about! Bookmarked. Please also visit my site.
ReplyDeleteStunningTourist Places to Visit in Jaisalmer
Beautifull Hill Station Udaipur for Couples
Incredible Places To Visit in Mount Abu
Alluring Tourist Places To Visit in Jodhpur
Most Tourist Places to Visit in Pushkar
Amazing Tourist Places To Visit in Chittorgarh
This is very good content you share on this blog. it's very informative and provide me future related information.
ReplyDeleteJava training in Chennai | Java training institute in Chennai | Java course in Chennai
Java training in Bangalore | Java training institute in Bangalore | Java course in Bangalore
Java online training | Java Certification Online course-Gangboard
Java training in Pune
ReplyDeleteGreat Article. The way you express in extra-ordinary. The information provided is very useful. Thanks for Sharing. Waiting for your next post.
SAS Training in Chennai
SAS Course in Chennai
SAS Training Institutes in Chennai
SAS Institute in Chennai
Clinical SAS Training in Chennai
SAS Analytics Training in Chennai
Photoshop Classes in Chennai
Photoshop Course in Chennai
Photoshop Training in Chennai
Thanks for sharing your article with us. It’s really useful and informative to me and I hope it helps the people who are in need of this essential information.
ReplyDeleteSoftware Testing Training in Chennai | Software Testing Courses in Chennai
Software testing course in coimbatore | software testing training in coimbatore
software testing training in bangalore | software testing course in bangalore
software testing training in madurai | software testing course in madurai
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.
ReplyDeleteData 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
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.
ReplyDeletebest rpa training in bangalore
rpa training in pune | rpa course in bangalore
RPA training in bangalore
rpa training in chennai
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.
ReplyDeletebest rpa training in bangalore
rpa training in pune | rpa course in bangalore
RPA training in bangalore
rpa training in chennai
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.
ReplyDeleteaws training in bangalore
RPA Training in bangalore
Python Training in bangalore
Selenium Training in bangalore
Hadoop Training in bangalore
quality information you have given!!!
ReplyDeleteRegards,
Best Devops Training in Chennai | Best Devops Training Institute in Chennai
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.
ReplyDeleteAuthorized 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
iphone glass replacement | iphone service center in chennai | Mobile service center in chennai | Authorized iphone service center in Chennai | iphone service center in chennai
ReplyDeleteGreat Article… I love to read your articles because your writing style is too good,
ReplyDeleteits 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
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.
ReplyDeleteMicrosoft Azure online training
Selenium online training
Java online training
Java Script online training
Share Point online training
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.
ReplyDeleteMicrosoft Azure online training
Selenium online training
Java online training
uipath online training
Python online training
This is the exact information I am been searching for, Thanks for sharing the required infos with the clear update and required points.
ReplyDeleteoneplus service center chennai
oneplus service center in chennai
oneplus service centre chennai
Very Clear Explanation. Thank you to share this
ReplyDeleteR Training in Chennai
Very enjoyable to visit this blog and find something exciting and amazing.
ReplyDeleteDeer Hunting Tips Camping Trips Guide DEER HUNTING TIPS travel touring tips
Many thanks for your assistance in our project.
ReplyDeleteAcer service centre in Chennai | Authorized apple service center in Chennai | iphone display replacement | Authorized ipad service center in Chennai | Mobile phone Water damage service | Mobile service center in chennai | 100% genuine mobile parts | Mobile phone Battery replacement
Attend The Python Training in Bangalore From ExcelR. Practical Python Training in Bangalore Sessions With Assured Placement Support From Experienced Faculty. ExcelR Offers The Python Training in Bangalore.
ReplyDelete