+1 (315) 557-6473 
Online computer security professional in California
2106 Order Completed
98 % Response Time
304 Reviews
Since 2012
Related Blogs

Programming Homework Help Tricks for DebuggingIn increasing order of ease of debugging, these are the following classes of bugs. Syntax errors. This can be caused by miscounting the number of brackets, missing some punctuation, or a typing mistake. Normally the compiler will point these out, and te...

2020-09-07
Read More

Improving Your Java Coding Skills by Learning How to DebugIt is no secret that most students spend a lot of time debugging rather than writing their Java code. In most universities and colleges, professors will only teach you the concepts of coding in Java and not how to fix the defects in your soft...

2020-09-07
Read More

Online computer security professional in California

California, USA

Irene M


Ph.D. in Computer Science, California Institute of Technology

Profession

Online computer security tutor in California

Skills

You don’t have to spend sleepless nights trying to look for computer security homework solutions. I am one of the highest-ranked computer security homework help tutors working with programminghomeworkhelp.com. I am always available and ready to help students like you attain good grades in computer security. I have knowledge of all computer security topics such as authentication, threats, and many more. If you are looking for the best online computer security tutor in California, contact me now and tell me what solution you are looking for and I will deliver it within your timelines.

Applied Cryptography Professional

Don't suffer in silence when I can help you ace your challenging applied cryptography homework no matter its complexity. I've always gone through the topic's concepts repeatedly as a professional tutor, which makes me experienced in handling various problems associated with it. Therefore, don't hesitate to ask for my applied cryptography assistance with anything.
Some of the major cryptography concepts that I fully understand and love working with include;
 Symmetric and asymmetric cryptosystems
 Public key infrastructure
 Message integrity and the digital signature
 Block and stream ciphers
I can also deal with message authentication, public-key cryptography, and other chief concepts of this topic. Despite its broad coverage, you can always have confidence in me for help with all the sub-topics underlying applied cryptography.

Blockchain and Decentralized Applications Tutor

I'm also an enthusiastic Blockchain and Decentralized Applications Tutor who has dealt with blockchain security, smart contracts, SNARKS, and various consensus protocols. You need nothing more than my experience and knowledge to excel in your homework, especially when you hire me to handle it on your behalf. Likewise, you can hire me for help with understanding concepts, where I'll be your online tutor. I solve exams from the point of view of the market (because I'm one of them). Therefore, you don't expect to fail with my detailed and original solutions to questions in Blockchain and Decentralized Applications.

Next-Generation System Designs Specialist

This topic contains techniques used to develop modern solutions to modern computer security problems. A record number of computer security students find it difficult to comprehend, thereby needing help with their homework. That's where I step in.
I'm a seasoned next-generation system designs specialist with sufficient knowledge and experience in handling cyber-physical systems, IoT and smart grid security, Edge computing data infrastructure security, and other concepts. My guarantee to all my students is top-ranking grades and professional service all the time. Welcome.

Best Network Security Homework Solver

Network security is yet another computer security subject matter that I exhaustively understand. More advantageously, I've solved uncountable homework on the topic, with no single report of failure from my students. No wonder I have one of the highest ratings as a computer security homework helper online. This translates to superb grades for you, too.
I promise to give a positive turn to the graph that defines your GPA as soon as you start working with me on this topic. Good for you, I can solve all types of problems in the various fields of network security regardless of their levels. Come for assistance with internet security protocol problems and get not only correct but also detailed and easy-to-follow solutions. I also understand everything about TCP attacks, DNS, DDoS, and SSL, among others.

Software Security Homework Helper

Contact me right now for correct and detailed solutions to your software security homework. With me, you'll realize how simple this topic can be because I utilize my experience to make you excel by all means. I can handle buffer overflow, trusted computing, SetUID, and other topics of the dreaded topic to ensure that you have the best solutions. Pay only a few bucks and get my expert services instantly. I'm available to start working on your order right now.
Get Free Quote
0 Files Selected

Operating System Design 

SIMMAC is a machine that contains a word-addressable memory of size 512, and an ALU for its arithmetic operations. Each instruction of SIMMAC consists of a 32-bit word in which the leftmost 16 bits are reserved for the opcode and the rightmost 16 bits are reserved for the operand. SIMMAC

Registers:

  • Accumulator(ACC) which is involved in all arithmetic operations
  • Storage Address Register(SAR) which is involved in all references to primary storage. SAR holds the address of the data
  • Storage Data Register(SDR) which is also involved in all references to primary storage. SDR holds the data specified in SAR
  • Primary Storage Instruction Address Register(PSIAR) which points to the location of the next machine instruction in primary storage
  • Temporary Register(TMPR) which is used (in this implementation) to hold the value of ACC while ACC is being used to increment PSIAR
  • Control Storage Instruction Address Register(CSIAR) which points to the location of the next micro-instruction to be executed. I did not use this register
  • Instruction Register(IR) which holds the current instruction being executed(not used).
  • Micro-instruction Register(MIR) which holds the current micro-instruction being executed (not used).

Instructions

Instruction:                                                 Format:
  • ADD (Opcode = 10) ADD
  • SUB (Opcode = 20) SUB
  • LDA ( Opcode = 30) LDA
  • STR (Opcode = 40) STR
  • BRH ( Opcode = 50) BRH
  • CBR (Opcode = 60) CBR
  • LDI ( Opcode = 70) LDI
  • HALT ( Opcode = 5) HALT<0>
SIMMAC is designed to read text files containing processes or programs written in its language. Each line of the text file contains a process or program starting with the process number, the arrival time, and the CPU time the process needs. The CPU time is the number of instructions in each process, where each instruction is a clock cycle and the time quantum, specified by the user, is an integer multiple of a clock cycle. In this way, the round-robin scheduler can execute each program for the time quantum and cycle through all the programs, thus allocating an equivalent CPU time to each program while making efficient use of the CPU at all times. The language of SIMMAC specifies that each instruction is written as shown in figure 1. In my implementation, SIMMAC’s language is written in 32-bit hexadecimal instructions, which are then split into opcode and operand before being executed. Because I separated the opcode from operand before execution, I did not use the micro-instructions where the TMPR register extracts the address portion of the instruction and places it in register SAR, then placing the integer corresponding to the location of SAR in main memory into register SDR. Although my design is a variation of the required design, it was advantageous because, for every instruction that contains such a sequence of micro-instructions, I saved the time required to process those three micro-instructions. To keep track of the locations of the start and end of each process, a tracker array was specified that stores the index of start and end for each process in the main memory. This facilitates access to each process whenever they are executed.

Memory

SIMMAC has a main memory array of size 512 to hold words of 32 bits in size. The main memory was designed to hold instructions from index 0 to 200 and data from index 201 to 511. Data are loaded by assigning the integer values to the corresponding positions in the main memory. The location of data was selected to include positions 201, 202, 301, and 302 to satisfy the requirements for programs 4 and 5 (processes 3 and 4 in SIMMAC). Because some instructions request more CPU time than the time quantum in a multitasking system using a round-robin, it is important that the status of the registers be saved until the scheduler comes back to finish the same process. The status of the process is usually stored in a process control block data structure. In SIMMAC, the status of each register is saved in array y, while array y is stored for each active process in a two-dimensional array PCB.

__________________________

| Process Control Block                               |

|ACC | SAR | SDR | PSIAR | TMPR | HALT |  

Schedule

SIMMAC uses a round-robin algorithm for process scheduling. Processes are read from a text file, placed in main memory, instruction by instruction, and then retrieved and added to the job queue. Round robin then allocates an equal amount of CPU time for each process until a time quantum has passed and the number of instructions executed is equal to a quantum. At this point, array y stores the current state of the registers for the next round( if quantum is less than the length of the process) and round-robin switches context to the next job. The algorithm keeps looping through the processes/jobs until all of them have been fully executed.

Programs

A total of five SIMMAC programs or processes were written in SIMMAC’s language. The execution of the five programs shows the functionality of the different instructions such as ADD, SUB, and CBR. The first three programs add twenty integers in different locations in the main memory and store the sum in a different location in the memory. The fourth process takes an integer (=> 100) in location 201 in main memory and decrements it by 1 until it is zero and the result is stored in location 202. This process tests SIMMAC’s subtract, conditional branch, and store instructions. The fifth process takes the integer in location 301 and increments its value by two until its value has increased by 200, and stores the result in location 302 in main memory. This is the most complex process because a counter (=100) is necessary to know when the integer has been increased by 200. By having a counter (=100) and decrementing it by 1 each time, while incrementing the value by 2, the conditional branch instruction “knows” if the value has been increased by 200 or not. If the counter is not zero, the value has not been increased by 200. This process tests addition, subtraction, conditional branch, and store in the same process.