Career upgrade: Learn practical AI skills for better jobs and higher pay.
Level up
All Practice Exams

100+ Free SAS NLP and Computer Vision (Viya 3.5) Practice Questions

Pass your SAS Certified Specialist: Natural Language Processing and Computer Vision Using SAS Viya 3.5 exam on the first try — instant access, no signup required.

✓ No registration✓ No credit card✓ No hidden fees✓ Start practicing immediately
Not published Pass Rate
100+ Questions
100% Free
1 / 100
Question 1
Score: 0/0

Sentence boundary detection in VTA parsing is used to:

A
B
C
D
to track
2026 Statistics

Key Facts: SAS NLP and Computer Vision (Viya 3.5) Exam

60

Exam Questions

SAS official credential page

110 min

Exam Duration

SAS official credential page

70%

Passing Score

SAS official credential page

$180

Exam Fee

SAS global exam pricing

A00-405

Exam Code

SAS certification registry

Viya 3.5

Platform

SAS exam content guide

A00-405 is a 60-question, 110-minute Pearson VUE exam priced at $180 USD with a 70% passing score. Three domains: Loading and Exploring Data (20%), NLP text patterns (42%), and CV image patterns (38%). Candidates need working knowledge of SAS Visual Text Analytics in Model Studio, LITI rule authoring, the textMining and image CAS action sets, and deepLearn for CNN training and object detection on SAS Viya 3.5.

Sample SAS NLP and Computer Vision (Viya 3.5) Practice Questions

Try these sample questions to test your SAS NLP and Computer Vision (Viya 3.5) exam readiness. Each question includes a detailed explanation. Start the interactive quiz above for the full 100+ question experience with AI tutoring.

1Which SAS Viya 3.5 application provides an interactive visual interface for building text analytics pipelines with parsing, concepts, topics, categories, and sentiment nodes?
A.SAS Studio
B.SAS Visual Text Analytics in Model Studio
C.SAS Enterprise Guide
D.SAS Visual Analytics
Explanation: SAS Visual Text Analytics is delivered as a Model Studio pipeline in SAS Viya 3.5 with linked nodes for parsing, concepts, topics, categories, and sentiment. The pipeline output can be scored on new documents.
2In SAS Visual Text Analytics, which file format is most commonly used to load a corpus of documents into a CAS table for analysis?
A.A CAS table where each row is a document with at least a unique document ID and a text variable
B.A SAS catalog containing macro variables
C.A binary FORMATS catalog
D.A SAS dataset with one row per term
Explanation: Visual Text Analytics expects a CAS table where each observation represents one document, including a unique key column and a character column holding the document text. The text column is the input to the Parsing node.
3Which CAS action set is used to load image data from a directory tree into a CAS table for computer vision pipelines in Viya 3.5?
A.deepLearn
B.image
C.table
D.fedSql
Explanation: The image action set provides loadImages, processImages, and augmentImages actions. loadImages reads images from a CAS-accessible directory and produces a CAS table with image data in a binary column plus path and label metadata.
4When you load images with image.loadImages in CAS, the resulting table contains a binary image column. What is the typical name of that column?
A._image_
B.image_data
C.binary_blob
D.img_raw
Explanation: image.loadImages returns a CAS table with a binary column named _image_ that stores the encoded image plus metadata columns such as _path_, _label_, _id_, _size_, _type_, and _dimension_.
5In Visual Text Analytics, which language attribute on a project most directly controls the dictionaries, stemmer, and part-of-speech tagger used during parsing?
A.The CAS server time zone
B.The project language setting
C.The encoding of the source file
D.The session locale of SAS Studio
Explanation: VTA projects have a language setting (English, Spanish, German, and many others) that selects the appropriate parsing dictionaries, stemmer, sentence boundary rules, and part-of-speech tagger built into Viya 3.5.
6Which Visual Text Analytics node is responsible for tokenization, sentence boundary detection, part-of-speech tagging, lemmatization, and term filtering?
A.Concepts
B.Categories
C.Parsing
D.Sentiment
Explanation: The Parsing node performs the linguistic preprocessing pipeline: it tokenizes text, finds sentence boundaries, tags parts of speech, lemmatizes terms, applies stop lists and start lists, and produces the term-by-document data used by downstream nodes.
7A start list and a stop list are both used during parsing in Visual Text Analytics. What is the key difference?
A.A start list overrides a stop list, while a stop list always wins.
B.A start list explicitly retains terms that would otherwise be dropped, while a stop list explicitly excludes terms from analysis.
C.Start lists apply to nouns only; stop lists apply to verbs only.
D.Start lists are used for sentiment; stop lists are used for topics.
Explanation: A start list forces terms to be kept (useful for retaining domain words such as product names that look like noise). A stop list forces terms to be removed (such as common function words). The two lists are independent inputs to the Parsing node.
8When you explore parsed terms in Visual Text Analytics, you see a list of "kept" terms ranked by frequency and their role. Which of the following is a typical role assigned by the parser?
A.Subject
B.Noun
C.Document
D.Topic
Explanation: The parser tags terms with parts of speech such as Noun, Verb, Adj, Adv, Prop, plus VTA roles such as Entity. Noun and Prop (proper noun) are common roles that drive downstream concept and topic discovery.
9Which VTA feature lets you treat "automobile", "car", and "vehicle" as the same concept during analysis without changing the source documents?
A.Start list
B.Custom synonym list
C.Stop list
D.Sentiment lexicon
Explanation: A custom synonym list maps surface terms to a single canonical term so that all variants share frequency counts, topic membership, and category matches. This improves recall in topic and category nodes.
10What is the term-by-document matrix in Visual Text Analytics?
A.A matrix with one row per term and one column per document, with cell values representing weighted term occurrences
B.A matrix of cosine similarities between documents
C.A matrix of confusion outcomes from a category classifier
D.A matrix of pixel intensities for image documents
Explanation: The term-by-document matrix has terms as rows and documents as columns. Cell values are typically weighted counts (TF, IDF, or log-entropy weights). It is the input to the SVD that produces topics.

About the SAS NLP and Computer Vision (Viya 3.5) Exam

The SAS Certified Specialist: Natural Language Processing and Computer Vision Using SAS Viya 3.5 (A00-405) credential validates the ability to load and explore text and image data, identify text patterns using SAS Visual Text Analytics and LITI concept rules, build topic and category models, score sentiment, and design CNN-based image classification and object detection models in CAS deepLearn.

Questions

60 scored questions

Time Limit

110 minutes

Passing Score

70%

Exam Fee

$180 USD (SAS / Pearson VUE)

SAS NLP and Computer Vision (Viya 3.5) Exam Content Outline

20%

Loading and Exploring Data

Import documents into VTA, set project language, load images with image.loadImages, resize and rescale images, run augmentImages, and explore parsed term roles, sentence boundaries, and term-by-document structure.

42%

Identifying Text Patterns Using NLP

Author LITI rules (CLASSIFIER, CONCEPT, CONCEPT_RULE, REGEX, SEQUENCE, PREDICATE_RULE) with SENT and DIST_n predicates; tune topic discovery via SVD with TF-IDF and log-entropy weights; build boolean and supervised category models; score sentiment with PROC SENTIMENT, polarity classes, negation handling, and feature-level sentiment; train RNN/LSTM text classifiers with embeddings; score with PROC TMSCORE.

38%

Identifying Image Patterns Using Computer Vision

Build CNN topologies via deepLearn.buildModel and addLayer (convolution, padding, pooling, batch norm, dropout, fully connected, softmax); train with dlTrain (ADAM, SGD, learning rate, weight decay, augmentation); score with dlScore; apply transfer learning with ResNet-50, VGG-16, and MobileNet; design object detection with YOLO and Faster R-CNN, anchor boxes, NMS, IoU, and mAP; deploy via the astore action set.

How to Pass the SAS NLP and Computer Vision (Viya 3.5) Exam

What You Need to Know

  • Passing score: 70%
  • Exam length: 60 questions
  • Time limit: 110 minutes
  • Exam fee: $180 USD

Keys to Passing

  • Complete 500+ practice questions
  • Score 80%+ consistently before scheduling
  • Focus on highest-weighted sections
  • Use our AI tutor for tough concepts

SAS NLP and Computer Vision (Viya 3.5) Study Tips from Top Performers

1Spend the most time on the NLP domain (42%) since it has the largest weight.
2Practice writing LITI rules by hand: CLASSIFIER, CONCEPT_RULE with SENT and DIST_n, and REGEX for stylized strings.
3Know the math behind topic discovery: SVD on a weighted term-by-document matrix with TF-IDF and log-entropy weights.
4Build at least one CNN end to end in deepLearn (buildModel, addLayer, dlTrain, dlScore) and one transfer-learning model on ResNet-50 or MobileNet.
5Memorize the difference between single-stage detectors (YOLO) and two-stage detectors (Faster R-CNN), plus IoU, mAP, and NMS.
6Validate every model via train/validation/test splits and use early stopping when validation loss diverges.

Frequently Asked Questions

How many questions are on the SAS A00-405 exam?

The A00-405 exam has 60 multiple-choice and short-answer questions to be completed in 110 minutes.

What score do I need to pass A00-405?

You need 70% to pass the SAS NLP and Computer Vision Specialist exam. SAS publishes the passing score on the official credential page.

How much does the SAS NLP and Computer Vision exam cost?

The exam fee is $180 USD worldwide. Academic discounts are available for students and educators through SAS.

Which platform does this exam target?

The A00-405 exam is based on SAS Viya 3.5 and tests SAS Visual Text Analytics, the textMining and image CAS action sets, and the deepLearn action set. A separate Viya 4 version exists under code A00-408.

What domains does the exam cover?

Three domains: Loading and Exploring Data (20%), Identifying Text Patterns Using NLP (42%), and Identifying Image Patterns Using Computer Vision (38%).