carolsmith62's picture
From carolsmith62 rss RSS  subscribe Subscribe

MB7-221 Practice Tests & Exam 



CertMagic.com is a place where you can find various types of MB7-221 exam certifications preparation material. CertMagic’s full range of study material for the MB7-221 exam helps you to be prepared for the MB7-221 exam fully and enter the exam centre with full confidence. We provide you easy, simple and updated study material. After preparing from the MB7-221 exam material prepared by us we guarantee you that you will be a certified professional. We guarantee that with CertMagic
MB7-221 study material, you will pass the Certification exam.

 

 
 
Tags:  MB7-221 Exams  MB7-221 Certification  MB7-221 Training  MB7-221 Practice Exams  MB7-221 Tests  MB7-221 Exam Materials  MB7-221 Download 
Views:  943
Downloads:  2
Published:  November 19, 2009
 
0
download

Share plick with friends Share
save to favorite
Report Abuse Report Abuse
 
Related Plicks
640-802 Practice Tests & Exams

640-802 Practice Tests & Exams

From: carolsmith62
Views: 2202 Comments: 0

CertMagic.com is a place where you can find various types of 640-802 exam certifications preparation material. CertMagic’s full range of study material for the 640-802 exam helps you to be prepared for the 640-802 exam full (more)

 
642-542 Practice Tests & Exams

642-542 Practice Tests & Exams

From: carolsmith62
Views: 2107 Comments: 0
CertMagic.com is a place where you can find various types of 642-542 exam certifications preparation material. CertMagic’s full range of study material for the 642-542 exam helps you to be prepared for the 642-542 exam fully and enter the exam centr (more)

 
See all 
 
More from this user
000-301 Practice Tests & Exams

000-301 Practice Tests & Exams

From: carolsmith62
Views: 789
Comments: 0

4H0-100 Practice Tests & Exams

4H0-100 Practice Tests & Exams

From: carolsmith62
Views: 599
Comments: 0

650-175 Practice Tests & Exams

650-175 Practice Tests & Exams

From: carolsmith62
Views: 635
Comments: 0

000-743 Practice Tests & Exams

000-743 Practice Tests & Exams

From: carolsmith62
Views: 677
Comments: 0

HP0-763 Practice Tests & Exams

HP0-763 Practice Tests & Exams

From: carolsmith62
Views: 604
Comments: 0

070-224 Practice Tests & Exams

070-224 Practice Tests & Exams

From: carolsmith62
Views: 436
Comments: 0

See all 
 
 
 URL:          AddThis Social Bookmark Button
Embed Thin Player: (fits in most blogs)
Embed Full Player :
 
 

Name

Email (will NOT be shown to other users)

 

 
 
Comments: (watch)
 
 
Notes:
 
Slide 1: MB7-221 Navision 4.0 C/SIDE Introduction Exam: MB7-221 Demo Edition CERT MAGIC 1 http://www.certmagic.com
Slide 2: MB7-221 QUESTION: 1 Which of the following is a valid Codeunit trigger? A. OnAfterGetRecord. B. OnPreDataItem. C. OnInitCodeunit. D. OnRun. Answer: D QUESTION: 2 The scope of a variable refers to the A. Range of values that can be assigned to the variable. B. Amount of data that a variable can store. C. Parts of the program in which the variable can be used. D. Length of time the variable can be used. Answer: C QUESTION: 3 Which of the following facilities provided by Navision will allow a Navision application to access data or functions in outside applications? A. C/OCX and OLE Automation. B. NODBC and C/FRONT. C. NODBC and C/OCX. D. C/OCX and C/APP. Answer: A QUESTION: 4 When setting up a Worksheet form used to display and enter journal entries, the AutoSplitKey property of the form must be set to Yes. What corresponding action must be performed on the form's Source Table to have those form entries correctly increment? 2 http://www.certmagic.com
Slide 3: MB7-221 A. Define the type of the last field of the primary key of the Source Table as a Line No. B. Define the type of the first field of the primary key of the Source Table as an Integer. C. Set the Permissions property of the Source Table to YES. D. Define the type of the last field of the primary key of the Source Table as an Integer. Answer: D QUESTION: 5 Which of the following statements is TRUE regarding grouping in Navision reports? A. There can multiple GroupHeader and multiple GroupFooter sections for each Data Item. B. There can only be one GroupHeader and one GroupFooter section for each Data Item. C. There can only be one GroupHeader, but multiple GroupFooter sections for each Data Item. D. There can be multiple GroupHeader, but only one GroupFooter section for each Data Item. Answer: A QUESTION: 6 A SumIndexField is a field that can be attached to a key definition. Which of the following are accurate characteristics of a SumIndexField? A. A SumIndexField can be any data type and can be attached to any key in the table. B. A SumIndexField can be any data type and can only be attached to the primary key. C. A SumIndexField must be a decimal field and can be attached to any key in the table. D. A SumIndexField must be a decimal field and can only be attached to the primary key. Answer: C QUESTION: 7 Which of the following is an invalid constant value for a variable (or field) of type text? 3 http://www.certmagic.com
Slide 4: MB7-221 A. "Wally Wallace". B. '12:30 AM'. C. ' '. D. 'Wally Wallace'. Answer: A QUESTION: 8 Which of the following statements is true regarding C/AL programming? A. It can be found in object areas known as "events". B. It can be found in any Navision application object. C. It is based on the C# programming language. D. It requires that each line be identified by line number. Answer: B QUESTION: 9 Which of the following is NOT a true statement regarding reports in Navision? A. Reports can be non-printing. B. Reports must be bound to a single table. C. Report Data Items can be indented to designate hierarchy. D. A report can include a form that runs before the actual report begins execution. Answer: B QUESTION: 10 Select the item that represents characteristics of an OCX control when used with Navision. A. Can be placed on a form, like a TextBox control. B. A small, outside application that can read data from Navision. C. A small, outside application that you can call from within Navision. D. Allows Navision to use C/ODBC to read Microsoft Access?data files. 4 http://www.certmagic.com
Slide 5: MB7-221 Answer: C QUESTION: 11 Which two methods can be used to designate fields to be totaled in a Navision report? A. Set the TotalFields property or set the GroupTotalFields property. B. Set the TotalFields property or use the CurrReport.CREATETOTALS command. C. Set the GroupTotalFields property or use the CurrReport.CREATETOTALS command. D. Set the GroupTotalFields property or use the CurrReport.CREATEGROUPS command. Answer: B QUESTION: 12 The following code uses two variables: CodeNum which is a Code type, and TextNum which is a Text type. Which of the following constants could be used in both places indicated in the following code, so that the message will be displayed: TextNum:= consyant; CodeNum := constant; IF CodeNum = TextNum THEN MESSAGE('This message is displayed'); A. 'Abc123'. B. 'ABC123'. C. 'abc123'. D. ' ABC123 '. Answer: B QUESTION: 13 What two properties would you change to ensure that a button control on a form remains in the same relative position on the form if the form is resized? A. HorzGlue and VertGlue. B. XPos and Ypos. C. HorzDock and VertDock. D. HorzAlign and VertAlign. 5 http://www.certmagic.com
Slide 6: MB7-221 Answer: A QUESTION: 14 In the Dataport field designer, the list of source expressions should be in what order? A. Ordered by data type (integer, decimal, text, ...). B. Same order as the information in the File. C. Same order as the fields in the Table. D. Alphabetical order. Answer: B QUESTION: 15 What is the name of the designer used to customize a MenuSuite? A. Navigation Pane Designer. B. Menu Designer. C. Item Designer. D. Form Designer. Answer: A QUESTION: 16 Which of the following is not a logical operator? A. OR. B. NOT. C. MOD. D. AND. Answer: C QUESTION: 17 6 http://www.certmagic.com
Slide 7: MB7-221 A table description contains the following: A. Data and Keys. B. Properties, Data, Fields, and Keys. C. Properties, Triggers, Fields, and Keys. D. Names, Fields, Keys, and Forms. Answer: C QUESTION: 18 Using standard navigation in Navision, pick the two options to open a new card from a list form. A. Pressing the F11 key or selecting the Card menu item. B. Pressing Shift+F5 or selecting the Card menu item. C. Pressing Shift+F5 or selecting the Navigate menu item. D. Pressing the F11 key or selecting the Navigate menu item. Answer: B QUESTION: 19 Assume that there are three Date type variables with the following values: Date1 is 5/3/01 Date2 is 4/28/01 Date3 is 5/12/01 What is the type and value of the followingexpression? Date3 + (Date2 - Date1) A. Type = Date, Value = 5/17/01. B. Type = Integer, Value = -5. C. Type = Date, Value = 5/7/01. D. Not a valid expression, since Dates cannot be added. Answer: C QUESTION: 20 A Checkbox control must be bound to a field or other expression of which data type? 7 http://www.certmagic.com
Slide 8: MB7-221 A. Boolean. B. Check. C. BLOB. D. Binary. Answer: A 8 http://www.certmagic.com

   
Time on Slide Time on Plick
Slides per Visit Slide Views Views by Location