Create a movie of the robot (robot.jpg) moving across the moon (moon-surface.jpg).
What will be an ideal response?
```
/? ?
? Method t o c r e a t e a movie where a r o b o t c r a w l s
? a c r o s s t h e moon
? @param d i r e c t o r y t h e d i r e c t o r y t o s t o r e t h e frame s i n
?/
public void makeRobotMovie ( S t r i n g d i r e c t o r y )
{
// g e t t h e p i c t u r e s t o u s e
P i c t u r e p i c t 1 = new P i c t u r e ( F i l e C h o o s e r . getMediaPath ( ”moon?s u r f a c e . j p g ” ) ) ;
P i c t u r e p i c t 2 = new P i c t u r e ( F i l e C h o o s e r . getMediaPath ( ” r o b o t . j p g ” ) ) ;
P i c t u r e c o p y P i c t = null ;
// d e c l a r e o t h e r v a r i a b l e s
FrameSequencer f r a m e S e q u e n c e r =
new FrameSequencer ( d i r e c t o r y ) ;
int framesPerSec = 3 0 ;
// l o o p c r e a t i n g t h e frames
f o r ( i n t i = 0 ; i < f r a m e s P e r S e c ; i ++)
{
c o p y P i c t = new P i c t u r e ( p i c t 1 ) ;
c o p y P i c t . copy ( p i c t 2 , i + 7 , 3 0 0 ) ;
f r a m e S e q u e n c e r . addFrame ( c o p y P i c t ) ;
}
// p l a y t h e movie
frameSequencer . play ( framesPerSec ) ;
}
```
You might also like to view...
A_______ is created by establishing a secure tunnel through which data passes between multiple networks over the Internet.
a) virtual private network. b) private network. c) visual private network. d) None of the above.
You can attach one or more ____ to a contact to store documents, tables, pictures, or clip art, for example, along with their contact information.
A. locations B. contact groups C. email messages D. files
What happened to the files in the Recycle Bin?
What will be an ideal response?
Step 1. Access PowerShell console.
a. Click Start. Search and select powershell.
b. Click Start. Search and select command prompt.
Step 2. Explore Command Prompt and PowerShell commands.
a. Enter dir at the prompt in both windows.
b. Try another command that you have used in the command prompt, such as ping, cd, and ipconfig.
Step 3. Explore cmdlets.
a. PowerShell commands, cmdlets, are constructed in the form of verb-noun string. To identify the PowerShell command to list the subdirectories and files in a directory, enter Get-Alias dir at the PowerShell prompt.
```
PS C:UsersCyberOpsUser> Get-Alias dir
CommandType Name Version
Source
----------- ---- -------
------
Alias dir -> Get-ChildItem
```
b. For more detailed information about cmdlets, navigate to https://technet.microsoft.
com/en-us/library/ee332526.aspx.
c. Close the
A problem with virtual networks is that data transmitting through them cannot be encrypted and therefore is not secure.
Answer the following statement true (T) or false (F)