PRINT COMPANION - BUS DRIVEN INFO SYS
6th Edition
ISBN: 9781264115273
Author: BALTZAN
Publisher: MCG
expand_more
expand_more
format_list_bulleted
Question
Chapter 4, Problem 7CBT
To determine
To discuss:
The three areas of information security.
Drafting a document to comprehend the different area of information security, and recommendations for a secure e-business environment.
Expert Solution & Answer
Want to see the full answer?
Check out a sample textbook solutionStudents have asked these similar questions
Whentheuserenters!!,themostrecentcommandinthehistoryisexecuted.In the example above, if the user entered the command:
Osh> !!
The ‘ls -l’ command should be executed and echoed on user’s screen. The command should also be placed in the history buffer as the next command.
Whentheuserentersasingle!followedbyanintegerN,theNthcommandin the history is executed. In the example above, if the user entered the command:
Osh> ! 3
The ‘ps’ command should be executed and echoed on the user’s screen. The command should also be placed in the history buffer as the next command.
Error handling:
The program should also manage basic error handling. For example, if there are no commands in the history, entering !! should result in a message “No commands in history.” Also, if there is no command corresponding to the number entered with the single !, the program should output "No such command in history."
Activity No.
Activity
Time (weeks)
Immediate Predecessors
1
Requirements collection
3
2
Requirements structuring
4
1
3
Process analysis
3
2
4
Data analysis
3
2
5
Logical design
50
3,4
6
Physical design
5
5
7
Implementation
6
6
c. Using the information from part b, prepare a network diagram. Identify the critical path.
2. UNIX Shell and History Feature [20 points]
This question consists of designing a C program to serve as a shell interface that
accepts user commands and then executes each command in a separate process. A
shell interface gives the user a prompt, after which the next command is entered.
The example below illustrates the prompt osh> and the user's next command:
cat prog.c. The UNIX/Linux cat command displays the contents of the file
prog.c on the terminal using the UNIX/Linux cat command and your program
needs to do the same.
osh> cat prog.c
The above can be achieved by running your shell interface as a parent process.
Every time a command is entered, you create a child process by using fork(),
which then executes the user's command using one of the system calls in the
exec() family (as described in Chapter 3). A C program that provides the general
operations of a command-line shell can be seen below.
#include
#include
#define MAX LINE 80 /* The maximum length command */
{
int…
Chapter 4 Solutions
PRINT COMPANION - BUS DRIVEN INFO SYS
Ch. 4 - Prob. 1OCQCh. 4 - Prob. 2OCQCh. 4 - Prob. 3OCQCh. 4 - Prob. 4OCQCh. 4 - Prob. 5OCQCh. 4 - Prob. 6OCQCh. 4 - Prob. 1RQCh. 4 - Prob. 2RQCh. 4 - Prob. 3RQCh. 4 - Prob. 4RQ
Ch. 4 - Prob. 5RQCh. 4 - Prob. 6RQCh. 4 - Prob. 7RQCh. 4 - Prob. 8RQCh. 4 - Prob. 9RQCh. 4 - Prob. 10RQCh. 4 - Prob. 11RQCh. 4 - Prob. 12RQCh. 4 - Prob. 13RQCh. 4 - Prob. 14RQCh. 4 - Prob. 1CCOCh. 4 - Prob. 2CCOCh. 4 - Prob. 3CCOCh. 4 - Prob. 4CCOCh. 4 - Prob. 1CCTCh. 4 - Prob. 2CCTCh. 4 - Prob. 3CCTCh. 4 - Prob. 4CCTCh. 4 - Prob. 5CCTCh. 4 - Prob. 6CCTCh. 4 - Prob. 1CBTCh. 4 - Prob. 2CBTCh. 4 - Prob. 3CBTCh. 4 - Prob. 4CBTCh. 4 - Prob. 5CBTCh. 4 - Prob. 6CBTCh. 4 - Prob. 7CBTCh. 4 - Prob. 8CBTCh. 4 - Prob. 9CBTCh. 4 - Prob. 10CBTCh. 4 - Prob. 11CBTCh. 4 - Prob. PIAYKBPCh. 4 - Prob. PIIAYKBPCh. 4 - Prob. PIIIAYKBPCh. 4 - Prob. PIVAYKBPCh. 4 - Prob. PVAYKBP
Knowledge Booster
Similar questions
- Send me the solution to the following question based on the source and I do not want the solution from artificial intelligencearrow_forwardQuestion#2: Design and implement a Java program using Abstract Factory and Singleton design patterns. The program displays date and time in one of the following two formats: Format 1: Date: MM/DD/YYYY Time: HH:MM:SS Format 2: Date: DD-MM-YYYY Time: SS,MM,HH The following is how the program works. In the beginning, the program asks the user what display format that she wants. Then the program continuously asks the user to give one of the following commands, and performs the corresponding task. Note that the program gets the current date and time from the system clock (use the appropriate Java date and time operations for this). 'd' display current date 't': display current time 'q': quit the program. • In the program, there should be 2 product hierarchies: "DateObject” and “TimeObject”. Each hierarchy should have format and format2 described above. • Implement the factories as singletons. • Run your code and attach screenshots of the results. • Draw a UML class diagram for the program.arrow_forwardDon't use ai to answer I will report you answerarrow_forward
- The following data were taken during a one-hour trial run on a single cylinder, single acting, four-stroke diesel engine of cylinder diameter of 175 mm and stroke 225 mm , the speed being constant at 1000 rpm : Indicated mep: 5.5 barsDiam. of rope brake: 1066 mmLoad on brake: 400 NReading of balance: 27 NFuel consumed: 5.7 kgCalorific value: 44.2 MJ/kg Calculate the indicated power, brake power, specific fuel consumption per indicated kWh and per brake kWh , mechanical efficiency, indicated thermal and brake thermal efficiency.arrow_forward#include <linux/module.h> #include <linux/kernel.h> // part 2 #include <linux/sched.h> // part 2 extra #include <linux/hash.h> #include <linux/gcd.h> #include <asm/param.h> #include <linux/jiffies.h> void print_init_PCB(void) { printk(KERN_INFO "init_task pid:%d\n", init_task.pid); printk(KERN_INFO "init_task state:%lu\n", init_task.state); printk(KERN_INFO "init_task flags:%d\n", init_task.flags); printk(KERN_INFO "init_task runtime priority:%d\n", init_task.rt_priority); printk(KERN_INFO "init_task process policy:%d\n", init_task.policy); printk(KERN_INFO "init_task task group id:%d\n", init_task.tgid); } /* This function is called when the module is loaded. */ int simple_init(void) { printk(KERN_INFO "Loading Module\n"); print_init_PCB(); printk(KERN_INFO "Golden Ration Prime = %lu\n", GOLDEN_RATIO_PRIME); printk(KERN_INFO "HZ = %d\n", HZ); printk(KERN_INFO "enter jiffies = %lu\n", jiffies); return 0; } /* This function is called when the…arrow_forwardWhat is the theory behind this bell when correctly wired; i.e., how does it work?arrow_forward
- mylabmastering.pearson.com Chapter 12 - Lecture Notes.pptx: (MAE 272-01) (SP25) DY... Document Sharing P Pearson MyLab and Mastering User Settings Part A P Course Home b Success Confirmation of Question Submission | bartleby A particle moves along an Archimedean spiral r = (80) ft, where 0 is given in radians. (Figure 1) If ė = = 4 rad/s and € = 5 rad/s², determine the radial component of the particle's velocity at the instant Express your answer to three significant figures and include the appropriate units. Figure y r = Α ? Vr = Value Units Submit Request Answer Part B Determine the transverse component of the particle's velocity. Express your answer to three significant figures and include the appropriate units. о MÅ ve = Value Submit Request Answer Part C Units ? 1 of 1 Determine the radial component of the particle's acceleration. Express your answer to three significant figures and include the appropriate units. Ar = (80) ft о ΜΑ Value Units ? = π/2 rad.arrow_forwardPlease dont use AIarrow_forwardSend me the solution to the following question based on the source and I do not want the solution from artificial intelligencearrow_forward
- Q5: Find the force in each member of truss in figure below. 10 kN -2 m- 4 m 2 m 5 kN 4 m 45arrow_forwardCan you help me with a matlab code? I am trying to plot the keplerian orbital elements over time. I would usually find the orbit using cartesian system and then transform into keplerian orbital elements. Is there a way to directly integrate keplerian orbital elements?arrow_forwardList at least five Operating Systems you know. What is the difference between the kernel mode and the user mode for the Linux? What is the system-call? Give an example of API in OS that use the system-call. What is cache? Why the CPU has cache? What is the difference between the Static Linking and Dynamic Linking when compiling the code.arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
arrow_forward_ios
Recommended textbooks for you
- MATLAB: An Introduction with ApplicationsEngineeringISBN:9781119256830Author:Amos GilatPublisher:John Wiley & Sons IncEssentials Of Materials Science And EngineeringEngineeringISBN:9781337385497Author:WRIGHT, Wendelin J.Publisher:Cengage,Industrial Motor ControlEngineeringISBN:9781133691808Author:Stephen HermanPublisher:Cengage Learning
- Basics Of Engineering EconomyEngineeringISBN:9780073376356Author:Leland Blank, Anthony TarquinPublisher:MCGRAW-HILL HIGHER EDUCATIONStructural Steel Design (6th Edition)EngineeringISBN:9780134589657Author:Jack C. McCormac, Stephen F. CsernakPublisher:PEARSONFundamentals of Materials Science and Engineering...EngineeringISBN:9781119175483Author:William D. Callister Jr., David G. RethwischPublisher:WILEY
MATLAB: An Introduction with Applications
Engineering
ISBN:9781119256830
Author:Amos Gilat
Publisher:John Wiley & Sons Inc
Essentials Of Materials Science And Engineering
Engineering
ISBN:9781337385497
Author:WRIGHT, Wendelin J.
Publisher:Cengage,
Industrial Motor Control
Engineering
ISBN:9781133691808
Author:Stephen Herman
Publisher:Cengage Learning
Basics Of Engineering Economy
Engineering
ISBN:9780073376356
Author:Leland Blank, Anthony Tarquin
Publisher:MCGRAW-HILL HIGHER EDUCATION
Structural Steel Design (6th Edition)
Engineering
ISBN:9780134589657
Author:Jack C. McCormac, Stephen F. Csernak
Publisher:PEARSON
Fundamentals of Materials Science and Engineering...
Engineering
ISBN:9781119175483
Author:William D. Callister Jr., David G. Rethwisch
Publisher:WILEY