//C++:
#include <iostream>
#include <string.h>
using namespace std;
int F(int n) {
if(n == 0) {
return 0;
}
if(n == 1) {
return 1;
}
else
return F(n-1) + F(n-2);
}
int main()
{
int index;
int ok=0;
char x[3];
do{
cout<<"index=";cin>>index;
for(int i=0;i<index;i++)
cout<<F(i)<<' ';
cout<<endl;
cout<<"Repeat? (Yes/No):";
cin>>x;
if(strcmp(x,"No")==0)
ok=1;
cout<<endl;
}while(ok==0);
return 0;
}
Answer:
Output device
Explanation:
The screen/projector puts out data (in this case the presentation) for viewers.
Answer:
LIST
Explanation:
NTFS is A proprietary journaling file system developed by Microsoft. It started with windows 3.1.
List Folder Contents: Is what Gives authorized user the permission to viewing and listing of files and sub-folders as well as executing of files inherited by folders only.
NTFS permissions applies to every file and folder stored on a volume formatted with the NTFS file system. By default, permissions are inherited from a root folder to the files and sub-folders beneath it, although this inheritance can be disabled.
List Folder Contents will allow you to display the folder's contents and to display the data, attributes, owner, and permissions for files within the folder.
The NTFS permission that applies to the Domain Users group that will allow Sally to do what he wants without allowing more access than necessary is LIST.
Answer:
A spreadsheet program included in Microsoft Office suit of application. Spreadsheets present tables of value arranged in rows and columns that can be manipulated mathematically using both basic and advanced functions.