Answer:
The correct answer is D)
Data in a Flat File System can be easily managed.
Explanation:
When every file in the database is stored under a different name, it is often referred to as a Flat File System.
This system of filing is common with all Windows 95 computers and other operating systems since it's launch.
In a Flat File System, files are organised in a hierarchical file system with a hierarchy of directories and subdirectories, with every directory containing a certain number of files.
Cheers!
monthlySales 102500 You earneda $5000 bonus!
monthlySales = 90000
monthlySales 112500 You earned a $5000 bonus!
All employees get one day off!
Answer:
To answer this question, i prepared a pseudocode and a program written in python;
Pseudocode begins here:
1. Start
2. Input montlySales
3. If monthlySales < 100000
3.1. Display Nothing
4. Else
4.1 Display “You earned a $5000 bonus!”
4.2 If monthlySales > 1.25 * 90000
4.2.1 Display “All employees get one day off!”
5. Stop
Python Program starts here (See attachment for proper view of the program):
#Prompt user for input
monthlySales = float(input("Monthly Sales: "))
#Check monthlySales
if monthlySales < 100000:
print("")
else:
print("You earned a $5,000 bonus")
if monthlySales > 1.25 * 90000:
print("All Employees get the day off")
Explanation:
To answer this question, a conditional if statement is needed.
The pseudocode (and the program) starts by prompting user for input;
Then, the user input is first compared with 100,000
If it's less than 100,000; then nothing is displayes
However, if it is at least 100,000
"You earned a $5,000 bonus" is displayed
It further checks if the user input is greater than 125% of 90,000
If yes, "All Employees get the day off" is displayed else, nothing is displayed.
The pseudocode (and the program) stops execution, afterwards
Answer:
The correct answer is 1000 MIPS.
Explanation:
Using the rule of three you can solve the needed cycles to complete 1.000.000 instructions.
1.000.000 instructions multiplied by 2 cycles, divided by 1 instruction is equal to 2.000.000 cycles to complete 1.000.000 instructions.
To find the MIPS you have to divide the frequency by the cycles needed to complete 1.000.000 instructions.
MIPS = 2GHZ / 2.000.000 cycles = 1000 MIPS.
Answer:
B.
Explanation:
In Javascript, the if should have a condition attached to it with parenthesis and curly braces.
A trap is nothing but an exception that is caused by an abnormal condition. It is also used to invoke a system call or kernel routine because this has a higher priority than the user’s code. An interrupt is a response generated by the hardware which will occur at random times during the execution of the program. However, we cannot devise a substitute for traps using interrupts and exceptions because of the following reasons:
1. The interrupts are asynchronous whereas the exceptions and the traps are said to be synchronous.
2. The traps and exceptions can be manipulated or called whenever required whereas interrupts occur mostly at unwanted and random times.
To stop a process from happening, Ctrl + C is also done which is a user-defined interrupt in DOS operating systems
example to help you. The algorithm that you will write should be in everyday language
(no pseudocode or programming language). Write your instructions at the bottom of the
page.
Example: 1. Move
the orange box 2
spaces to the right.
2. Move the green
box one space
down. 3. Move the
green box two
spaces to the left.
Write your instructions. Review the rubric to check your final work.
Rules: All 6 colors (red, green, yellow, pink, blue, purple) must be move to their new location on the grid. Block spaces are
barriers. You cannot move through them or on them – you must move around them
Answer:
Explanation:
Pink: Down 5 then left 2.
Yellow: Left 3 and down 2.
Green: Right 7, down 4 and left 1.
Purple: Up 6 and left 9.
Red: Left 7, down 5 and left 1.
You can do the last one, blue :)
Answer:
Explanation:
u=up, d=down, r=right, l=left
yellow: l3d2
pink: d5l2
green: r7d4l1
purple: u6l9
red: l7d5l1
blue: r2u7l5
the pivot point
the toolbar area
the view editor
the info header
7. You cannot use the manipulator widget to translate, define, rotate, or scale an object. (1 point)
true
false