es T tpassport Q&A * K I J G T 3 W C N K V [ $ G V V G T 5 G T X K E G =K ULLKX LXKK [VJGZK YKX\OIK LUX UTK _KGX *VVR YYY VGUVRCUURQTV EQO

Lielums: px
Sāciet demonstrējumu ar lapu:

Download "es T tpassport Q&A * K I J G T 3 W C N K V [ $ G V V G T 5 G T X K E G =K ULLKX LXKK [VJGZK YKX\OIK LUX UTK _KGX *VVR YYY VGUVRCUURQTV EQO"

Transkripts

1 Testpassport Q&A

2 Exam : Title : TS: Microsoft.NET Framework 3.5 Windows Presentation Foundation Version : Demo 1 / 39

3 1. You are creating a Windows Presentation Foundation application by using Microsoft.NET Framework 3.5. You add a CommandBinding element to the Window element. The command has a keyboard gesture CTRL+H. The Window contains the following MenuItem control. <MenuItem Header="Highlight Content" Command="local:CustomCommands.Highlight" /> You need to ensure that the MenuItem control is disabled and the command is not executable when the focus shifts to a TextBox control that does not contain any text. What should you do? A. Set the IsEnabled property for the MenuItem control in the GotFocus event handler for the TextBox controls. B. Set the CanExecute property of the command to Highlight_CanExecute. Add the following method to the code-behind file for the window. private void Highlight_CanExecute(object sender, CanExecuteEventArgs e) { TextBox txtbox = sender as TextBox; e.canexecute = (txtbox.text.length > 0); C. Set the CanExecute property of the command to Highlight_CanExecute. Add the following method to the code behind file for the window. private void Highlight_CanExecute(object sender, CanExecuteEventArgs e) { TextBox txtbox = e.source as TextBox; e.canexecute = (txtbox.text.length > 0); D. Set the CanExecute property of the command to Highlight_CanExecute. Add the following method to the code behind file for the window. private void Highlight_CanExecute(object sender, CanExecuteEventArgs e) { MenuItem menu = e.source as MenuItem; TextBox txtbox = menu.commandtarget as TextBox; Menu.IsEnabled = (txtbox.text.length > 0); Answer: C 2. You are creating a Windows Presentation Foundation application by using Microsoft.NET Framework 3.5. You add a CommandBinding element to the Window element. The command has a keyboard gesture 2 / 39

4 CTRL+H. The Window contains the following MenuItem control. <MenuItem Header="Highlight Content" Command="local:CustomCommands.Highlight" /> You need to ensure that the MenuItem control is disabled and the command is not executable when the focus shifts to a TextBox control that does not contain any text. What should you do? A. Set the IsEnabled property for the MenuItem control in the GotFocus event handler for the TextBox controls. B. Set the CanExecute property of the command to Highlight_CanExecute. Add the following method to the code-behind file for the window. Private Sub Highlight_CanExecute(ByVal sender As Object, _ ByVal e As CanExecuteRoutedEventArgs) Dim txtbox As TextBox = CType(sender, TextBox) e.canexecute = (txtbox.text.length > 0) C. Set the CanExecute property of the command to Highlight_CanExecute. Add the following method to the code-behind file for the window. Private Sub Highlight_CanExecute(ByVal sender As Object, _ ByVal e As CanExecuteRoutedEventArgs) Dim txtbox As TextBox txtbox = CType(e.Source, TextBox) e.canexecute = (txtbox.text.length > 0) D. Set the CanExecute property of the command to Highlight_CanExecute. Add the following method to the code-behind file for the window. Private Sub Highlight_CanExecute(ByVal sender As Object, _?ByVal e As CanExecuteRoutedEventArgs) Dim Menu As MenuItem = CType(e.Source, MenuItem) Dim txtbox As TextBox = CType(Menu.CommandTarget, TextBox) Menu.IsEnabled = (txtbox.text.length > 0) Answer: C 3. You create a Windows Presentation Foundation application by using Microsoft.NET Framework 3.5. The application is named EnterpriseApplication.exe. 3 / 39

5 You add the WindowSize parameter and the WindowPosition parameter to the Settings.settings file by using the designer at the User Scope Level. The dimensions and position of the window are read from the user configuration file. The application must retain the original window size and position for each user who executes the application. You need to ensure that the following requirements are met:?the window dimensions for each user are saved in the user configuration file.?the user settings persist when a user exits the application. Which configuration setting should you use? A. private void OnClosing(object sender, System.ComponentModel.CancelEventArgs e){ Settings.Default.WindowPosition = new Point (this.left, this.top); Settings.Default.WindowSize = new Size (this.width, this.height); Settings.Default.Save(); B. private void OnClosing(object sender, System.ComponentModel.CancelEventArgs e){ RegistryKey appkey = Registry.CurrentUser.CreateSubKey("Software\\EnterpriseApplication"); RegistryKey settingskey = appkey.createsubkey("windowsettings"); RegistryKey windowpositionkey = settingskey.createsubkey("windowposition"); RegistryKey windowsizekey = settingskey.createsubkey("windowsize"); windowpositionkey.setvalue("x", this.left); windowpositionkey.setvalue("y", this.top); windowsizekey.setvalue("width", this.width); windowsizekey.setvalue("height", this.height); C. private void OnClosing(object sender, System.ComponentModel.CancelEventArgs e){ XmlDocument doc = new XmlDocument(); doc.load("enterpriseapplication.exe.config"); XmlNode nodeposition = doc.selectsinglenode("//setting[@name=\'windowposition\']"); 4 / 39

6 nodeposition.childnodes[0].innertext = String.Format("{0,{1", this.left, this.top); XmlNode nodesize = doc.selectsinglenode("//setting[@name=\'windowsize\']"); nodesize.childnodes[0].innertext = String.Format("{0,{1", this.width, this.height); doc.save("userconfigdistractor2.exe.config"); D. private void Window_Closing(object sender, System.ComponentModel.CancelEventArgs e){ StreamWriter sw = new StreamWriter("EnterpriseApplication.exe.config", true); sw.writeline("<enterpriseapplication.properties.settings>"); sw.writeline("<setting name= \"WindowSize\" serializeas=\"string\">"); sw.writeline(string.format("<value>{0,{1</value>", this.width, this.height)); sw.writeline("</setting>"); sw.writeline("<setting name= \"WindowPosition\" serializeas=\"string\">"); sw.writeline(string.format("<value>{0,{1</value>", this.left, this.top)); sw.writeline("</setting>"); sw.writeline("</userconfigproblem.properties.settings>"); sw.close(); Answer: A 4. You have created a Windows Presentation Foundation application by using Microsoft.NET Framework 3.5. The application, named EnterpriseApplication.exe, runs over the network. You add the WindowSize parameter and the WindowPosition parameter to the Settings.settings file by using the designer at the User Scope Level. The dimensions and position of the window are read from the user configuration file. The application must retain the original window size and position for users executing the application. You need to ensure that the following requirements are met:?the window dimensions for each user are saved in the user configuration file.?user settings persist when a user exits the application. 5 / 39

7 Which configuration setting should you use? A. Private Sub OnClosing(ByVal sender As Object, ByVal e _ As System.ComponentModel.CancelEventArgs) My.Settings.Default.WindowPosition = New Point(Me.Left, Me.Top) My.Settings.Default.WindowSize = New Size(Me.Width, Me.Height) My.Settings.Default.Save() B. Private Sub OnClosing(ByVal sender As Object, ByVal e As _ System.ComponentModel.CancelEventArgs) Dim appkey As RegistryKey = _ Registry.CurrentUser.CreateSubKey("Software\EnterpriseApplication") Dim settingskey As RegistryKey = _ appkey.createsubkey("windowsettings") Dim windowpositionkey As RegistryKey = _ settingskey.createsubkey("windowposition") Dim windowsizekey As RegistryKey = _ settingskey.createsubkey("windowsize") windowpositionkey.setvalue("x", Me.Left) windowpositionkey.setvalue("y", Me.Top) windowsizekey.setvalue("width", Me.Width) windowsizekey.setvalue("height", Me.Height) C. Private Sub OnClosing(ByVal sender As Object, ByVal e As _ System.ComponentModel.CancelEventArgs) Dim doc As New System.Xml.XmlDocument() doc.load("enterpriseapplication.exe.config") Dim nodeposition As System.Xml.XmlNode = _ doc.selectsinglenode("//setting[@name='windowposition']") nodeposition.childnodes(0).innertext = String.Format("{0,{1", _ Me.Left, Me.Top) Dim nodesize As System.Xml.XmlNode = _ doc.selectsinglenode("//setting[@name='windowsize']") nodesize.childnodes(0).innertext = String.Format("{0,{1", _ Me.Width, Me.Height) 6 / 39

8 doc.save("userconfigdistractor2.exe.config") D. Private Sub Window_Closing(ByVal sender As Object, ByVal e As _ System.ComponentModel.CancelEventArgs) Dim sw As New StreamWriter("EnterpriseApplication.exe.config", True) sw.writeline("<enterpriseapplication.properties.settings>") sw.writeline("<setting name=""windowsize"" serializeas=""string"">") sw.writeline(string.format("<value>{0,{1</value>", Me.Width, _ Me.Height)) sw.writeline("</setting>") sw.writeline("<setting name=""windowposition"" _ serializeas=""string"">") sw.writeline(string.format("<value>{0,{1</value>", Me.Left, _ Me.Top)) sw.writeline("</setting>") sw.writeline("</userconfigproblem.properties.settings>") sw.close() Answer: A 5. You are creating a Windows Presentation Foundation application by using Microsoft.NET Framework 3.5. The application defines a BrowserWindow class. Each instance of the BrowserWindow class allows the user to browse a Web site in a separate window. When a new browser window is opened, the user is redirected to a predefined URL. You write the following code segment. 01 private void OpenNewWindow(object sender, RoutedEventArgs e) 02 { 03 Thread newwindowthread = new Thread(new ThreadStart(NewThreadProc)); newwindowthread.start(); private void NewThreadProc() 08 { 7 / 39

9 09 10? You need to ensure that the following requirements are met:?the main window of the application is not blocked when an additional browser window is created.?the application completes execution when the main window of the application is closed. What should you do? A. Insert the following code segment at line 04. newwindowthread.setapartmentstate(apartmentstate.sta); newwindowthread.isbackground = true; Insert the following code segment at line 09. BrowserWindow newwindow = new BrowserWindow(); newwindow.show(); Application app = new Application(); app.run(newwindow); B. Insert the following code segment at line 04. newwindowthread.isbackground = true; Insert the following code segment at line 09. newwindowthread.setapartmentstate(apartmentstate.sta); BrowserWindow newwindow = new BrowserWindow(); newwindow.show(); Application app = new Application(); app.run(newwindow); C. Insert the following code segment at line 04. newwindowthread.setapartmentstate(apartmentstate.sta); newwindowthread.isbackground = false; Insert the following code segment at line 09. BrowserWindow newwindow = new BrowserWindow(); System.Windows.Threading.Dispatcher.Run(); newwindow.show(); D. Insert the following code segment at line 04. newwindowthread.setapartmentstate(apartmentstate.sta); newwindowthread.isbackground = true; Insert the following code segment at line 09. BrowserWindow newwindow = new BrowserWindow(); newwindow.show(); 8 / 39

10 System.Windows.Threading.Dispatcher.Run(); Answer: D 6. You are creating a Windows Presentation Foundation application by using Microsoft.NET Framework 3.5. The application defines a BrowserWindow class. Each instance of the BrowserWindow class allows the user to browse a Web site in a separate window. When a new browser window is opened, the user is redirected to a predefined URL. You write the following code segment. 01 Private Sub OpenNewWindow(ByVal sender As Object, _ 02?ByVal e As RoutedEventArgs) 03 Dim newwindowthread As New Thread(New _ 04 ThreadStart(AddressOf NewThreadProc)) newwindowthread.start() Private Sub NewThreadProc() You need to ensure that the following requirements are met:?the main window of the application is not blocked when an additional browser window is created.?the application completes execution when the main window of the application is closed. What should you do? A. Insert the following code segment at line 05. newwindowthread.setapartmentstate(apartmentstate.sta) newwindowthread.isbackground = True Insert the following code segment at line 09. Dim newwindow As New BrowserWindow() newwindow.show() Dim app As New Application() app.run(newwindow) B. Insert the following code segment at line 05. newwindowthread.isbackground = True Insert the following code segment at line 09. newwindowthread.setapartmentstate(apartmentstate.sta) Dim newwindow As New BrowserWindow() 9 / 39

11 newwindow.show() Dim app As New Application() app.run(newwindow) C. Insert the following code segment at line 05. newwindowthread.setapartmentstate(apartmentstate.sta) newwindowthread.isbackground = False Insert the following code segment at line 09. Dim newwindow As New BrowserWindow() System.Windows.Threading.Dispatcher.Run() newwindow.show() D. Insert the following code segment at line 05. newwindowthread.setapartmentstate(apartmentstate.sta) newwindowthread.isbackground = True Insert the following code segment at line 09. Dim newwindow As New BrowserWindow() newwindow.show() System.Windows.Threading.Dispatcher.Run() Answer: D 7. You are creating a Windows Presentation Foundation application by using Microsoft.NET Framework 3.5. The application uses several asynchronous operations to calculate data that is displayed to the user. An operation named tommorowsweather performs calculations that will be used by other operations. You need to ensure that tommorowsweather runs at the highest possible priority. Which code segment should you use? A. tomorrowsweather.dispatcher.begininvoke( System.Windows.Threading.DispatcherPriority.Normal, new OneArgDelegate(UpdateUserInterface), weather); B. tomorrowsweather.dispatcher.begininvoke( System.Windows.Threading.DispatcherPriority.DataBind, new OneArgDelegate(UpdateUserInterface), weather); C. tomorrowsweather.dispatcher.begininvoke( System.Windows.Threading.DispatcherPriority.Send, new OneArgDelegate(UpdateUserInterface), 10 / 39

12 weather); D. tomorrowsweather.dispatcher.begininvoke( System.Windows.Threading.DispatcherPriority.Render, new OneArgDelegate(UpdateUserInterface), weather); Answer: C 8. You are creating a Windows Presentation Foundation application by using Microsoft.NET Framework 3.5. The application uses several asynchronous operations to calculate data that is displayed to the user. An operation named tommorowsweather performs calculations that will be used by other operations. You need to ensure that tommorowsweather runs at the highest possible priority. Which code segment should you use? A. tomorrowsweather.dispatcher.begininvoke( _ System.Windows.Threading.DispatcherPriority.Normal, _ New OneArgDelegate(AddressOf UpdateUserInterface), weather) B. tomorrowsweather.dispatcher.begininvoke( _?System.Windows.Threading.DispatcherPriority.DataBind, _?New OneArgDelegate(AddressOf UpdateUserInterface), weather) C. tomorrowsweather.dispatcher.begininvoke( _ System.Windows.Threading.DispatcherPriority.Send, _ New OneArgDelegate(AddressOf UpdateUserInterface), weather) D. tomorrowsweather.dispatcher.begininvoke( _ System.Windows.Threading.DispatcherPriority.Render, _ New OneArgDelegate(AddressOf UpdateUserInterface), weather) Answer: C 9. You are creating a Windows Presentation Foundation application by using Microsoft.NET Framework 3.5. You create a window for the application. You need to ensure that the following requirements are met:?an array of strings is displayed by using a ListBox control in a two-column format.?the data in the ListBox control flows from left to right and from top to bottom. What should you do? A. Use a ListBox control defined in the following manner. <ListBox Name="myList"> <ListBox.ItemsPanel> <ItemsPanelTemplate> 11 / 39

13 <UniformGrid Columns="2"/> </ItemsPanelTemplate> </ListBox.ItemsPanel> </ListBox> Use the following C# code to associate the array of strings to the ListBox control. mylist.itemssource = arrayofstring; B. Use a ListBox control defined in the following manner. <ListBox Name="myList"> <ListBox.ItemsPanel> <ItemsPanelTemplate> <StackPanel /> </ItemsPanelTemplate> </ListBox.ItemsPanel> </ListBox> Use the following C# code to associate the array of strings to the ListBox control. mylist.itemssource = arrayofstring; C. Use a ListBox control defined in the following manner. <ListBox Name="myList"> <ListBox.ItemsPanel> <ItemsPanelTemplate> <WrapPanel /> </ItemsPanelTemplate> </ListBox.ItemsPanel> </ListBox> Use the following C# code to associate the array of strings to the ListBox control. mylistview.itemssource = arrayofstring; D. Use a ListBox control defined in the following manner. <ListBox Name="myList"> <ListBox.ItemsPanel> <ItemsPanelTemplate> <Grid> <Grid.ColumnDefinitions> <ColumnDefinition /> <ColumnDefinition /> 12 / 39

14 </Grid.ColumnDefinitions> </Grid> </ItemsPanelTemplate> </ListBox.ItemsPanel> </ListBox> Use the following C# code to associate the array of strings to the ListBox control. mylist.itemssource = arrayofstring; Answer: A 10. You are creating a Windows Presentation Foundation application by using Microsoft.NET Framework 3.5. You create a window for the application. You need to ensure that the following requirements are met:?an array of strings is displayed by using a ListBox control in a two-column format.?the data in the ListBox control flows from left to right and from top to bottom. What should you do? A. Use a ListBox control defined in the following manner. <ListBox Name="myList"> <ListBox.ItemsPanel> <ItemsPanelTemplate> <UniformGrid Columns="2"/> </ItemsPanelTemplate> </ListBox.ItemsPanel> </ListBox> Use the following VB.net code to associate the array of strings to the ListBox control. mylist.itemssource = arrayofstring B. Use a ListBox control defined in the following manner. <ListBox Name="myList"> <ListBox.ItemsPanel> <ItemsPanelTemplate> <StackPanel /> </ItemsPanelTemplate> </ListBox.ItemsPanel> </ListBox> Use the following vb.net code to associate the array of strings to the ListBox control. 13 / 39

15 mylist.itemssource = arrayofstring C. Use a ListBox control defined in the following manner. <ListBox Name="myList"> <ListBox.ItemsPanel> <ItemsPanelTemplate> <WrapPanel /> </ItemsPanelTemplate> </ListBox.ItemsPanel> </ListBox> Use the following vb.net code to associate the array of strings to the ListBox control. mylistview.itemssource = arrayofstring D. Use a ListBox control defined in the following manner. <ListBox Name="myList"> <ListBox.ItemsPanel> <ItemsPanelTemplate> <Grid> <Grid.ColumnDefinitions> <ColumnDefinition /> <ColumnDefinition /> </Grid.ColumnDefinitions> </Grid> </ItemsPanelTemplate> </ListBox.ItemsPanel> </ListBox> Use the following vb.net code to associate the array of strings to the ListBox control. mylist.itemssource = arrayofstring Answer: A 11. You create a form by using Windows Presentation Foundation and Microsoft.NET Framework 3.5. The form contains a status bar. You plan to add a ProgressBar control to the status bar. You need to ensure that the ProgressBar control displays the progress of a task for which you cannot predict the completion time. Which code segment should you use? A. progbar.isindeterminate = true; 14 / 39

16 B. progbar.isindeterminate = false; C. progbar.hasanimatedproperties = true; D. progbar.hasanimatedproperties = false; Answer: A 12. You create a form by using Windows Presentation Foundation and Microsoft.NET Framework 3.5. The form contains a status bar. You plan to add a ProgressBar control to the status bar. You need to ensure that the ProgressBar control displays the progress of a task for which you cannot predict the completion time. Which code segment should you use? A. progbar.isindeterminate = True B. progbar.isindeterminate = False C. progbar.hasanimatedproperties = True D. progbar.hasanimatedproperties = False Answer: A 13. You are converting a Windows Forms application to a Windows Presentation Foundation (WPF) application. You use Microsoft.NET Framework 3.5 to create the WPF application. The WPF application will reuse 30 forms of the Windows Forms application. The WPF application contains the following class definition. public class OwnerWindow : System.Windows.Forms.IWin32Window private IntPtr handle; public IntPtr Handle get { return handle; set { handle=value; You write the following code segment in the WPF application. (Line numbers are included for reference only.) 01 public DialogResult LaunchWindowsFormsDialog( 02?Form dialog, Window wpfparent) 03 { 04 WindowInteropHelper helper=new 05?WindowInteropHelper(wpfParent); 15 / 39

17 06 OwnerWindow owner=new OwnerWindow(); You need to ensure that the application can launch the reusable forms as modal dialogs. Which code segment should you insert at line 07? A.owner.Handle = helper.owner; return dialog.showdialog(owner); B. owner.handle = helper.handle; return dialog.showdialog(owner); C. owner.handle = helper.owner; bool? result = wpfparent.showdialog(); if (result.hasvalue) return result.value? System.Windows.Forms.DialogResult.OK : System.Windows.Forms.DialogResult.Cancel; else return System.Windows.Forms.DialogResult.Cancel; D. owner.handle = helper.handle; bool? result = wpfparent.showdialog(); if (result.hasvalue) return result.value? System.Windows.Forms.DialogResult.OK : System.Windows.Forms.DialogResult.Cancel; else return System.Windows.Forms.DialogResult.Cancel; Answer: B 14. You are converting a Windows Forms application to a Windows Presentation Foundation (WPF) application. You use Microsoft.NET Framework 3.5 to create the WPF application. The WPF application will reuse 30 forms of the Windows Forms application. The WPF application contains the following class definition. Public Class OwnerWindow Implements System.Windows.Forms.IWin32Window Private handle_renamed As IntPtr Public Property Handle() As IntPtr _ Implements System.Windows.Forms.IWin32Window.Handle Get 16 / 39

18 Return handle_renamed End Get Set(ByVal value As IntPtr) handle_renamed = value End Set End Property End Class You write the following code segment in the WPF application. (Line numbers are included for reference only.) 01 Public Function LaunchWindowsFormsDialog(ByVal dialog As _ 02?System.Windows.Forms.Form, ByVal wpfparent As Window) As _ 03?System.Windows.Forms.DialogResult 04 Dim helper As New 05 System.Windows.Interop.WindowInteropHelper(wpfParent) 07 Dim owner As New OwnerWindow() End Function You need to ensure that the application can launch the reusable forms as modal dialogs. Which code segment should you insert at line 08? Aowner.Handle = helper.owner Dim db As New System.Windows.Forms.DialogResult() Return db B. owner.handle = helper.owner Return dialog.showdialog(owner) C. owner.handle = helper.owner Dim result As Nullable(Of Boolean) = wpfparent.showdialog() If result.hasvalue Then eturn If(result.Value, System.Windows.Forms.DialogResult.OK, _?System.Windows.Forms.DialogResult.Cancel) Else Return System.Windows.Forms.DialogResult.Cancel End If D. owner.handle = helper.handle Dim result As Nullable(Of Boolean) = wpfparent.showdialog() 17 / 39

19 If result.hasvalue Then Return If(result.Value, System.Windows.Forms.DialogResult.OK, _?System.Windows.Forms.DialogResult.Cancel) Else Return System.Windows.Forms.DialogResult.Cancel End If Answer: B 15. You are creating a Windows Presentation Foundation (WPF) application by using Microsoft.NET Framework 3.5. The WPF application has a Grid control named rootgrid. You write the following XAML code fragment. <Window x:class="mcp.hostingwinformscontrols" xmlns=" presentation" xmlns:x=" Title="HostingWinFormsControls" Loaded="Window_Loaded"> <Grid x:name="rootgrid"> </Grid> </Window> You need to ensure that each time the WPF window opens, a Windows Forms control named MyCustomFormsControl is added to rootgrid. Which code segment should you use? A.private void Window_Loaded(object sender, RoutedEventArgs e) WindowsFormsHost host = new WindowsFormsHost(); MyCustomFormsControl formscontrol = new MyCustomFormsControl(); host.child = formscontrol; rootgrid.children.add(host); B. private void Window_Loaded(object sender, RoutedEventArgs e) ElementHost host = new ElementHost(); MyCustomFormsControl formscontrol=new MyCustomFormsControl(); host.child=formscontrol; rootgrid.children.add(host); C. private void Window_Loaded(object sender, RoutedEventArgs e) MyCustomFormsControl formscontrol=new MyCustomFormsControl(); 18 / 39

20 formscontrol.createcontrol(); HwndSource source = HwndSource.FromHwnd(formsControl.Handle); UIElement formselement = source.rootvisual as UIElement; rootgrid.children.add(formselement); D. private void Window_Loaded(object sender, RoutedEventArgs e) MyCustomFormsControl formscontrol=new MyCustomFormsControl(); formscontrol.createcontrol(); HwndTarget target = new HwndTarget(formsControl.Handle); UIElement formselement = target.rootvisual as UIElement; rootgrid.children.add(formselement); Answer: A 16.You are creating a Windows Presentation Foundation (WPF) application by using Microsoft.NET Framework 3.5. The WPF application has a Grid control named rootgrid. You write the following XAML code fragment. <Window x:class="mcp.hostingwinformscontrols" xmlns=" presentation" xmlns:x=" Title="HostingWinFormsControls" Loaded="Window_Loaded"> <Grid x:name="rootgrid"> </Grid> </Window> You need to ensure that each time the WPF window opens, a Windows Forms control named MyCustomFormsControl is added to rootgrid. Which code segment should you use? APrivate Sub Window_Loaded(ByVal sender As Object, ByVal e As _ RoutedEventArgs) Dim host As New WindowsFormsHost() Dim formscontrol As New MyCustomFormsControl() host.child = formscontrol; rootgrid.children.add(host); 19 / 39

21 B. Private Sub Window_Loaded(ByVal sender As Object, ByVal e As _ RoutedEventArgs) Dim host As New ElementHost() Dim formscontrol As New MyCustomFormsControl() host.child = formscontrol; rootgrid.children.add(host); C. Private Sub Window_Loaded(ByVal sender As Object, ByVal e As _ RoutedEventArgs) Dim formscontrol As New MyCustomFormsControl() formscontrol.createcontrol() Dim target As New HwndTarget(formsControl.Handle) Dim formselement As UIElement = TryCast(target.RootVisual, _ UIElement) rootgrid.children.add(formselement) D. Private Sub Window_Loaded(ByVal sender As Object, ByVal e As _ RoutedEventArgs) Dim formscontrol As New MyCustomFormsControl() formscontrol.createcontrol() Dim source As HwndSource = HwndSource.FromHwnd(formsControl.Handle) Dim formselement As UIElement = TryCast(source.RootVisual, _ UIElement) rootgrid.children.add(formselement) Answer: A 17. You are creating a Windows Presentation Foundation application by using Microsoft.NET Framework 3.5. You include functionality in the application to troubleshoot the window behavior. You need to display a list of UI elements at a position in the window that is decided by the mouse click. You also need to ensure that the list of elements is displayed in a message box. Which code segment should you include in the code-behind file? Astring controlstodisplay = string.empty; private void Window_MouseDown(object sender, MouseButtonEventArgs e) { 20 / 39

22 controlstodisplay = ((UIElement)sender).ToString(); MessageBox.Show(controlsToDisplay); B. string controlstodisplay = string.empty; private void Window_MouseDown(object sender, MouseButtonEventArgs e) { for (int i = 0; i < this.visualchildrencount; i++) { controlstodisplay + = this.getvisualchild(i).tostring() + "\r\n"; MessageBox.Show(controlsToDisplay); C. string controlstodisplay = string.empty; private void Window_MouseDown (object sender, MouseButtonEventArgs e) Visual myvisual; for (int i = 0; i < VisualTreeHelper.GetChildrenCount(sender as Visual); i++) { myvisual = (Visual)VisualTreeHelper.GetChild(sender as Visual, i); controlstodisplay += myvisual.gettype().tostring() + "\r\n"; MessageBox.Show(controlsToDisplay); D. string controlstodisplay = string.empty; private void Window_MouseDown(object sender, MouseButtonEventArgs e) { Point pt = e.getposition(this); VisualTreeHelper.HitTest(this, null, new HitTestResultCallback(HitTestCallback), new PointHitTestParameters(pt)); MessageBox.Show(controlsToDisplay); private HitTestResultBehavior HitTestCallback(HitTestResult result) { controlstodisplay += result.visualhit.gettype().tostring() + "\r\n"; return HitTestResultBehavior.Continue; Answer: D 18. You are creating a Windows Presentation Foundation application by using Microsoft.NET Framework 3.5. You include functionality in the application to troubleshoot the window behavior. You need to display a list of UI elements at a position in the window that is decided by the mouse click. You also need to ensure that the list of elements is displayed in a message box. Which code segment should you include in the code-behind file? A.Dim controlstodisplay As String = String.Empty Private Sub Window_MouseDown(ByVal sender As Object, _ 21 / 39

23 ByVal e As MouseButtonEventArgs) controlstodisplay = CType(sender, UIElement).ToString() MessageBox.Show(controlsToDisplay) B. Dim controlstodisplay As String = String.Empty Private Sub Window_MouseDown(ByVal sender As Object, _ ByVal e As MouseButtonEventArgs) For i = 0 To VisualChildrenCount - 1 controlstodisplay += GetVisualChild(i).ToString() + "\r\n" Next MessageBox.Show(controlsToDisplay) C. Dim controlstodisplay As String = String.Empty Private Sub Window_MouseDown(ByVal sender As Object, _ ByVal e As MouseButtonEventArgs) Dim myvisual As Visual() For i = 0 To VisualTreeHelper.GetChildrenCount(CType(sender, _ Visual)) - 1 myvisual(i) = CType(VisualTreeHelper.GetChild(CType(sender, _ Visual), i), Visual) controlstodisplay += myvisual.gettype().tostring() + "\r\n" Next MessageBox.Show(controlsToDisplay) D. Dim controlstodisplay As String = String.Empty Private Sub Window_MouseDown(ByVal sender As Object, _ ByVal e As MouseButtonEventArgs) Dim pt As Point = e.getposition(me) VisualTreeHelper.HitTest(Me, Nothing, _ New HitTestResultCallback(AddressOf HitTestCallback), _ New PointHitTestParameters(pt)) MessageBox.Show(controlsToDisplay) Private Function HitTestCallback(ByVal result As HitTestResult) As _ 22 / 39

24 HitTestResultBehavior controlstodisplay += result.visualhit.gettype().tostring() + "\r\n" Return HitTestResultBehavior.Continue End Function Answer: D 19. You are creating a Windows Presentation Foundation application by using Microsoft.NET Framework 3.5. You write the following code segment (Line numbers are included for reference only). 01 Dim content As Object 02 Dim filename As String = "thefile" 03 Using xamlfile As New FileStream(fileName & ".xaml", _ 04 FileMode.Open, FileAccess.Read) 06 content = TryCast(XamlReader.Load(xamlFile), Object) 07 End Using 08 Using container As Package = Package.Open(fileName & ".xps", _ 09 FileMode.Create)1011 End Using You need to ensure that the following requirements are met: The application converts an existing flow document into an XPS document. The XPS document is generated by using the flow document format. The XPS document has the minimum possible size. Which code segment should you insert at line 10? A Using xpsdoc As New XpsDocument(container, _ CompressionOption.SuperFast) Dim rsm As XpsSerializationManager = New _ System.Windows.Xps.XpsSerializationManager(New _ XpsPackagingPolicy(xpsDoc), False) rsm.saveasxaml(paginator) End Using B. Using xpsdoc As New XpsDocument(container, _ CompressionOption.SuperFast) Dim rsm As New XpsSerializationManager(New _ XpsPackagingPolicy(xpsDoc), False) rsm.commit() 23 / 39

25 End Using C. Using xpsdoc As New XpsDocument(container, _ CompressionOption.Maximum) Dim rsm As New XpsSerializationManager(New _ XpsPackagingPolicy(xpsDoc), False) Dim paginator As DocumentPaginator = (CType(content, _ IDocumentPaginatorSource)).DocumentPaginator rsm.saveasxaml(paginator) End Using D. Using xpsdoc As New XpsDocument(container, _ CompressionOption.SuperFast) Dim rsm As New XpsSerializationManager(New _ XpsPackagingPolicy(xpsDoc), False) Dim paginator As DocumentPaginator = (CType(content, _ IDocumentPaginatorSource)).DocumentPaginator rsm.saveasxaml(paginator) End Using Answer: C 20. You are creating a Windows Presentation Foundation application by using Microsoft.NET Framework 3.5. You write the following code segment (Line numbers are included for reference only). 01 Dim content As Object 02 Dim filename As String = "thefile" 03 Using xamlfile As New FileStream(fileName & ".xaml", _ 04?FileMode.Open, FileAccess.Read) 06 content = TryCast(XamlReader.Load(xamlFile), Object) 07 End Using 08 Using container As Package = Package.Open(fileName & ".xps", _ 09?FileMode.Create)10 11 End Using You need to ensure that the following requirements are met: The application converts an existing flow document into an XPS document. The XPS document is generated by using the flow document format. The XPS document has the minimum possible size. Which code segment should you insert at line 10? 24 / 39

26 A.Using xpsdoc As New XpsDocument(container, _ CompressionOption.SuperFast) Dim rsm As XpsSerializationManager = New _ System.Windows.Xps.XpsSerializationManager(New _ XpsPackagingPolicy(xpsDoc), False) rsm.saveasxaml(paginator) End Using B. Using xpsdoc As New XpsDocument(container, _ CompressionOption.SuperFast) Dim rsm As New XpsSerializationManager(New _ XpsPackagingPolicy(xpsDoc), False) rsm.commit() End Using C. Using xpsdoc As New XpsDocument(container, _ CompressionOption.Maximum) Dim rsm As New XpsSerializationManager(New _ XpsPackagingPolicy(xpsDoc), False) Dim paginator As DocumentPaginator = (CType(content, _ IDocumentPaginatorSource)).DocumentPaginator rsm.saveasxaml(paginator) End Using D. Using xpsdoc As New XpsDocument(container, _ CompressionOption.SuperFast) Dim rsm As New XpsSerializationManager(New _ XpsPackagingPolicy(xpsDoc), False) Dim paginator As DocumentPaginator = (CType(content, _ IDocumentPaginatorSource)).DocumentPaginator rsm.saveasxaml(paginator) End Using Answer: C 21. You are creating a Windows Presentation Foundation application by using Microsoft.NET Framework 3.5. The application displays documents by using an instance of the FlowDocumentPageViewer class. The instance is named fdpv. Users can highlight and annotate the content of the documents. 25 / 39

27 You need to ensure that annotations made to a document are saved and rendered when the document is displayed again. Which code segment should you use? A.protected void OnTextInput(object sender, RoutedEventArgs e) { AnnotationService service = AnnotationService.GetService(fdpv); if (service == null) { AnnotationStream = new FileStream("annotations.xml", FileMode.Open, FileAccess.ReadWrite); service = new AnnotationService(fdpv); AnnotationStore store = new XmlStreamStore(AnnotationStream); service.enable(store); private void OnClosing(object sender, System.ComponentModel.CancelEventArgs e) { AnnotationService service = AnnotationService.GetService(fdpv); if (service!= null && service.isenabled) { service.store.flush(); service.disable(); AnnotationStream.Close(); B. protected void OnLoaded(object sender, RoutedEventArgs e) { AnnotationService service = AnnotationService.GetService(fdpv); if (service == null) { AnnotationStream = new FileStream("annotations.xml", FileMode.Open, FileAccess.ReadWrite); service = new AnnotationService(fdpv); private void OnClosing(object sender,?system.componentmodel.canceleventargs e) { AnnotationService service = AnnotationService.GetService(fdpv); if (service!= null && service.isenabled) { 26 / 39

28 service.store.flush(); service.disable(); AnnotationStream.Close(); C. protected void OnLoaded(object sender, RoutedEventArgs e) { AnnotationService service = AnnotationService.GetService(fdpv); if (service == null) { AnnotationStream = new FileStream("annotations.xml", FileMode.Open, FileAccess.ReadWrite); service = new AnnotationService(fdpv); AnnotationStore store = new XmlStreamStore(AnnotationStream); service.enable(store); private void OnClosing(object sender, System.ComponentModel.CancelEventArgs e) { AnnotationService service = AnnotationService.GetService(fdpv); if (service!= null && service.isenabled) { service.store.flush(); service.disable(); AnnotationStream.Close(); D. protected void OnLoaded(object sender, RoutedEventArgs e) { AnnotationService service = AnnotationService.GetService(fdpv); if (service == null) { AnnotationStream = new FileStream("annotations.xml", FileMode.Open, FileAccess.ReadWrite); service = new AnnotationService(fdpv); AnnotationStore store = new XmlStreamStore(AnnotationStream); service.enable(store); 27 / 39

29 private void OnClosing(object sender, System.ComponentModel.CancelEventArgs e) { AnnotationService service = AnnotationService.GetService(fdpv); if (service!= null && service.isenabled) { service.disable(); AnnotationStream.Close(); Answer: C 22. You are creating a Windows Presentation Foundation application by using Microsoft.NET Framework 3.5. The application will display documents by using an instance of the FlowDocumentPageViewer class. The instance is named fdpv. Users can highlight and annotate the content of the documents. You need to ensure that annotations made to a document are saved and rendered when the document is displayed again. Which code segment should you use? A. Protected Sub OnTextInput(ByVal sender As Object, _ ByVal e As RoutedEventArgs) Dim service As AnnotationService = _ AnnotationService.GetService(fdpv) If service Is Nothing Then AnnotationStream = New FileStream("annotations.xml", _ FileMode.Open, FileAccess.ReadWrite) service = New AnnotationService(fdpv) Dim store As AnnotationStore = _ New XmlStreamStore(AnnotationStream) service.enable(store) End If Private Sub OnClosing(ByVal sender As Object, _ ByVal e As System.ComponentModel.CancelEventArgs) Dim service As AnnotationService = _ AnnotationService.GetService(fdpv) If Not service Is Nothing AndAlso service.isenabled Then 28 / 39

30 service.store.flush() srvice.disable() AnnotationStream.Close() End If B. Protected Sub OnLoaded(ByVal sender As Object, _ ByVal e As RoutedEventArgs) Dim service As AnnotationService = _ AnnotationService.GetService(fdpv) If service Is Nothing Then AnnotationStream = New FileStream("annotations.xml", _ FileMode.Open, FileAccess.ReadWrite) service = New AnnotationService(fdpv) End If Private Sub OnClosing(ByVal sender As Object, _ ByVal e As System.ComponentModel.CancelEventArgs) Dim service As AnnotationService = _ AnnotationService.GetService(fdpv) If Not service Is Nothing AndAlso service.isenabled Then service.store.flush() service.disable() AnnotationStream.Close() End If C. Protected Sub OnLoaded(ByVal sender As Object, _ ByVal e As RoutedEventArgs) Dim service As AnnotationService = _ AnnotationService.GetService(fdpv) If service Is Nothing Then AnnotationStream = New FileStream("annotations.xml", _ FileMode.Open, FileAccess.ReadWrite) service = New AnnotationService(fdpv) Dim store As AnnotationStore = New _ 29 / 39

31 XmlStreamStore(AnnotationStream) service.enable(store) End If Private Sub OnClosing(ByVal sender As Object, _ ByVal e As System.ComponentModel.CancelEventArgs) Dim service As AnnotationService = _ AnnotationService.GetService(fdpv) If Not service Is Nothing AndAlso service.isenabled Then service.store.flush() service.disable() AnnotationStream.Close() End If D. Protected Sub OnLoaded(ByVal sender As Object, _ ByVal e As RoutedEventArgs) Dim service As AnnotationService = _ AnnotationService.GetService(fdpv) If service Is Nothing Then AnnotationStream = New FileStream("annotations.xml", _ FileMode.Open, FileAccess.ReadWrite) service = New AnnotationService(fdpv) Dim store As AnnotationStore = New _ XmlStreamStore(AnnotationStream) service.enable(store) End If Private Sub OnClosing(ByVal sender As Object, _ ByVal e As System.ComponentModel.CancelEventArgs) Dim service As AnnotationService = _ AnnotationService.GetService(fdpv) If Not service Is Nothing AndAlso service.isenabled Then service.disable() AnnotationStream.Close() 30 / 39

32 End If Answer: C 23. You are creating a Windows Presentation Foundation application by using Microsoft.NET Framework 3.5. You plan to use the application to preview video files. You write the following XAML code fragment. 01 <Window 01 x:class="myclass" xmlns= 01 " 01 xmlns:x=" 01 Title="myWindow" Height="300" Width="300"> 02 <StackPanel Background="Black"> <StackPanel HorizontalAlignment="Center" 04 Orientation="Horizontal"> 05?<Button Name="btnPlay" Margin="10" Content="Play" /> 06 </StackPanel> </StackPanel> 09 </Window> You need to ensure that the application plays only the first 10 seconds of a video that you want to preview. Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.) A. Insert the following XAML fragment at line 03. <MediaElement Name="myMediaElement" Stretch="Fill" /> B. Insert the following XAML fragment at line 03. <MediaElement Name="myMediaElement" Source="MediaFileSelected.wmv" Stretch="Fill" /> C. Create the following method in the code-behind file. public void PlayMedia(object sender, RoutedEventArgs args) { mymediaelement.play(); D. Insert the following XAML fragment at line 07. <StackPanel.Triggers> 31 / 39

33 <EventTrigger RoutedEvent="Button.Click" SourceName="btnPlay"> <EventTrigger.Actions> <BeginStoryboard Name= "mybegin"> <Storyboard SlipBehavior="Slip"> <MediaTimeline Source="MediaFileSelected.wmv" Storyboard.TargetName="myMediaElement" BeginTime="0:0:0" Duration="0:0:10" /> </Storyboard> </BeginStoryboard> </EventTrigger.Actions> </EventTrigger> </StackPanel.Triggers> E. Insert the following XAML fragment at line 07. <StackPanel.Triggers> <EventTrigger RoutedEvent="Button.Click" SourceName="btnPlay"> <EventTrigger.Actions> <BeginStoryboard Name= "mybegin"> <Storyboard SlipBehavior="Slip"> <MediaTimeline Storyboard.TargetName="myMediaElement" BeginTime="0:0:0" Duration="0:0:10" /> </Storyboard> </BeginStoryboard> </EventTrigger.Actions> </EventTrigger> </StackPanel.Triggers> Answer: A AND D 24. You are creating a Windows Presentation Foundation application by using Microsoft.NET Framework 3.5. You plan to use the application to preview video files. You write the following XAML code fragment. 01 <Window 01 x:class="myclass" xmlns= 01 " 32 / 39

34 01 xmlns:x=" 01 Title="myWindow" Height="300" Width="300"> 02 <StackPanel Background="Black"> <StackPanel HorizontalAlignment="Center" 04 Orientation="Horizontal"> 05?<Button Name="btnPlay" Margin="10" Content="Play" /> 06 </StackPanel> </StackPanel> 09 </Window> You need to ensure that the application plays only the first 10 seconds of a video that you want to preview. Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.) A. Insert the following XAML fragment at line 03. <MediaElement Name="myMediaElement" Stretch="Fill" /> B. Insert the following XAML fragment at line 03. <MediaElement Name="myMediaElement" Source="MediaFileSelected.wmv" Stretch="Fill" /> C. Create the following method in the code-behind file. Public Sub PlayMedia(ByVal sender As Object, _ ByVal args As RoutedEventArgs) mymediaelement.play() D. Insert the following XAML fragment at line 07. <StackPanel.Triggers> <EventTrigger RoutedEvent="Button.Click" SourceName="btnPlay"> <EventTrigger.Actions> <BeginStoryboard Name= "mybegin"> <Storyboard SlipBehavior="Slip"> <MediaTimeline Source="MediaFileSelected.wmv" Storyboard.TargetName="myMediaElement" BeginTime="0:0:0" Duration="0:0:10" /> </Storyboard> </BeginStoryboard> 33 / 39

35 </EventTrigger.Actions> </EventTrigger> </StackPanel.Triggers> E. Insert the following XAML fragment at line 07. <StackPanel.Triggers> <EventTrigger RoutedEvent="Button.Click" SourceName="btnPlay"> <EventTrigger.Actions> <BeginStoryboard Name= "mybegin"> <Storyboard SlipBehavior="Slip"> <MediaTimeline Storyboard.TargetName="myMediaElement" BeginTime="0:0:0" Duration="0:0:10" /> </Storyboard> </BeginStoryboard> </EventTrigger.Actions> </EventTrigger> </StackPanel.Triggers> Answer: A AND D 25. You are creating a Windows Presentation Foundation application. You create a window for the application. The application contains an audio file named AudioFileToPlay.wav. You need to ensure that the audio file is played each time you click the client area of the window. What should you do? A. Add the following XAML line of code to the window. <MediaElement Source="AudioFileToPlay.wav" /> B. Add the following code segment to the window constructor method in the code-behind file. SoundPlayer player = new SoundPlayer(); player.soundlocation = "AudioFileToPlay.wav"; player.play(); C. Add the following code segment to the window MouseDown method in the code-behind file. MediaPlayer player = new MediaPlayer(); player.setvalue(mediaelement.sourceproperty,new Uri("AudioFileToPlay.wav", UriKind.Relative)); player.play(); D. Add the following XAML code fragment to the window. 34 / 39

36 <Window.Triggers> <EventTrigger RoutedEvent="Window.MouseDown"> <EventTrigger.Actions> <SoundPlayerAction Source="AudioFileToPlay.wav"/> </EventTrigger.Actions> </EventTrigger> </Window.Triggers> Answer: D 26. You are creating a Windows Presentation Foundation application. You create a window for the application. The application contains an audio file named AudioFileToPlay.wav. You need to ensure that the following requirements are met: The audio file is played each time you click the client area of the window. The window provides optimal performance when the audio file is being played. What should you do? A Add the following XAML line of code to the window. <MediaElement Source="AudioFileToPlay.wav" /> B. Add the following code segment to the window constructor method in the code-behind file. Dim player As New SoundPlayer() player.soundlocation = "AudioFileToPlay.wav" player.play() C. Add the following code segment to the window MouseDown method in the code-behind file. Dim player As New MediaElement() player.source = New Uri("AudioFileToPlay.wav", UriKind.Relative) player.loadedbehavior = MediaState.Manual player.play() D. Add the following XAML code fragment to the window. <Window.Triggers> <EventTrigger RoutedEvent="Window.MouseDown"> <EventTrigger.Actions> <SoundPlayerAction Source="AudioFileToPlay.wav"/> </EventTrigger.Actions> </EventTrigger> 35 / 39

37 </Window.Triggers> Answer: D 27. You are creating a Windows Presentation Foundation application by using Microsoft.NET Framework 3.5. Your project contains a folder named Data. You add an MP3 file named song.mp3 in the Data folder. You set the Build Action property of the MP3 file to Resource. You need to access the MP3 file from the application. Which code segment should you use? A. Uri uri = new Uri("/Data/song.mp3", UriKind.Relative); StreamResourceInfo sri=application.getcontentstream(uri); Stream stream=sri.stream; B. Uri uri = new Uri("/Data/song.mp3", UriKind.Relative); StreamResourceInfo sri=application.loadcomponent(uri); Stream stream=sri.stream; C. Uri uri = new Uri("/Data/song.mp3", UriKind.Relative); StreamResourceInfo sri=application.getremotestream(uri); Stream stream=sri.stream; D. Uri uri = new Uri("/Data/song.mp3", UriKind.Relative); StreamResourceInfo sri=application.getresourcestream(uri); Stream stream=sri.stream; Answer: D 28. You are creating a Windows Presentation Foundation application by using Microsoft.NET Framework 3.5. Your project contains a folder named Data. You add a.mp3 file named song.mp3 in the Data folder. You set the Build Action property of the application to Resource. You need to access the.mp3 file from one of the application classes. Which code segment should you use? A. Dim uri As New Uri("/Data/song.mp3", UriKind.Relative) Dim sri As StreamResourceInfo = Application.GetContentStream(uri) Dim stream As Stream = sri.stream B. Dim uri As New Uri("/Data/song.mp3", UriKind.Relative) Dim sri As StreamResourceInfo = Application.LoadComponent(uri) Dim stream As Stream = sri.stream C. Dim uri As New Uri("/Data/song.mp3", UriKind.Relative) 36 / 39

38 Dim sri As StreamResourceInfo = Application.GetRemoteStream(uri) Dim stream As Stream = sri.stream D. Dim uri As New Uri("/Data/song.mp3", UriKind.Relative) Dim sri As StreamResourceInfo = Application.GetResourceStream(uri) Dim stream As Stream = sri.stream Answer: D 29. You are creating a Windows Presentation Foundation application by using Microsoft.NET Framework 3.5. The application has a window that programatically displays an image. The window contains a grid named thegrid. The window displays images in their actual size of 1024 pixels wide or larger. You want the images to be 200 pixels wide. You write the following code segment. (Line numbers are included for reference only.) 01 Image theimage=new Image(); 02 theimage.width=200; 03 BitmapImage thebitmapimage=new BitmapImage(); theimage.source=thebitmapimage; 06 thegrid.children.add(theimage); You need to ensure that the application meets the following requirements: The window uses the least amount of memory to display the image. The image is not skewed. Which code segment should you insert at line 04? A. thebitmapimage.urisource=new Uri(@"imageToDisplay.jpg"); thebitmapimage.decodepixelwidth=200; B. thebitmapimage.begininit(); thebitmapimage.urisource=new Uri(@"imageToDisplay.jpg"); thebitmapimage.endinit(); C. thebitmapimage.begininit(); thebitmapimage.urisource=new Uri(@"imageToDisplay.jpg"); thebitmapimage.decodepixelwidth=200; thebitmapimage.endinit(); D. thebitmapimage.begininit(); thebitmapimage.urisource=new Uri(@"imageToDisplay.jpg"); 37 / 39

39 thebitmapimage.decodepixelwidth=200; thebitmapimage.decodepixelheight=200; thebitmapimage.endinit(); Answer: C 30. You are creating a Windows Presentation Foundation application by using Microsoft.NET Framework 3.5. The application has a window that programatically displays an image. The window contains a grid named thegrid. The window displays images in their actual size. You want the images to be 200 pixels wide. You write the following code segment. 01 Dim theimage As New Image() 02 theimage.width = Dim thebitmapimage As New BitmapImage() theimage.source = thebitmapimage 06 thegrid.children.add(theimage) You need to ensure that the application meets the following requirements: The window uses the least amount of memory to display the image. The image is not skewed. Which code segment should you insert at line 04? A. thebitmapimage.urisource = New Uri("imageToDisplay.jpg") thebitmapimage.decodepixelwidth = 200 B. thebitmapimage.begininit() thebitmapimage.urisource = New Uri("imageToDisplay.jpg") thebitmapimage.endinit() C. thebitmapimage.begininit() thebitmapimage.urisource = New Uri("imageToDisplay.jpg") thebitmapimage.decodepixelwidth = 200 thebitmapimage.endinit() D. thebitmapimage.begininit() thebitmapimage.urisource = New Uri("imageToDisplay.jpg") thebitmapimage.endinit() thebitmapimage.decodepixelwidth = 200 thebitmapimage.decodepixelheight = / 39

2.2/20 IEGULDĪJUMS TAVĀ NĀKOTNĒ! Eiropas Reģionālās attīstības fonds Prioritāte: 2.1. Zinātne un inovācijas Pasākums: Zinātne, pētniecība un at

2.2/20 IEGULDĪJUMS TAVĀ NĀKOTNĒ! Eiropas Reģionālās attīstības fonds Prioritāte: 2.1. Zinātne un inovācijas Pasākums: Zinātne, pētniecība un at 2.2/20 IEGULDĪJUMS TAVĀ NĀKOTNĒ! Eiropas Reģionālās attīstības fonds Prioritāte: 2.1. Zinātne un inovācijas Pasākums: 2.1.1. Zinātne, pētniecība un attīstība Aktivitāte: 2.1.1.1. Atbalsts zinātnei un pētniecībai

Sīkāk

7. Tēma: Polinomi ar veseliem koeficientiem Uzdevums 7.1 (IMO1982.4): Prove that if n is a positive integer such that the equation x 3 3xy 2 + y 3 = n

7. Tēma: Polinomi ar veseliem koeficientiem Uzdevums 7.1 (IMO1982.4): Prove that if n is a positive integer such that the equation x 3 3xy 2 + y 3 = n 7. Tēma: Polinomi ar veseliem koeficientiem Uzdevums 7.1 (IMO1982.): Prove that if n is a positive integer such that the equation x xy 2 + y = n has a solution in integers x, y, then it has at least three

Sīkāk

series_155

series_155 RAILING SERIES 155 RIPO fabrika SIA Hanzas Street 2, Pinki, Babite district, LV 2107, Latvia 155 Alumīnija margu sērija Aluminum railing series AL.01 AL.02 AL.03 AL.04 AL.05 AL.06 AL.07 AL.08 AL.09 155

Sīkāk

Red button

Red button Piebiedrojies Start(IT)! Attīstīsim IT izglītību kopā! Java Ievads Augusts 2014 Materiālu publicēšana tikai saskaņā ar Start(IT) Saturs Kas ir Java? Pirmā Programma Darbs ar mainīgajiem Sazarojumi un cikli

Sīkāk

KURSA KODS

KURSA KODS Lappuse 1 no 5 KURSA KODS STUDIJU KURSA PROGRAMMAS STRUKTŪRA Kursa nosaukums latviski Kursa nosaukums angliski Kursa nosaukums otrā svešvalodā Studiju /-as, kurai/-ām tiek piedāvāts studiju kurss Statuss

Sīkāk

State Revenue Services of the Republic Latvia Talejas iela 1, Riga LV-1978 Latvia Ihr Vor- und Zuname Ihre Straße und Hausnummer Ihre Postleitzahl Ihr

State Revenue Services of the Republic Latvia Talejas iela 1, Riga LV-1978 Latvia Ihr Vor- und Zuname Ihre Straße und Hausnummer Ihre Postleitzahl Ihr State Revenue Services of the Republic Latvia Talejas iela 1, Riga LV-1978 Latvia Ihr Vor- und Zuname Ihre Straße und Hausnummer Ihre Postleitzahl Ihr Wohnort aktuelles Datum Ihre ZINSPILOT-Kundennummer

Sīkāk

Mounting_Instruction_Owl_Class_II_High_Bay_

Mounting_Instruction_Owl_Class_II_High_Bay_ VIZULO OWL LED high bay Mounting instruction Montāžas instrukcija Mонтажная инструкция IEC EN 60598 IP66 min 40 C max + 50 C (+45 C)* 198-264 V AC * Depends on configuration. Check label or technical specification.

Sīkāk

Dārzā Lidijas Edenas teksts Andras Otto ilustrācijas Zaķis skatās lielām, brūnām acīm. Ko tu redzi, zaķīt? Skaties, re, kur māmiņas puķu dārzs! Nē, nē

Dārzā Lidijas Edenas teksts Andras Otto ilustrācijas Zaķis skatās lielām, brūnām acīm. Ko tu redzi, zaķīt? Skaties, re, kur māmiņas puķu dārzs! Nē, nē Dārzā Lidijas Edenas teksts Andras Otto ilustrācijas Zaķis skatās lielām, brūnām acīm. Ko tu redzi, zaķīt? Skaties, re, kur māmiņas puķu dārzs! Nē, nē, zaķīt! Māmiņas puķes nevar ēst! Zaķis lēkā mūsu dārzā.

Sīkāk

Oracle SQL teikuma izpildes plāns (execution plan)

Oracle SQL teikuma izpildes plāns (execution plan) SQL teikuma izpildes plāns gints.plivna@gmail.com Kas es esmu? Pieredze darbā ar Oracle kopš 1997 Oficiālais amats sistēmanalītiėis Rix Technologies Oracle sertificēto kursu pasniedzējs Affecto Latvija

Sīkāk

Latvijas labie piemēri vietu zīmola veidošanā un popularizēšanā.

Latvijas labie piemēri vietu zīmola veidošanā un popularizēšanā. SEM Search Engine Marketing ir SEO un SEA apvienojums. > SEO Search Engine Optimization > SEA Search Engine Advertising SEO & SEA rīcības eksperimentālais piemērs MAKŠĶERĒŠANA UN ATPŪTA USMAS EZERĀ Imantas,

Sīkāk

Deeper Smart Sonar START Technical Specifications Weight: 2.1oz / 60g Size: 60 x 65 x 65-mm / 2.3 x 2.5 x 2.5in Sonar Type: Single beam Frequency (Bea

Deeper Smart Sonar START Technical Specifications Weight: 2.1oz / 60g Size: 60 x 65 x 65-mm / 2.3 x 2.5 x 2.5in Sonar Type: Single beam Frequency (Bea Deeper Smart Sonar START Technical Specifications Weight: 2.1oz / 60g Size: 60 x 65 x 65-mm / 2.3 x 2.5 x 2.5in Sonar Type: Single beam Frequency (Beam cone): 120 khz, 40 Depth Range Max/Min: Max 165ft

Sīkāk

Microsoft Word - AT2018_sakums_MAKETS_ docx

Microsoft Word - AT2018_sakums_MAKETS_ docx Latvijas Republikas Senāta spriedumi un lēmumi 2018. Rīga: Tiesu namu aģentūra, 2019. 1037 lpp. (VII, A 401, C 351, K 275) Krājumu sagatavoja: Latvijas Republikas Senāta Administratīvo lietu departamenta

Sīkāk

University of Latvia Faculty of Physics and Mathematics Department of Mathematics Dissertation Fuzzy matrices and generalized aggregation operators: t

University of Latvia Faculty of Physics and Mathematics Department of Mathematics Dissertation Fuzzy matrices and generalized aggregation operators: t University of Latvia Faculty of Physics and Mathematics Department of Mathematics Dissertation Fuzzy matrices and generalized aggregation operators: theoretical foundations and possible applications by

Sīkāk

1. pielikums Papildu pakalpojumi Appendix 1 Additional Services 1. Pārvadātājs sniedz Papildu pakalpojumus, kas papildina vai paplašina Transporta pak

1. pielikums Papildu pakalpojumi Appendix 1 Additional Services 1. Pārvadātājs sniedz Papildu pakalpojumus, kas papildina vai paplašina Transporta pak 1. pielikums Papildu pakalpojumi Appendix 1 Additional Services 1. Pārvadātājs sniedz Papildu pakalpojumus, kas papildina vai paplašina Transporta pakalpojumu nosacījumus. Papildu pakalpojumi attiecas

Sīkāk

Autors: Dace Copeland Andras Otto ilustrācijas Gaŗā gultā gailis guļ. Gaiļa gultā graudu grēdas. Gailis graudu grēdas ēd. Kā var gailis gultā gulēt? V

Autors: Dace Copeland Andras Otto ilustrācijas Gaŗā gultā gailis guļ. Gaiļa gultā graudu grēdas. Gailis graudu grēdas ēd. Kā var gailis gultā gulēt? V Autors: Dace Copeland Andras Otto ilustrācijas Gaŗā gultā gailis guļ. Gaiļa gultā graudu grēdas. Gailis graudu grēdas ēd. Kā var gailis gultā gulēt? Vai tad galu galā graudu grēdas gailim nespiež galvu?

Sīkāk

KURSA KODS

KURSA KODS Lappuse 1 no 5 KURSA KODS Kursa nosaukums latviski Kursa nosaukums angliski Kursa nosaukums otrā svešvalodā (ja kursu docē krievu, vācu vai franču valodā) Studiju programma/-as, kurai/-ām tiek piedāvāts

Sīkāk

Viss labs Daces Copeland teksts Andras Otto ilustrācijas Lietus līst. Lietus līst lielām, lēnām lāsēm. Labi, lai līst! Lietus ir labs. A1:12

Viss labs Daces Copeland teksts Andras Otto ilustrācijas Lietus līst. Lietus līst lielām, lēnām lāsēm. Labi, lai līst! Lietus ir labs. A1:12 Viss labs Daces Copeland teksts Andras Otto ilustrācijas Lietus līst. Lietus līst lielām, lēnām lāsēm. Labi, lai līst! Lietus ir labs. A1:12 Vabole lien. Vabole lien lēnām. Labi, lai lien! Vabole ir laba.

Sīkāk

SNP3000_UM_LV_2.2.indd

SNP3000_UM_LV_2.2.indd Register your product and get support at www.philips.com/welcome Philips Presenter SNP3000 LV Lietotāja rokasgrāmata 1 a b c d e g f h 2 3 4 LASER LIGHT DO NOT STARE INTO BEAM CLASS 2 LASER PRODUCT Wavelength

Sīkāk

Microsoft Word - Papildmaterials.doc

Microsoft Word - Papildmaterials.doc SATURS DARBĪBAS AR DARBGRĀMATAS LAPĀM... 2 1.1. Pārvietošanās pa lapām...2 1.2. Lapas nosaukuma maiņa...3 1.3. Jaunas darblapas pievienošana...3 1.4. Lapas pārvietošana un dublēšana, lietojot peli...4

Sīkāk

Microsoft Word - kn758p1.doc

Microsoft Word - kn758p1.doc Tieslietu ministrijas iesniegtajā redakcijā 1.pielikums Ministru kabineta 28.gada 16.septembra noteikumiem Nr.758 APF 3.64 Projekta iesnieguma veidlapa angļu valodā IMPORTANT Read the application form

Sīkāk

K 5 ( )

K 5 ( ) Detaļu saraksts (1.180-633.0) K 5 27.01.2016 www.kaercher.com LV Lapa 2 / 66 Lapa 3 / 66 Lapa 4 / 66 Satura rādītājs Pasūtīšanas norādījumi K 5 (1.180-633.0) Short spare parts list 201 Spare parts list

Sīkāk

Tehniskās prasības darbam ar VISMA Horizon un HoP Aktualizēts

Tehniskās prasības darbam ar VISMA Horizon un HoP Aktualizēts Tehniskās prasības darbam ar VISMA Horizon un HoP Aktualizēts 21.08.2019. 2 Saturs Interneta pieslēgums 4 Darbstacija un ierīces 4 DBVS serveris 6 Servera rekomendācijas 6 Horizon datu bāzu vadības sistēmas

Sīkāk

OWASP Top 10 Latvijā Biežākās drošības problēmas 4mekļa lietojumos Agris Krusts, IT Centrs, SIA

OWASP Top 10 Latvijā Biežākās drošības problēmas 4mekļa lietojumos Agris Krusts, IT Centrs, SIA OWASP Top 10 Latvijā Biežākās drošības problēmas 4mekļa lietojumos Agris Krusts, IT Centrs, SIA 28.03.2019 Par mani Agris Krusts, SIA IT Centrs dibinātājs, drošības konsultants Drošības audi= un tes=,

Sīkāk

DATORMĀCĪBA

DATORMĀCĪBA 5. Darbs ar lieliem dokumentiem Praktiskajā darbā bieži iznāk veidot, rediģēt, noformēt liela apjoma dokumentus, piemērām, atskaites, projekti, kursa vai diploma darbi utt. Šo dokumentu apjoms parasti

Sīkāk

RF PRO.pdf

RF PRO.pdf CIVILS LANDSCAPING AQUA SPORT RECYFIX PRO NEW INOVATĪVA DRENĀŽAS SISTĒMA IZGATAVOTA NO PE-PP UN PA-GF MĀJAS UN KOMERCIĀLO PLATĪBU TERITORIJĀS LĪDZ C250 SLODZES KLASEI Tagad arī ar FIBRETEC resti CIVILS

Sīkāk

Norādījumi par kopējo aktīvu un kopējās riska pozīcijas veidņu aizpildīšanu maksu noteicošo faktoru informācijas apkopošanai

Norādījumi par kopējo aktīvu un kopējās riska pozīcijas veidņu aizpildīšanu maksu noteicošo faktoru informācijas apkopošanai Norādījumi par kopējo aktīvu un kopējās riska pozīcijas veidņu aizpildīšanu maksu noteicošo faktoru informācijas apkopošanai 2018. gada aprīlis 1. Vispārīgi norādījumi par abu veidņu aizpildīšanu 1 Lauki

Sīkāk

Packet Core Network 2018

Packet Core Network 2018 Packet Core Network 2018 Training Program Core Learning Levels & Areas Packet Core Fundamentals Operation, Configuration and Troubleshooting Delta Training Solution Training 5G EPC 5G Core 494/22109-FAP130506

Sīkāk

LV L 274/38 Eiropas Savienības Oficiālais Vēstnesis EIROPAS CENTRĀLĀ BANKA EIROPAS CENTRĀLĀS BANKAS LĒMUMS (2009. gada 6. oktobris), ar ko

LV L 274/38 Eiropas Savienības Oficiālais Vēstnesis EIROPAS CENTRĀLĀ BANKA EIROPAS CENTRĀLĀS BANKAS LĒMUMS (2009. gada 6. oktobris), ar ko L 274/38 Eiropas Savienības Oficiālais Vēstnesis 20.10.2009. EIROPAS CENTRĀLĀ BANKA EIROPAS CENTRĀLĀS BANKAS LĒMUMS (2009. gada 6. oktobris), ar ko groza Lēmumu ECB/2007/7 par TARGET2-ECB noteikumiem un

Sīkāk

Mūsu programmas Programmu ilgums 1 semestris 15 nodarbības 1,5 h nodarbības ilgums

Mūsu programmas Programmu ilgums 1 semestris 15 nodarbības 1,5 h nodarbības ilgums Mūsu programmas Programmu ilgums 1 semestris 15 nodarbības 1,5 h nodarbības ilgums Algoritmika un datorzinības (Vecums: 8 gadi) Kursa mērķis ir sniegt bērniem kopīgo izpratni par datoru un datorprogrammām.

Sīkāk

Presentation WP6 DisComEx

Presentation WP6 DisComEx KeepWarm projekts Nr. 784966 «Centralizētās siltumapgādes uzņēmumu darbības uzlabošana Centrāleiropā un Austrumeiropā» SIA Fortum Jelgava pieredze (uzņēmuma tēla veidošana, sadarbība ar klientiem un iestādēm,

Sīkāk

Vispārīgie noteikumi par starptautiskajām MasterCard un starptautiskajām

Vispārīgie noteikumi par starptautiskajām MasterCard un starptautiskajām APSTIPRINĀTI Nordea Bank Finland Plc Latvijas filiāles Vadības komitejas sēdē 2000. gada 6. decembrī, protokols Nr.36-2000 Grozījumi: 07.02.2001., Protokols Nr. 6-2001 Grozījumi: 28.02.2001., Protokols

Sīkāk

Multifunkcionāla viesnīca Apart Hotel TOMO" Divvietīga vai vienvietīga istaba Cenas: EUR mēnesī (dzivo viena persona) EUR jāmaksā ka

Multifunkcionāla viesnīca Apart Hotel TOMO Divvietīga vai vienvietīga istaba Cenas: EUR mēnesī (dzivo viena persona) EUR jāmaksā ka Multifunkcionāla viesnīca Apart Hotel TOMO" Divvietīga vai vienvietīga istaba - 270.00 EUR mēnesī (dzivo viena persona) - 160.00 EUR jāmaksā katrai personai/ mēnesī (dzivo divi studenti) Istaba ar virtuvi

Sīkāk

RietumuAPI_PSD2_v1_LV

RietumuAPI_PSD2_v1_LV Rietumu PSD2 API vispa re jais apraksts v.1.0 0 Izmaiņu saraksts... 2 Vispārējā informācija... 3 Rietumu PSD2 API pārskats... 3 Informācija par kontiem Account Information Services (AIS)... 3 Maksājumu

Sīkāk

07 - Martins Orinskis - FED.pptx

07 - Martins Orinskis - FED.pptx Federatīvās autentifikācijas priekšrocības un pielietojumi Latvijas piemēri un nākotnes vīzija. Mārtiņš Orinskis, SIA DPA projektu vadītājs 2012.gada 8. novembris Mūsu stāsts DPA ir dibināts Mūsu stāsts

Sīkāk

Datorzinātņu doktorantūras zinātniskais seminārs Atrašanās vietas inteliģences metodes datu noliktavu mobilai lietotnei 1.k.doktorante: Daiga Plase Da

Datorzinātņu doktorantūras zinātniskais seminārs Atrašanās vietas inteliģences metodes datu noliktavu mobilai lietotnei 1.k.doktorante: Daiga Plase Da Datorzinātņu doktorantūras zinātniskais seminārs Atrašanās vietas inteliģences metodes datu noliktavu mobilai lietotnei 1.k.doktorante: Daiga Plase Darba vadītāja: prof., Dr. sc. comp. Laila Niedrīte Saturs

Sīkāk

Microsoft Word - KK_NOR'19.docx

Microsoft Word - KK_NOR'19.docx 2019.GADA KUIVIŽU KAUSS Optimist un Laser klasēs 14.-16.jūnijs, Kuiviži, Salacgrīva SACENSĪBU NOLIKUMS 1. SACENSĪBU RĪKOTĀJI 1.1.Sacensību rīkotājs ir Kuivižu Jahtklubs 2. NOTEIKUMI 2.1.Sacensības notiek

Sīkāk

2 1

2 1 2 1 Dārgie orientieristi! Esiet sveicināti mūsu zemē Latvijā. Latvija ir viena no mežiem bagātākajām valstīm Eiropā. Mums ir 498 km gara smilšaina pludmale, skaistie priežu meži, un jūlijs - mēnesis, kad

Sīkāk

Kontu noteikumi Rules of Accounts Redakcija spēkā no Version effective as of NOTEIKUMOS LIETOTIE TERMINI 1. DEFINITIONS AND

Kontu noteikumi Rules of Accounts Redakcija spēkā no Version effective as of NOTEIKUMOS LIETOTIE TERMINI 1. DEFINITIONS AND Kontu noteikumi Rules of Accounts Redakcija spēkā no 15.08.2019. Version effective as of 2019.08.15. 1. NOTEIKUMOS LIETOTIE TERMINI 1. DEFINITIONS AND INTERPRETATION Ja vien nav noteikts citādi, minētajiem

Sīkāk

MANUĀLĀS IEVADES NORĀDES PIEGĀDĀTĀJIEM 1 PIEGĀDĀTĀJA KOMPLEKTS PADOMI PAR E-RĒĶINU MANUĀLU IEVADI PORTĀLĀ GADA SEPTEMBRIS Piegādātāji ievēro pie

MANUĀLĀS IEVADES NORĀDES PIEGĀDĀTĀJIEM 1 PIEGĀDĀTĀJA KOMPLEKTS PADOMI PAR E-RĒĶINU MANUĀLU IEVADI PORTĀLĀ GADA SEPTEMBRIS Piegādātāji ievēro pie MANUĀLĀS IEVADES NRĀDES PIEGĀDĀTĀJIEM 1 PIEGĀDĀTĀJA KMPLEKTS PADMI PAR E-RĒĶINU MANUĀLU IEVADI PRTĀLĀ 2018. GADA SEPTEMBRIS Piegādātāji ievēro piegādātāja komplektā norādīto. Uzņēmums KNE uzlabo iepirkumu-maksājumu

Sīkāk

Mēbeļu piedāvājums / Office furniture offer

Mēbeļu piedāvājums / Office furniture offer Mēbeļu piedāvājums / Office furniture offer Ovāls pārrunu galds 1 - kļava, 1 - tumši pelēks Uz divām mono-kājām (nerūs.tērauds) 200cm virsmas garums, 90cm virsmas platums, 75cm augstums Skaits - 2 Cena

Sīkāk

PALĪGS DOKUMENTU IEVIETOŠANAI

PALĪGS DOKUMENTU IEVIETOŠANAI PALĪGS DOKUMENTU IEVIETOŠANAI LATVIJAS UNIVERSITĀTES E-RESURSU REPOZITORIJĀ 1. VISPĀRĪGA INFORMĀCIJA LU E-resursu repozitorijs (turpmāk - ERR) (https://dspace.lu.lv/dspace) izveidots 2011.gadā ar LU rektora

Sīkāk

Laboratorijas darbs Nr

Laboratorijas darbs Nr Laboratorijas darbs Access Nr. 8 ( 2. laboratorijas darbu nodarbības ). Lektors J. Krasts Preču pieņemšanas un izsniegšanas ekrāna formas projektēšana vairumtirdzniecības noliktavas datu bāzē. Apakšformas

Sīkāk

Slide 1

Slide 1 Lifelong Learning Grundtvig Partnership Project 2012-1-LV1-GRU06-03580 1 How to Ensure Qualitative Lifelong Learning for Different Age Groups Adult education teachers will discuss the ways how to involve

Sīkāk

6. modulis

6. modulis PHARE 2003 ESK programmas projekts Ekonomiskās un sociālās kohēzijas pasākumi Latvijā 2. komponentes 2. pasākums Profesionālās izglītības un tālākizglītības attīstība IKT ZINĀŠANU STANDARTIZĀCIJA ZEMGALES

Sīkāk

Vēja turbīnu rotoru lāpstiņu uzbūve un inspekcija IEPIRKUMS (iepirkuma identifikācijas Nr. 6-8/A-49) Pasūtītājs: Nosaukums: Biedrība Latvijas Elektrot

Vēja turbīnu rotoru lāpstiņu uzbūve un inspekcija IEPIRKUMS (iepirkuma identifikācijas Nr. 6-8/A-49) Pasūtītājs: Nosaukums: Biedrība Latvijas Elektrot Vēja turbīnu rotoru lāpstiņu uzbūve un inspekcija IEPIRKUMS (iepirkuma identifikācijas Nr. 6-8/A-49) Pasūtītājs: Nosaukums: Biedrība Latvijas Elektrotehnikas un elektronikas rūpniecības asociācija Reģistrācijas

Sīkāk

PPP

PPP PUBLISKO IEPIRKUMU DIREKTĪVAS INTEREŠU KONFLIKTI IZSLĒGŠANAS IEMESLI CENTRĀLĀ IZSLĒGŠANAS DATUBĀZE Artis Lapiņš (FM TAD) 08.11.2012. «KLASISKAIS» UN SABIEDRISKO PAKALPOJUMU SEKTORS 2 Esošās ES direktīvas

Sīkāk

Likumi.lv

Likumi.lv Kārtība, kādā izsniedz valsts atzītus augstāko izglītību apliecinošus dokumentus Ministru kabineta 16.04.2013. noteikumi Nr. 202 / LV, 75 (4881), 18.04.2013. Attēlotā redakcija: 19.04.2013. -... 7.pielikums

Sīkāk

Slide 1

Slide 1 Inovācijas viesnīcu telefonijas risinājumos Andris Laumanis Alcatel-Lucent Enterprise Adventus Solutions Tirgus tendences Ko vēlas mūsdienu ceļotāji: Wi-Fi un digitālus risinājumus! E C A 65% Use WiFi

Sīkāk

APSTIPRINĀTS

APSTIPRINĀTS APSTIPRINU: Profesionālās izglītības kompetences centra Liepājas Valsts tehnikums direktors A. Ruperts 2013.gada 7. maijā Profesionālās izglītības kompetenču centrs Liepājas Valsts tehnikums audzēkņu biznesa

Sīkāk

PANEVEZYS Cido Arena, Panevezys UCI CL2 category WOMEN JUNIOR OMNIUM I Race - Scratch START LIST Race distance 30 laps

PANEVEZYS Cido Arena, Panevezys UCI CL2 category WOMEN JUNIOR OMNIUM I Race - Scratch START LIST Race distance 30 laps WOMEN JUNIOR OMNIUM I Race - Scratch START LIST Race distance 30 laps Country/ Nr Name UCI code Club 1 1 Viktorija Šumskyte LTU20000707 PKKSC, SK"El-Eko Sport" PRSSG 2 2 Židrune Paltarokaite LTU20001110

Sīkāk

MMS kamera 1

MMS kamera 1 MMS kamera 1 Saturs... 3 1.1 Apraksts:... 3 1.2 Funkciju apraksts... 4 1.3 Pielietošana... 4 1.4... 4 kopskats... 5... 7 3.1 Barošana (divi veidi)... 7 3.2 Kameras ie... 8 3.3... 10... 10 4.1... 10 4.2

Sīkāk

IRM in Audit

IRM in Audit Fizisko personu datu aizsardzība un tai piemērojamie standarti 07.10.2015 Saturs Esošā likumdošana 2 Standartu un metodoloģiju piemērošana datu aizsardzībai 3 LVS ISO / IEC 27001:2013 standarts 4 PTES

Sīkāk

Noguldījumu noteikumi Rules of Deposits Redakcija spēkā no Version effective as of NOTEIKUMOS LIETOTIE TERMINI 1. DEFINITIO

Noguldījumu noteikumi Rules of Deposits Redakcija spēkā no Version effective as of NOTEIKUMOS LIETOTIE TERMINI 1. DEFINITIO Noguldījumu noteikumi Rules of Deposits Redakcija spēkā no 15.08.2019. Version effective as of 2019.08.15. 1. NOTEIKUMOS LIETOTIE TERMINI 1. DEFINITIONS AND INTERPRETATION Ja vien nav noteikts citādi,

Sīkāk

Microsoft PowerPoint - Rauhvargers_Stocktaking_RP_2009.ppt [Compatibility Mode]

Microsoft PowerPoint - Rauhvargers_Stocktaking_RP_2009.ppt [Compatibility Mode] 6th Bologna Ministerial Conference Leuven and Louvain-la-Neuve, 28-29 April 2009 Boloņas procesa analītiskais ziņojums (Stocktaking Report) Secinājumi un rekomendācijas Prof. Andrejs Rauhvargers, starptautiskās

Sīkāk

Autentifikācija Windows darbstacijās ar eid viedkarti Konfigurācijas rokasgrāmata Konfigurācija atbilst Windows Server 2012 R2 un Windows Server 2008

Autentifikācija Windows darbstacijās ar eid viedkarti Konfigurācijas rokasgrāmata Konfigurācija atbilst Windows Server 2012 R2 un Windows Server 2008 Autentifikācija Windows darbstacijās ar eid viedkarti Konfigurācijas rokasgrāmata Konfigurācija atbilst Windows Server 2012 R2 un Windows Server 2008 R2 domēna kontroleriem ar atbilstošu Aktīvās Direktorijas

Sīkāk

Kārtības 2. pielikums "Latvijas Bankas elektroniskās klīringa sistēmas (EKS) funkcionālais apraksts"

Kārtības 2. pielikums Latvijas Bankas elektroniskās klīringa sistēmas (EKS) funkcionālais apraksts Latvijas Bankas Zibsaišu reģistra funkcionālais apraksts Saturs Pielikums Latvijas Bankas valdes 2019. gada 11. aprīļa kārtībai Nr. 1560/3 1. IBAN konta numuru un identifikatoru sasaiste... 2 2. Ziņojumu

Sīkāk

Balcony glazing systems, series 630, 650

Balcony glazing systems, series 630, 650 Balkonu iestiklojuma sistēmas Balcony glazing systems Sērija 630 Series 630 Saturs Content Balkonu iestiklojums Balcony glazing Priekšrocības Advantages Projektēšana un ražošana Design and production Sērija

Sīkāk

Prezentacja programu PowerPoint

Prezentacja programu PowerPoint Kā gudri pārdot internetā? Turība 29.09.2016 www.gemius.lv Kas ir Linda Egle BAT absolvente mag.soc.sc. Gemius Latvia, PR & Mārketings LASAP, biedre LRA, biedre Gemius Latvia, vadītāja LASAP, valdes locekle

Sīkāk

IANSEO - Integrated Result System - Version ( ( )) - Release STABLE

IANSEO - Integrated Result System - Version ( ( )) - Release STABLE čempionāts 2015 Summary SUMMARY Medal Standings... 2 Medallists by Event... 3 Number of Entries by Country... 4 Number of Entries by Event... 5 Entries by Country... 6 Final Ranking Individual... 8 Recurve

Sīkāk

943184

943184 Oras Medipro INSTALLATION AND MAINTENANCE GUIDE Contents DK Indholdsfortegnelse EE Sisukord FI Sisällysluettelo LT Turinys LV Saturs NO Innhold PL Spis treści RU Coдержание SE Innehållsförteckning UA

Sīkāk