The following SAS program is submitted:
data test;
set sasuser.employees;
if 2 le years_service le 10 then
amount = 1000;
else if years_service gt 10 then
amount = 2000;
else
amount = 0;
amount_per_year = years_service / amount;
run;
Which one of the following values does the variable AMOUNT_PER_YEAR contain if an employee has been with the company for
one year?
A. 0
B. 1000
C. 2000
D. . (missing numeric value)
Click Comment link to get answer
The Answer will be D as amount will be 0 and the per_year should be calculated only if amount ne 0. Asuming the variable name are valid.
ReplyDeleteThat's truth!
Delete1/0 will not be zero but a missing value
Deletei agree...the answer is 0.
ReplyDeleteAnswer is D.
ReplyDeleteAnswer is D.
ReplyDeleteAnswer is zero, but in Version 9 & above the variable length is not a problem, it can be more than 8 chars.
ReplyDeleteAnswer is D (missing)
ReplyDeleteNaming of the variable doesn't impose any restriction it can be more than 8
Answer is D
ReplyDeleteans is 'D'
ReplyDeleted corect
ReplyDeleteanswer D
ReplyDeleteThe variable name can be upto 32 chars long.
ReplyDeleteanswer is D
ReplyDeleteANS D
ReplyDeleteMaximum Length of User-Supplied SAS Names SAS Language Element Maximum Length
ReplyDeleteArrays 32
CALL routines 16
Catalog entries 32
DATA step statement labels 32
DATA step variable labels 256
DATA step variables 32
DATA step windows 32
Engines 8
Filerefs 8
Formats, character 31
Formats, numeric 32
Functions 16
Generation data sets 28
Informats, character 30
Informats, numeric 31
Librefs 8
Macro variables 32
Macro windows 32
Macros 32
Members of SAS data libraries (SAS data sets, views, catalogs, indexes) except for generation data sets 32
Passwords 8
Procedure names (first 8 characters must be unique, and may not begin with "SAS") 16
SCL variables 32
Variable name is not a problem,
1. Since division by zero, Mathematical operations could not be performed
2. The results of the operations have been set to missing values.
I Agree
DeleteThis is rite answer for the question.
Deleteas service is 1 so the calculation is like 1/0 is cant divided so value should be missing.
years_service can take the value of 1 as it says if 2 le years_service le 10. Due to which amount gets a value of 1000 and the correct answer should be 0.001
ReplyDeletefully agree , therefore answer should be A
Deleteits not years_service less than equal to 2.the statement equivalent to 2 is less than equal to years_service.
DeleteAnswer is D. The condition 2 le years_service le 10 translates to years_service is greater than or equal to 2 and less than or equal to 10. This condition is false so is the second one where years_service is not greater than 10. Hence amount is assigned a value of 0. The result of any number divided by zero is undefined and the following is written to the log. NOTE: Division by zero detected at line 65 column 33.
Deleteamount_per_year=.
years_service=1 amount=0 amount_per_year=. _ERROR_=1 _N_=1
NOTE: Mathematical operations could not be performed at the following places. The results of the operations have been set to missing values.
lmfao
DeleteAnswer is D
ReplyDeleteD
ReplyDeleteAnswer is D because anything divided with 0 is infinite in answer it is not given hence answer is missing
ReplyDeleteAnswer is D as Infinite will not be given
ReplyDeleteD
ReplyDeleteThe answer is D
ReplyDeletewhat's the correct answer
ReplyDeletethe correct answer is A. Its correct.here they asked the question logically.
DeleteD
ReplyDeleteThe answer is D
ReplyDeleteM ASC,
ReplyDeleteThe answer is D. Missing Value.
ReplyDeleteSAS Log:
NOTE: Mathematical operations could not be performed at the following places. The results of the operations have been set to missing values.
S.D.
d
ReplyDeleteAnswer is D
ReplyDeleteD
ReplyDeleteA
ReplyDeleteAnswer id D
ReplyDelete- Hema Kolte
D
ReplyDeleteD
ReplyDeleteD
ReplyDeleteD
ReplyDeleteAnswer is D
ReplyDeleteD
ReplyDeleted
ReplyDeleteits d
ReplyDeleteD
ReplyDeleteCorrect Answer is D becoz 1000/0 is not defined so missing value will come
ReplyDeleted.
ReplyDeleteD
ReplyDeleteMy Answersheet says this;
ReplyDeleteC. 2000
D. (missing numeric value)
Answer: C
What is the logic to choose C?
I followed the answer D many times, and can not agree with C.
Sakar Sham
answer is D
ReplyDeleteExam Advise.
ReplyDeleteFolks:If had answered 2 more correct I would have passed.
Panicked as I took too much time and little nervous too.
only 20 percent questions were similar to these.
Some are harder .I will sit on August 2nd week again.
Hey, I ll be appearing on 11 august. could you please tell me if there's any negative marking or not ?
DeleteSome more tips for EXAM:
ReplyDeleteGo online and try to find more questions or demos, I found 3 questions that was easy to answer as I lapse the time, did not answer them correctly. If you find any virtual exam free try those.
THOSE WHO GETS ANSWER JUST TESTING ON SAS PROGRAM WILL NOT PASS,
NEED YOUR BASIC SKILL AND LOGIC & CHOOSE THE RIGHT ONE. IF THE SAME QUESTION BUT ASKED LITTLE DIFFERENTLY YOU NEED TO KNOW HOW TO FIND THE SOLUTION.
CHECK THIS:
ReplyDeletethis web site lets you do virtual exam.
Exactly the same as this one.
http://www.esnips.com/doc/17138a3d-ddc9-4708-b3ab-4e24c7259590/A00-201
FOlks SHARE information on this Page.
i wrote exam it was too tough it includes not only these things and more abt csv. excel files importing printing and some more. if i get one correct ans now i might be certified pgrmr but i got 64%. bcz of qns on csv excel etc...
ReplyDeleteToo bad pal, I got only 59 and sitting on sep 2nd week.
ReplyDeleteSome questions are too long and in two different pages makes harder.
If you can not answer the question, mark it and move to another question. At the end you can redo it. If you can not manage time, you may panic. I have exam phobia so need more time management and concentration, using logic if not sure is the best way to be close to get passed.
Pal I am busted too,
ReplyDeleteThis is not a fair exam Exactly the same shit happened to me .
How to Co-relette with ODS.Html file and
office2k, excel, winxp and something.
CSV- 3 question
date , mohth and years separately numeric or character?
3 excel import and lib file.
did we do that.
Man can not sit more than 3 times , it is 2nd.
It should be from all the chapters?
Too tough and could not relate. Some as we study but no logic to relate with the answer they have.
bairagi.kailo@yahoo.com
Folks:
ReplyDeleteLet me give you an example, there may be distraction and you focusing on it than the content.
Example: if it was asking the sas lib but giving you the excel file and the sheet name.
Choose the one which can be used as sas library and that can be relate to excel file. Again when you trying to relate with the excel file but sas lib reference itself is not correct, in that case do not try to relate with the excel program, choose the which can be the sas lib ref.
missing value I tried it on SAS 9.2... answer D
ReplyDeleteno doubt!
d
ReplyDeleteD
ReplyDeletei am appearing for the exam? does similar kind of Q's will be there in exam? or totally diff....
ReplyDelete(Originally above "In addition:" I typed a longer text that disappeared.)
ReplyDeleteOn 2nd of March I passed at first try, and I feel very grateful for the existence of this website! It helped me a lot, and in turn I want to give SOME ADVICE to future participants:
- As I fully used this website (trying to solve everything, reading funded comments) I felt helped in more than half of the exam cases.
- 10 additional questions (with answer) can be found at the Support SAS website, a couple exam questions were similar to these.
- I have seen a comment that the real exam is a lot more difficult than these questions. For 10-15 questions it was totally true, but these questions dealt with a.o. Excel worksheets, ODS and describing type of errors. So pay attention to this as well.
- The probability that a beginning SAS Programmer gets the exam 100% right, is extremely small. Keep this in mind and choose the most logical option for a very difficult question.
- Good luck! Just believe it is possible to pass; even towards the end of the exam I didn't have the impression that I would have passed yet but in the end I had 54/70 correct answers.
Thanks for the info can u pls give some q's which appeared ?
Deletewhat books did u refer etc .
To get an idea of the questions: please take a look at all examples on this website. Also look at the Support SAS Website, there you can find 10 exam questions from which most came back in a VERY similar form! Also pay special attention to Excel worksheets, ODS and describing type of errors. Insight is important, but details too.
DeleteI did not use a manual, so cannot refer to a book; I used an introductory course (+/- 100pg) as provided by our university (KU Leuven in Belgium), this website, some pages on Support SAS and an online paper about arrays/do loops.
Good luck!
D
ReplyDeleteD
ReplyDeleteAnswer is D
ReplyDeleted
ReplyDeleteGuys can we find a book having some practice exams?????
ReplyDeleteBelow given is a link for sas base exam questions also I have posted a link for sas practice exam at the bottom. I think this is some Japanese site. But is worth it.
Deletehttp://wenku.baidu.com/view/1e480ef80242a8956bece462.html
I would like to thank you to this Blog. I just pass the exam last week because of the information on this site. I can't say enough how much I appreciated. But I can say without this site, I won't be able to pass the exam. Thank you everyone.
ReplyDeleteD
ReplyDeleteQuestion is beyond retarded. Aside from things like:
ReplyDeleteamount_per_year implies the equation should be amount / years_service (not the other way around)
Also, if they are going to set years_service = 1, but not actually write in the code years_service = 1; - then you are going to get missing value. However, I'm almost 100% sure, they expected the reader to just assume it was in there (as that's the question it was asking), then amount = 0 since years_service < 2 => 1/0 = undefined.
This test was so easy and full of retarded questions a 3rd grader with some logic could figure out
Answer shud be :D
ReplyDeleteD
ReplyDelete222 data zaksas.test;
ReplyDelete223 put "After Compilation " _all_;
224 set zaksas.emp;
225 if 2 le yr le 10 then
226 amount = 10;
227 else if yr gt 10 then
228 amount = 20;
229 else
230 amount = 0;
231 amount_per_year = yr / amount;
232 put "After execution " _all_;
233 run;
After Compilation Name= yr=. Score=. amount=. amount_per_year=. _ERROR_=0 _N_=1
After execution Name=A yr=11 Score=70 amount=20 amount_per_year=0.55 _ERROR_=0 _N_=1
After Compilation Name=A yr=11 Score=70 amount=. amount_per_year=. _ERROR_=0 _N_=2
NOTE: Division by zero detected at line 231 column 22.
After execution Name=B yr=1 Score=20 amount=0 amount_per_year=. _ERROR_=1 _N_=2
Name=B yr=1 Score=20 amount=0 amount_per_year=. _ERROR_=1 _N_=2
After Compilation Name=B yr=1 Score=20 amount=. amount_per_year=. _ERROR_=0 _N_=3
After execution Name=C yr=20 Score=30 amount=20 amount_per_year=1 _ERROR_=0 _N_=3
After Compilation Name=C yr=20 Score=30 amount=. amount_per_year=. _ERROR_=0 _N_=4
NOTE: Mathematical operations could not be performed at the following places. The results of the
operations have been set to missing values.
Each place is given by: (Number of times) at (Line):(Column).
1 at 231:22
NOTE: There were 3 observations read from the data set ZAKSAS.EMP.
NOTE: The data set ZAKSAS.TEST has 3 observations and 5 variables.
NOTE: DATA statement used (Total process time):
real time 0.15 seconds
cpu time 0.01 seconds
This comment has been removed by the author.
ReplyDeleteD, the missing numeric value.
ReplyDeleteHi I got my certification today and I am very very thankful to this site.
ReplyDeleteQ1.)
how many datasets are there in the following:
1. DATA
2. _2Two
3. 2-Two
4. Two
5. Two_
6. _Two_
Options:
A.) 2
B.) 3
C.) 4
4.) 6
4 as the 2-two does not follow sas naming convention rule.
DeleteAnother Question:
ReplyDeleteName: Price:
Hulful 12.99
Bub 8.49
Steve 11.99
sum 12.9
DATA work.Sam;
Input ;
if group = 'Hulful' then group = 'A';
Else if Price ge 12.99 then group = 'C';
Else if price lt 8.99 then group = 'B';
run;
Options:
A.) Hulful = A
Bub = . (missing)
B.) Hulful = C
Bub = B
C.) Hulful = A
Bub = B
D.) Hulful = C
Bub = . (missing)
This comment has been removed by the author.
DeleteJust passed the exam, this question 100 percent same words, thanks for posting this questions...everyone, rather than searching for the answers, work it out....
DeleteB)
Deleteans b
DeleteD
ReplyDeleteAtleast 20 to 30 questions from these examples will come...
ReplyDeleteI am sending you exam questions.
1. If you have 3 excel sheets how will you refer it in the libname statement.
2. In the mdy(dd, mm, yy) function, dd="01" mm=04 yy=2001 then what would be the output?
3. what are the file extensions that cant be used with excel ...1. winxp 2. cvsall
1,lib name relate to the directory files locate, not to files.
Delete2, sas number since jan1,1960
3, sas dat
Answer: D
ReplyDeleteTry the below problem:
http://sascert3.blogspot.com/2013/03/base-sas-example-question-11.html
Good luck!
D
ReplyDeleteD
ReplyDeleteis there a forum where we can discuss some SAS Base exam questions. i want to discuss some questions that i dont understand
ReplyDeleteA raw data file is listed below.
ReplyDelete----|----10---|----20---|----30
son Frank 01/31/89
daughter June 12-25-87
brother Samuel 01/17/51
The following program is submitted using this file as input.
data work.family;
infile file-specification;
run;
Which INPUT statement correctly reads the values for the variable BIRTHDATE as SAS date values?
A. input relation $ first_name $ birthdate date9.;
B. input relation $ first_name $ birthdate mmddyy8.;
C. input relation $ first_name $ birthdate : date9.;
D. input relation $ first_name $ birthdate : mmddyy8.;
D
DeleteC
ReplyDeletehttp://wenku.baidu.com/view/325bf9333968011ca3009169&clickSort=download
ReplyDeleteThis link has SAS base practice exam questions
D?
ReplyDeleteThank you so much for this blog. It helped me a lot for my SAS base exam.
ReplyDeleteNow I am preparing for the advanced exam and wondering if someone know any good blog like this that can help.
Thanks again.
D.
ReplyDeleteD.
ReplyDeleteSo some of you have said that a portion of these will be on the test. Do you mean these exact questions or similar ones with different words/numbers thrown in?
ReplyDeleteD
ReplyDeleted
ReplyDeleted
ReplyDeleted
ReplyDeleted
ReplyDeleted
ReplyDeleted
ReplyDeleteFor latest and updated SAS certification dumps in PDF format. contact us at completeexamcollection@gmail.com.
ReplyDeleteRefer our blog for more details: http://completeexamcollection.blogspot.in/2015/12/sas-certification-dumps.html
Thanks for sharing this great article! That is very interesting I love reading and I am always searching for informative information like this.Visit: base
ReplyDeleteI agree others who were mentioned above and i got answer D as when i am executing this program.
ReplyDeleteSas Training in Chennai
Very useful and informative blog and article , thank you for sharing with us keep posting selenium training,selenium online training,selenium training in bangalore, selenium job oriented training in bangalore
ReplyDeleteA nice article here, i think that people who have grown up with the idea of using computers are showing more responsibility towards writing posts that are thoughtful, do not have grammar mistakes and pertinent to the post..
ReplyDeleteSAS Training in Chennai
D
ReplyDeleteThe great service in this blog and the nice technology is visible in this blog. I am really very happy for the nice approach is visible in this blog and thank you very much for using the nice technology in this blog
ReplyDeleteSAS Online Training
Hi, Thanks for sharing the information. These information will really help us a lot.
ReplyDeleteHI . thanks for this blog . please click here
ReplyDeleteonline baccarat
บาคาร่า
baccarat
thank for post is reply....
ReplyDeletegclub online
gclub
goldenslot
Croma Campus is the main SAS Training in Noida association giving modern direction with a distinction. The association gives direction as well as takes fitting consideration that the preparation is significant. Croma Campus gives training on SAS in the most reasonable way.
ReplyDeleteIt is amazing and wonderful to visit your site.Thanks for sharing this information,this is useful to me...
ReplyDeleteSEO Company in India
Thanks for posting the question on your post.
ReplyDeleteISO certification agencies in India
d is correct.
ReplyDeleteSAS Training in Chennai
fhg
ReplyDeleteThanks for sharing good information. sas training institute with placement
ReplyDeletein Ameerpet and Hyderabad.
Online MBAs are the future of Indian higher education. Gain an edge with a short term management program at a fraction the time, energy and financial costs. For short term management program, there is no point in teaching about “Principles of Managements”! The case studies are more important for quick learning. So, Micromba skills has proven micro-case studies from Local,Regional,National and International business world. To know more visit:
ReplyDeleteonline mba in india
online mba programs in india
I really like you post good blog,Thanks for your sharing.
ReplyDeleteแตกใน xxx
Thank You for sharing such a interesting post, keep updating......
ReplyDeleteSas Training
D
ReplyDeleteThank you for your post. This is excellent information. It is amazing and wonderful to visit your site.
ReplyDeleteSAP Consulting Services in usa
Thank you for your post. This is excellent information. It is amazing and wonderful to visit your site.
ReplyDeletesas analytics training
Thank you for your post. This is excellent information. It is amazing and wonderful to visit your site. sap corporate social responsibility services
ReplyDeleteBlazingminds is best IT training institute Gurgaon and learn angularjs training in gurgaon with job placement support. Blazingminds Learning best facilities and lab provides then best option for you join us .
ReplyDeleteielts coaching in gurgaon
ReplyDeleteielts coaching in gurgaon
ReplyDeleteThanks for sharining your post
ReplyDeleteHere is STUCORNER the Best Graphic designing training institute in Laxmi Nagar you can visit their site:
Best Graphic designing Training institute
Best photoshop Training institute
Best Mobile application Training institute
Useful information. Lucky me I discovered your website accidentally,I bookmarked it.
ReplyDeleteFIND YOUR JOBS HERE : Hyseplacements
Thanks for posting .
ReplyDeleteGuidewire Online Training
SAP Online Training
BlockChain Online Training
SAP BWBI Online Training
nice post..SAP Business One in Chennai
ReplyDeleteSap Business One Company in Chennai
Sap Business One Partners in chennai
SAP Business One Authorized Partners in Chennai
This comment has been removed by the author.
ReplyDeleteGreat article thank you.
Big Data Hadoop Training in Hyderabad
Data Science Course in Hyderabad
AngularJS Training in Hyderabad
Advanced Digital Marketing Training Institute in Hyderabad
awesome article thanks for sharing
ReplyDeletedevops online training
python online traning
power bi online traning
machine learning online course
Good article about SAS 1.Thankyou for sharing the information.
ReplyDeleteAWS Training in Hyderabad
Digital Marketing Training in Hyderabad
Big Data Hadoop Training in Hyderabad
Digital Marketing Course in Hyderabad
Very Informative, Thanks for Sharing.
ReplyDeleteDigital Marketing Courses in Hyderabad
SEO Training in Hyderabad Ameerpet
SAP ABAP Training Institute in Hyderabad
Salesforce CRM Training in Hyderabad
I am really happy to say it’s an interesting article to read. I learn new information from your article you are doing a great job. Keep it up
ReplyDeleteAffiliate Marketing Training in Hyderabad
Online Reputation Management in Hyderabad
Email Marketing Course in Hyderabad
E-Commerce Marketing Training in Hyderabad
Best stuff you have got and you keep update all of us.
ReplyDeletePython Training in Gurgaon
Python Institute in Gurgaon
Web Designing Course in Gurgaon
Web Designing Institute in Gurgaon
Great Article. Thanks for sharing info.
ReplyDeleteDigital Marketing Course in Hyderabad
Top Digital Marketing Courses with the live projects by a real-time trainer
line Digital Marketing Courses in Hyderabad
SEO Training in Hyderabad
Best sofa sets store and Gurgaon. You can also buy study chair from krishnafurniture.
ReplyDeletePlatform for finding pigeon forge vacation rentals and other
ReplyDeletetop vacation rentals in colorado USA
Find the Best Islamorada Vacation Rentals Holiday Fort Luaderdale vacation rentals
ReplyDeleteThank you for sharing such great information very useful to us.
ReplyDeletePython Training in Gurgaon
One of the best famous
ReplyDeletelove marriage specialist panditji in Delhi
Visit https://www.studyanalytics.in/sas-training-coaching-institutes-bangalore/ for SAS certification. Really helped me in clearing the SAS certification.
ReplyDeleteThanks for all the information....
ReplyDeleteISO training in Abu Dhabi
Investment in dubai
infomative content
ReplyDeleteCSUF student
Thanks For Sharing this Post. Interested In Python!! Click here for the Best Python Training Institute in Gurgaon https://www.acil.in/python-training-in-gurgaon/
ReplyDeleteIt’s Seems To Me God Gave You Awesome Writing Skills!
ReplyDeletebaixar video facebook
Thanks for providing such a nice information. this post is really helpful. It takes strengths to build for the future.. it was really nice that you decided to share this information.Life Insurance
ReplyDeleteThe best forum that i have never seen before with useful content and very informative.
ReplyDeletePega Training
RPA Training
D
ReplyDeleteNIntendo eshop gift cards code a free way to get codes. Don't forget to visit this link this is a unlimited opportunity
ReplyDeleteHawaii Vacation Rentals By Owner
ReplyDeleteArizona Vacation Rentals By owner
Pennsylvania Vacation Rentals By Owner
New York Vacation Rentals By Owner
California Vacation Rentals By Owner
Best North Carolina Vacation Rentals
South Carolina Vacation Rentals
Cape Cod Vacation Rentals
Florida Vacation Rentals By Owner
Vanskeligheter( van bướm ) vil passere. På samme måte som( van điện từ ) regnet utenfor( van giảm áp ) vinduet, hvor nostalgisk( van an toàn ) er det som til slutt( van bướm tay gạt ) vil fjerne himmelen.
ReplyDeleteI am so happy after read your blog. It’s very useful blog for us.
ReplyDeleteArtificial intelligence Corporate training in Tanzania
Thanks for sharing this valuable information and we collected some information from this post.
ReplyDeletePython Corporate training in Nigeria
Very handy blog keep blogging. Find affordable data science training in Gurgaon
ReplyDeletehttp://www.crystalanalytix.com/
Nicely Explained, Thanks for sharing!
ReplyDeletePrivate Autopsy San Diego
Postmortem Neurological Diagnosis
nice
ReplyDeleteISO Certification Consultants
ReplyDeleteISO Certification Consultants
ReplyDeleteISO Certification in Bangalore
ISO 9001 Certification Consultants
Thanks for sharing this valuable information and we collected some information from this post.
ReplyDeleteCorporate training courses for employees
Thank you so much for sharing this good post, it was so good to read and useful to improve my knowledge as updated one, keep blogging.
ReplyDeleteBase SAS Training in Electronic City
It’s really nice and meaningful. It’s really cool blog. You have really helped lots of people who visit Blog and provide them useful information. Thanks for sharing.
ReplyDeletein-house Management training
Please continue this great work and I look forward to more of your awesome posts.
ReplyDeleteCorporate training courses for employees
Check out the new updated Version of Gizmo Next and why instagram is removing likes from its page
ReplyDeleteClick Here Now
Thank you for your informative article, I have been doing research on this subject, and for three days I keep entering sites that are supposed to have what I am searching for, only to be discouraged with the lack of what I needed. Thank you again.
ReplyDeleteData Science Training in Hyderabad
Hadoop Training in Hyderabad
selenium Online Training in Hyderabad
Devops Online Training in Hyderabad
Informatica Online Training in Hyderabad
Tableau Online Training in Hyderabad
Thank you for your informative article, I have been doing research on this subject, and for three days I keep entering sites that are supposed to have what I am searching for, only to be discouraged with the lack of what I needed. Thank you again.
ReplyDeleteData Science Training in Hyderabad
Hadoop Training in Hyderabad
selenium Online Training in Hyderabad
Devops Online Training in Hyderabad
Informatica Online Training in Hyderabad
Tableau Online Training in Hyderabad
Talend Online Training in Hyderabad
Employee check in Singapore
ReplyDeleteWelcome to AK Global Investigation Company, AK Global Company is specializes in the corporate investigation in Singapore which comprises a holistic range of services. We offer the employee check-ins and background check-ins service in Singapore.
https://investigation-akg.com/
Pinnacle Learning Destination is a Trustworthy MBA Coaching in Noida to provide better guidance and study material for the MBA Coaching. To crack the MBA exam is not an easy task. Our Experts give the best teaching for scoring the highest marks in the exam.
ReplyDeleteI like this website so much it's really awesome.I have also gone through your other posts too and they are also very much appreciate able and I'm just waiting for your next update to come as I like all your posts. Google Play Generator
ReplyDeletereally i am enjoyed while reading your post and thanks for share this and continue share posts likes this
ReplyDeleteData science training in Hyderabad
ReplyDeleteThank you so much for sharing this blog, such a nice information u have posted. i'm so thankful for your blog .
core java training in hyderabad.
very useful content shared by you. Thanks for sharing
ReplyDeletepython training course in Delhi
python training course in Noida
very useful content shared by you. Thanks for sharing
ReplyDeletepython training course in Delhi
python training course in Noida
Another awesome article. Very detailed and informative. Thanks for sharing!
ReplyDeleteISO Certification Services
ISO Consultants
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.
ReplyDeletesas training
It is amazing and wonderful to visit your site.Thanks for sharing this information,this is useful to me...
ReplyDeletehttp://chennaitraining.in/base-sas-training-in-chennai/
http://chennaitraining.in/abinitio-training-in-chennai/
http://chennaitraining.in/datastage-training-in-chennai/
http://chennaitraining.in/cognos-training-in-chennai/
http://chennaitraining.in/cognos-tm1-training-in-chennai/
http://chennaitraining.in/microstrategy-training-in-chennai/
http://chennaitraining.in/qlikview-training-in-chennai/
Thank you for taking the time to provide us with your valuable information. We strive to provide our candidates with excellent care
ReplyDeletehttp://chennaitraining.in/qliksense-training-in-chennai/
http://chennaitraining.in/pentaho-training-in-chennai/
http://chennaitraining.in/machine-learning-training-in-chennai/
http://chennaitraining.in/artificial-intelligence-training-in-chennai/
http://chennaitraining.in/snaplogic-training-in-chennai/
http://chennaitraining.in/snowflake-training-in-chennai/
ReplyDeleteThis is most informative and also this post most user friendly and super navigation to all posts. Thank you so much for giving this information to me. Informative
SAS training in Chennai.
Java training in chennai | Java training in annanagar | Java training in omr | Java training in porur | Java training in tambaram | Java training in velachery
Thanks for sharing, useful blog post.
ReplyDeleteiso 9001 consultancy in Chennai
iso 9001 certification in Chennai
Informative blog stuff. Thanks for sharing.
ReplyDeleteiso 9001 consultancy in Chennai
iso 9001 certification in Chennai
best iso consultant in Chennai
Great Information! Here's a list of latest sas Jobs in bangalore
ReplyDeleteThe contents are very Informative...I like to learn more about this
ReplyDeleteJava training in chennai | Java training in annanagar | Java training in omr | Java training in porur | Java training in tambaram | Java training in velachery
Good one
ReplyDeleteInformative content....
ReplyDeleteRegards from firefighting company Abu Dhabi http://www.firestonefs.com
Hey, What's up, I'm Shivani. I'm an application developer living in Noida, INDIA. I am a fan of technology. I'm also interested in programming and web development. You can download my app with a click on the link. Talk to astrologer
ReplyDelete