Answer:
server-side scripting
Explanation:
What is the bit pattern (raw binary) of the single precision representation of the decimal number 0.125 following IEEE 754 standard
Answer:
The three elements that make up the number's 32 bit single precision IEEE 754 binary floating point representation:
Sign (1 bit) = 0 (a positive number)
Exponent (8 bits) = 0111 1100
Mantissa (23 bits) = 000 0000 0000 0000 0000 0000
Explanation:
1. First, convert to the binary (base 2) the integer part: 0.
Divide the number repeatedly by 2.
Keep track of each remainder.
We stop when we get a quotient that is equal to zero.
division = quotient + remainder;
0 ÷ 2 = 0 + 0;
2. Construct the base 2 representation of the integer part of the number.
Take all the remainders starting from the bottom of the list constructed above.
0(10) = 0(2)
3. Convert to the binary (base 2) the fractional part: 0.125.
Multiply it repeatedly by 2.
Keep track of each integer part of the results.
Stop when we get a fractional part that is equal to zero.
#) multiplying = integer + fractional part;
1) 0.125 × 2 = 0 + 0.25;
2) 0.25 × 2 = 0 + 0.5;
3) 0.5 × 2 = 1 + 0;
4. Construct the base 2 representation of the fractional part of the number.
Take all the integer parts of the multiplying operations, starting from the top of the constructed list above:
0.125(10) =
0.001(2)
5. Positive number before normalization:
0.125(10) =
0.001(2)
6. Normalize the binary representation of the number.
Shift the decimal mark 3 positions to the right so that only one non zero digit remains to the left of it:
0.125(10) =
0.001(2) =
0.001(2) × 20 =
1(2) × 2-3
7. Up to this moment, there are the following elements that would feed into the 32 bit single precision IEEE 754 binary floating point representation:
Sign: 0 (a positive number)
Exponent (unadjusted): -3
Mantissa (not normalized): 1
8. Adjust the exponent.
Use the 8 bit excess/bias notation:
Exponent (adjusted) =
Exponent (unadjusted) + 2(8-1) - 1 =
-3 + 2(8-1) - 1 =
(-3 + 127)(10) =
124(10)
9. Convert the adjusted exponent from the decimal (base 10) to 8 bit binary.
Use the same technique of repeatedly dividing by 2:
division = quotient + remainder;
124 ÷ 2 = 62 + 0;
62 ÷ 2 = 31 + 0;
31 ÷ 2 = 15 + 1;
15 ÷ 2 = 7 + 1;
7 ÷ 2 = 3 + 1;
3 ÷ 2 = 1 + 1;
1 ÷ 2 = 0 + 1;
10. Construct the base 2 representation of the adjusted exponent.
Take all the remainders starting from the bottom of the list constructed above:
Exponent (adjusted) =
124(10) =
0111 1100(2)
11. Normalize the mantissa.
a) Remove the leading (the leftmost) bit, since it's allways 1, and the decimal point, if the case.
b) Adjust its length to 23 bits, by adding the necessary number of zeros to the right.
Mantissa (normalized) =
1 000 0000 0000 0000 0000 0000 =
000 0000 0000 0000 0000 0000
12. The three elements that make up the number's 32 bit single precision IEEE 754 binary floating point representation:
Sign (1 bit) = 0 (a positive number)
Exponent (8 bits) = 0111 1100
Mantissa (23 bits) = 000 0000 0000 0000 0000 0000
Why is it important to ensure that your software is up to date?
Explanation:
It is important to ensure that your software is up to date simply because these updates often provide critical patches to security issues. These patches are to terminate any bugs or exploits that may cause harm to your computer system, and even your personal data. Updating your software allows the program to remove old outdated features, while installing newer/better features. They will often improve the stability and preformance as well.
The organization will most likely ___ to an internal user attempting to escalate privilege than to an external hacker
Answer:
respond differently.
Explanation:
NIST is acronym for National Institute of Standards and Technology and it's under the U.S. Department of Commerce. The NIST cybersecurity framework (CSF) is a powerful tool that provide guidelines for both the external and internal stakeholders of organization on how they can effectively and efficiently organize, manage, and improve their cybersecurity programs, so as to mitigate the risks associated with cybersecurity.
The NIST SP 800 30 is a risk mitigation framework that provide guidance for conducting or allows scope for research, assessment and acknowledgement for risk mitigation of federal information systems and organizations.
Typically, NIST SP 800 30 is used for translating cyber risk so that it can easily be understood by the chief executive officer (CEO) and board of both a public and private organization.
An organization is expected to most likely respond differently to an internal user such as one of its employees that attempt to escalate his or privilege than to an external hacker.
This is usually so because the organization trust its internal users to an extent than it does with external users or an attacker such as an external hacker.
You work as a computer technician for a production company that travels all over the world while filming and editing music videos. Due to the nature of video editing, you will be building a video production workstation for the company that will have the maximum amount of RAM, an 8-core CPU, a dedicated GPU, and a redundant array of solid state devices for storage. You are now determining which power supply to install in the system. What is the MOST important characteristic to consider when choosing a power supply
Answer: Input Voltage
Explanation:
Based on the information given, since the power supply to install in the system is being determined, the input voltage is the most important characteristic to consider when choosing a power supply.
The input voltage indicates the type of voltage and the electrical current that's required to power a device safely and effectively.
you press the F9 key to convert an object to a symbol true or false
Answer:
False,
Reason
F8 key is used for the coversion of object to symbol
kamusta Bagong user Ako dito
Answer:
kamusta Bagong user Ako dito = hello New user I'm here
What best Describes algorithm bias
Answer:
E
Explanation:
cause e
Which of the following technologies is an example of social media
Answer:
Is there multiple choice? Since it says "which of the following"
Explanation:
Social media are certain apps where people are social, with others such ad friends and family. Apps are In.sta.gram, Snap.ch.at, Twitter, etc. Um.. if you put the choices down, I can help you better
Why are peripherals added to computers?
to limit their applications
to change their purpose
to expand their capabilities
to specify their functions
Answer:
To expand their capabilities
Explanation:
They allow users to do more with computers
Assume that processor refers to an object that provides a void method named process that takes no arguments. As it happens, the process method may throw one of several exceptions. Write some code that invokes the process method provided by the object associated with processor and arrange matters so that your code causes any exception thrown by process to be ignored. Hint: use the catch (Exception ex) and do nothing under the catch clause.
Answer:
Following are the code to the given question:
try//defining a try block
{
processor.process();//defining an object processor that calls process method
}
catch(Exception e)//defining a catch block
{
}
Explanation:
In this question, the 'Try' and 'catch' block is used in which both the keywords are used to represent exceptions managed during runtime due to information or code errors. This try box was its code block which includes errors. A message queue catches the block errors and examines these.
In the try block, a method "process" is used which is create the object processor that calls the method.
Write a program, which will take 20, inputs from the user and find how many
odd and even numbers are there.
Pseudocode & Python
Answer:
user_input = [int(input()) for i in range(20)]
even = []
odd = []
for i in user_input:
if i%2:
even.append(i)
else:
odd.append(i)
print("odd : ", len(odd), "even : ", len(even))
Explanation:
The above code is written in python :
Using a list comprehension we obtain a list of 20 values from the user and store in the variable user_input.
Two empty list are defined, even and odd which is created to store even and odd values.
A for loop is used to evaluate through the numbers in user_input. Even values leave no remainder when Divided by 2 and are appended to the even list while those those leave a raunder are automatically odd values. The elements each list are counted using the len function and are displayed using the print statement.
When you purchase a device, system software is already loaded on it. Which of the following system software settings can you customize?
Answer:
Screen resolution
Explanation:
The brightness of the words and pictures displayed on computer screen is referred to as screen resolution. Items seem crisper at larger resolutions, such as 1600 x 1200 pixels. They also seem smaller, allowing for more objects to be displayed on the screen. The greater the resolution supported by a display, the larger it is.
Write an expression whose value is the concatenation of the three strigs name1, name2, and name3, separated by commas
Answer:
name1+","+name2+","+name3
Explanation:
Given
name1, name2 and name3
Required
Concatenate, separated by comma (,)
To concatenate, we simply use the + operator.
So, the expression is:
name1+","+name2+","+name3
Convert to different number system as mentioned.(17)10=(?)2
Robyn needs to ensure that a command she frequently uses is added to the Quick Access toolbar. This command is not found in the available options under the More button for the Quick Access toolbar. What should Robyn do?
Answer:
Access Quick Access commands using the More button.
Explanation:
To ensure that a command she frequently uses is added to the Quick Access toolbar Robyn would need to "Access Quick Access commands using the More button."
To do this, Robyn would take the following steps:
1. Go / Click the "Customize the Quick Access Toolbar."
2. Then, from the available options, he would click on "More Commands."
3. From the "More Commands" list, click on "Commands Not in the Ribbon."
4. Check the desired command in the list, and then click the "Add" button.
5. In the case "Commands Not in the Ribbon" list, did not work out Robyn should select the "All commands."
_____ uses computer-generated, three-dimensional images to create the illusion of interaction in a real-world environment.
Answer:
"Virtual reality" is the appropriate answer.
Explanation:
The utilization of technological advances gives the impression of a 3D interactive environment wherein the things that have such a perception of space embodiment or involvement, are considered as Virtual reality.
Virtual reality implementations often include:
Entertainment,Medical and Educational activities.Program design tools. __________ uses English-like statements to outline the logic of a computer program. __________ graphically shows the step-by-step actions a computer program will take.
Answer:
Pseudocode; flowchart.
Explanation:
Pseudocode uses English-like statements to outline the logic of a computer program. A pseudocode gives a summary of the steps adopted during a software development process using simple (concise) words and symbols.
A flowchart can be defined as a graphical representation of an algorithm for a process or workflow.
Basically, a flowchart make use of standard symbols such as arrows, rectangle, diamond and an oval to graphically represent the steps associated with a system, process or workflow sequentially i.e from the beginning (start) to the end (finish).
When Maggie attempted to reconcile her company's monthly sales revenue, she used a TOTALS query to sum the sales from the invoice line items for the month. But the sum of the sales produced by the query did not agree with the sum of the monthly sales revenue reported on the company's general ledger. This is best described as a problem with
Answer:
The correct answer is "Consistency".
Explanation:
It should have been continuous to have the information management service. All information must have been linked, gathered using the same technique as well as measurement but also displayed simultaneously frequencies.Throughout this query, Maggie considers the organization proceeds by a system whereby financial transactions online are not influenced by trade payables or rebates as they are separate accounts that are afterward adjusted for the business model.Thus, the above is the correct answer.
what is an example of analog device
Explanation:
Thermometer. Speedometer. Analogue Clock. Seismometer. Voltmeter. Flight Simulators.hope it helps stay safe healthy and happy...Which software system is used to store appointments, scheduling, registration, and billing and receivables
Answer:
"Practice Management System (PMS)" is the appropriate answer.
Explanation:
It's the kind of technology that has been discovered in healthcare professionals, developed to handle the day-to-day activities utilizing the desktop application.Is therefore typically utilized assurance and consulting tasks, but can also be connected to medical digital records dependent on multiple treatment practices requirements.Thus the above is the correct answer.
Which of these collections defines a LIST? ["apple", "banana", "cherry"] {"apple", "banana", "cherry"} {"name": "apple", "color": "green"} ("apple", "banana", "cherry") Next ❯
Answer:
["apple", "banana", "cherry"]
Explanation:
In programming lists are defined by using square brackets. Curly brackets are used to define sets or dictionaries. Dictionaries are similar to lists but are not really considered lists since they use a key: value system unlike lists. Parenthesis in programming are used to define tuples or in some languages object literals with curly brackets inside. A list uses only square brackets, and depending on the language can either contain elements of the same type of different types. Therefore, the only correct example of a LIST in this question would be
["apple", "banana", "cherry"]
please answer me fast
Answer:
Btp
Explanation:
this will help you more
Answer:
BTP is the simplest and the most conventional model of topology
PTP
BTP✓✓✓
PTB
PTT
Envisioning our family members represented in a mobile, with photos of each member suspended by a thread and connected to bars containing images of other members, may help us better understand the idea that:
Answer:
Families are systems
Explanation:
first of all a system can be defined as a set of interconnected networks. Family is regarded as a system because it is made up of people who are interrelated and share certain behaviors. This question paints a mental image of a family tree. each of the members are linked related and linked. This goes to show that families are systems based on the definition of a system.
6. By default,how the table headings are placed. (2 Points)
bold and italic
bold and centered
bold and underlined
bold and aligned
We made a distinction between the forwarding function and the routing function performed in the network layer. What are the key differences between routing and forwarding
Answer: forwarding: move packets from router's input to appropriate router output
routing: determine route taken by packets from source to destination
Explanation:
The network layer refers to where connections take place in the internet communication process by sending packets of data between different networks.
The distinction between the forwarding function and the routing function performed in the network layer is that the forwarding function move packets from the input of the router to the appropriate router output while the routing function:m helps in knowing the routee taken by packets from the source to destination.
You have just assembled your first PC. You hit the power button and the computer turns on. As the computer runs through POST, it starts beeping multiple times and you don't see anything displayed on the LCD. You notice there are no activity lights flashing for the HDD. However, when you check the inside of the computer, you can hear the drive spinning up. What is the NEXT thing you are going to check in order to get the PC functioning
Answer:
Explanation:
If the HDD is spinning, this means that the power cable is correctly connected and that the drive is receiving power and powering on. However, this does not mean that the HDD is functioning correctly and reading the information. Therefore, the next logical step would be to check the SATA cable that connects the drive to the motherboard. The cable may be broken or maybe the SATA slot on the motherboard. Switch out the cables and plug it into another slot. If this does not work, then it may be that the HDD is broken. Multiple Beeps can also mean that the RAM or CPU is not plugged in correctly or broken.
If there is only a stop sign posted at a railroad
crossing, that means that the track is no
longer in use.
True
False
PLEASEE HELP
Answer:
false , those are called passive railways
Which access control type would you use to grant permissions based on the sensitivity of the information contained in the objects
Answer:
Mandatory Access Control (MAC) is a means of restricting access to system resources based on the sensitivity (as represented by a label) of the information contained in the system resource and the formal authorization (i.e., clearance) of users to access information of such sensitivity.
Escribe un ejemplo de:• Software de aplicación. • Software de diagnóstico. • Software de sistema. ayudenme plis, me toca entregar esto hoy. >﹏<
Answer:
1. Software de aplicación: Microsoft Word.
2. Software de diagnóstico: Speccy.
3. Software de sistema: Windows operating system (OS).
Explanation:
Un software puede definirse como un conjunto de instrucciones ejecutables (códigos) o una colección de datos que se utiliza normalmente para instruir a una computadora sobre cómo realizar una tarea específica y resolver un problema en particular.
Básicamente, los softwares se clasifican en tres (3) categorías principales y estas son;
1. Software de aplicación: es un software de usuario final que normalmente está diseñado para realizar tareas y funciones específicas.
Algunos ejemplos de software de aplicación son Microsoft PowerPoint, Notepad, Windows Media player, Firefox, Go-ogle Chrome, Adobe Photoshop, AutoCAD, etc.
2. Software de diagnóstico: estos son programas de software que se utilizan para solucionar problemas y posiblemente reparar un sistema informático.
Algunos ejemplos de software de diagnóstico son Speccy, Windows Sysinternals Suite, System Explorer, hddscan, HWiNFO, SIW (System Information for Windows), CPU-Z, HD Tune, etc.
3. Software de sistema: es un software que normalmente está diseñado para ejecutar el hardware de la computadora y todas las demás aplicaciones de software.
Algunos ejemplos de software del sistema son Linux, Windows OS, Mac OS, WinZip, McAfee antivirus, Norton antivirus, Avast antivirus, Piriform CCleaner, Ubuntu, etc.
Write a complete Java program called Rooter that gets a positive integer called "start" from the user at the command line and then finds the squareroot of every number from "start" down to 0. Use a while loop to count down. Print each square root on a separate line. Include data validation to ensure the user provides a positive integer. Assume that the user enters an integer, and for validation, just check to be sure it is positive. If the validation is not passed, provide the user with suitable feedback and stay in the program to let the user try again until valid input is received. Use the Math.sqrt(double a) method to find each square root.
Answer:
The program in Java is as follows:
import java.util.*;
import java.lang.Math;
public class Rooter{
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int start;
System.out.print("Start: ");
start = input.nextInt();
while(start<=0){
System.out.print("Number must be positive\nStart: ");
start = input.nextInt(); }
while(start>=0){
System.out.println(Math.sqrt(start));
start--; }
}
}
Explanation:
This declares start as integer
int start;
This prompts the user for input
System.out.print("Start: ");
This gets input for start
start = input.nextInt();
The following is repeated until the user input is valid i.e. positive
while(start<=0){
System.out.print("Number must be positive\nStart: ");
start = input.nextInt(); }
The following while loop prints the square root of each number till 0
while(start>=0){
System.out.println(Math.sqrt(start));
start--; }