Explain how to delete a file using each of the following interaction styles 1)Direct manipulation 2)Menu selection 3)Form fill-in 4)Command language 5)Natural language
By using the given Interaction styles a file can be deleted as given below :
1) Direct manipulation : In direct manipulation a file can be deleted by selecting it and just pressing the delete button , then the file is sent to recycle bin and and is disposed by time.
2) Menu selection : Click on more options button after selecting the file to be deleted and select trash to delete the file.
3) Form fill-in : In the form fill-in technique click on the file list tab in work bench , the list of files along with the action delete will be shown , click on delete to remove the file
4) Command Language : Go to command prompt , type the command del along with the file name and its type as del [filename.filetype] for exanmple :
del example.txt
5) Natural language : To delete a file using natural language the filename along with delete is used as, DELETE FILE
Explain how to delete a file using each of the following interaction styles 1)Direct manipulation 2)Menu...
chpater 7&8 Designing the user interface: strategies for effective human-computer interaction (textbook) 1.An airline company is designing a new on-line reservation system. They want to add some direct-manipulation features. For example, they would like customers to click a map to specify the departure cities and the destinations, and to click on the calendar to indicate their schedules. From your point of view, list four benefits and four problems of the new idea compared with their old system, which required the...
Develop app using java Country List Manager Console Country List Manager COMMAND MENU 1 - List countries 2 - Add a country 3 - Exit Enter menu number: 1 Canada United States Mexico Enter menu number: 2 Enter country: Thailand This country has been saved. Enter menu number: 1 Canada United States Mexico Thailand Enter menu number: 3 Goodbye. Specifications Create a class named CountryIO that contains these methods: public static void readData() public static void writeData(String text) Store the...
Develop a windows form application named File and Folder organizer which consists of: 1. Delete Button 2. Search Button 3. Rename Button 4. Move Button 5. Preview Visual Studio C#
Question 1 a. Define the following matrices in a script file (M-file), ? = ( 8 9 10 11; 23 9 16 15 ;11 12 3 6; 1 2 8 9 ) ? = ( 2 21 7 15; 12 4 8 22; 23 9 5 13; 23 4 21 22) ℎ = (4 9 12 15) b. Add suitable lines of codes to the M-file to do the following. Each of the following points should be coded in only...
Create a file with the following information using either vi. 1 Ida Rather teacher 2 Adrian Wall Historian 3 Grant Hill Sportsman 4 Bill Gates Genius 5 Alex Bell Inventor Sort file people by their last name, placing the results in a file called peoplelast. (Check your work by displaying peoplelast with the command more peoplelast.) Enter the sort command used: _______________________________________ Sort the original file people by their 'Occupation', displaying the output on the screen. Enter the sort command...
1. Explain the following primary file organizations: (1) a heap file (2) a sorted file. 2. Why is choosing a file organization important for a database? 3. If the primary index file contains bi blocks, how many of block accesses to get the block containing a particular record? 4. Which indexes are based on sequentially ordered files (a) primary index (b) clustering index (c) secondary index (d) B-tree index (e) B+-tree (have more than one correct answer)? 5. Explain the...
CSC 130 Lab Assignment 8 – Program Menu Create a C source code file named lab8.c that implements the following features. Implement this program in stages using stepwise refinement to ensure that it will compile and run as you go. This makes it much easier to debug and understand. This program presents the user a menu of operations that it can perform. The choices are listed and a prompt waits for the user to select a choice by entering a...
Using a Linux command-line interpreter, show the screenshots for executing the following commands: (1) display the current working directory, (2) list the contents of a directory, (3) change directory, (4) create a directory, (5) clear the screen, (6) copy a file from a directory into another directory, (7) delete a directory, (8) delete a file, (9) report information for a single process or set of processes, and (10) report a real-time statistics for current processes.
Using the following definition (List.h file) for a list, implement the member functions (methods) for the List class and store the implementation in a List.cpp file. Use a doubly linked list to implement the list. Write the client code (the main method and other non-class methods) and put in file driver.cpp. file: List.h typedef int ElementType; class node{ ElementType data; node * next; node* prev; }; class List { public: List(); //Create an empty list bool Empty(); // return true...
Write a C++ menu driven Payroll program. Must be user friendly. Menu 1. Check data file 2. Read Data file 3. Process payroll for one employee 4. Process payroll for all employees 5. Print out to a text or an HTML file 6. Exit You must use the following Payroll classes, structures, pointers, arrays, enum, vector, recursive, advance file I/O, STL, iterators and containers. The program to process an input file below to calculate tax of 28% and output it...