Optional standby systems, as classified by the AHJ, would generally be required for all of the following option d .
What is a standby system that may be chosen?systems that are designed to provide electricity to buildings or other objects, whether they are public or private, when the system's functioning is not critical to life safety. These systems are designed to automatically or manually provide on-site generated or stored power to chosen loads.
What three different types of backup power systems are there?Emergency power, legally mandated backup power, and voluntary standby power are the three categories of emergency and standby power systems, according to NFPA 70: National Electrical Code (NEC).
To know more about Optional standby systems visit
brainly.com/question/29892534
#SPJ4
The text between < html > and < /html > defines the _____.
a) active Web-page area
b) active code on a page
c) active text on a page
d) active image on a page
Answer:
active text on a page
Explanation:
Alejandro wants to post an animation on his social media page that shows a series of slightly different images displayed in sequence. What type of animation should he select?
A.) Animated gif
B.) HTML 5
C.) Adobe Flash
D.) Adobe animate cc
Answer:
Adobe Flash
Explanation:
From the list of given options, Adobe Flash answers the question.
Adobe Flash are basically multimedia animations that are created to include numerous images which are displayed in sequence.
Other options such as Adobe animation cc is a software used to create flash animations, html5 is a web language, animated GIF are short animations.
The type of animation he should select is A.) Animated gif
Animated gif are picture which are in Graphic interchange format (GIF) .
Animated gif are very easy to download because they download quickly.
Animated gif are picture that always move non stop when displayed on a computer screen or other device as the picture changes from one picture to another picture.
They can always be found on the internet and they are mostly used as an advertisement pictures that is embedded on web pages which help to showcase a company product.
Inconclusion The type of animation he should select is A.) Animated gif.
Learn more about Animated gif here:
https://brainly.com/question/15057611
What is Word's default color for highlighting text?
O orange
O gray
O yellow
O blue
Answer:
Yellow.
Explanation:
Yellow is typically the color but you can always manually change it.
Answer:
yellow
Explanation:
On the home tab of the ribbon the default color for highlighting text and tool is yellow
employees in the sales department need to be able to access the sales share on the file server. they will need to have the ability to create files, read them, and make corrections or additions. which of the following share permissions should the group be given?
A: 'change' is the share permission that the group should be given.
The 'change' is the type of share permission that enables users to create and read files, as well as add, edit and delete files and folders. Change permissions are not assigned by default; rather they are provided by the administration.
Based on the given scenario where in the sales department employees need to be allowed access to the sales being shared on the file server. In order to meet the goal, the employees require the ability to create and read files, as well as make corrections or additions. Thus, the employees should be given the share permission of 'change'.
"
Complete question is:
employees in the sales department need to be able to access the sales share on the file server. they will need to have the ability to create files, read them, and make corrections or additions. which of the following share permissions should the group be given?
a. change
b. read
c. modify
d. full control
"
You can learn more about permission at
https://brainly.com/question/13244431
#SPJ4
Which tool adds different amazing effects to a picture.
(a) Paint
(b) Lines tool
(c) Magic tool
Answer:
magic tool
Explanation:
Choose all of the items that represent parts of an operating system.
kernel
printer
web browser
shell
power supply
ANSWER: kernel and shell
The items that represents the parts of an operating system are:
kernelshellWhat is an OS?An operating system (OS) is a software program that manages computer hardware and software resources and provides common services for computer programs. It acts as an intermediary between computer applications and the computer hardware.
The kernel is the core part of the operating system that manages system resources such as the CPU, memory, and input/output (I/O) devices. It is responsible for managing processes, memory management, and scheduling tasks.
Without the kernel, the operating system would not be able to function properly.
Read more about operating system here:
https://brainly.com/question/22811693
#SPJ1
Array Basics pls help
Answer:
import java.util.Random;
class Main {
static int[] createRandomArray(int nrElements) {
Random rd = new Random();
int[] arr = new int[nrElements];
for (int i = 0; i < arr.length; i++) {
arr[i] = rd.nextInt(1000);
}
return arr;
}
static void printArray(int[] arr) {
for (int i = 0; i < arr.length; i++) {
System.out.println(arr[i]);
}
}
public static void main(String[] args) {
int[] arr = createRandomArray(5);
printArray(arr);
}
}
Explanation:
I've separated the array creation and print loop into separate class methods. They are marked as static, so you don't have to instantiate an object of this class type.
• Open your Netbeans IDE and answer the following question
• Create a folder on the desktop. Rename it with your student name and student number
• Save your work in the folder you created.
At a certain store they sell blank CDs with the following discounts:
* 10% for 120 or more
* 5% for 50 or more
* 1% for 15 or more
* no discount for 14 or less
Write a program that asks for a number of discs bought and outputs the correct discount. Use either a switch statement or if..elseif.. ladder statements. Assuming that each blank disk costs N$3.50. The program should then calculate the total amount paid by the buyer for the discs bought.
Answer:
public static void main(String[] args)
{
int cdCount;
double cdCountAfterDiscount;
DecimalFormat df = new DecimalFormat("$##.##"); // Create a Decimal Formatter for price after discount
System.out.println("Enter the amount of CD's bought");
Scanner cdInput = new Scanner(System.in); // Create a Scanner object
cdCount = Integer.parseInt(cdInput.nextLine()); // Read user input
System.out.println("CD Count is: " + cdCount); // Output user input
if(cdCount <= 14 )
{
System.out.println("There is no discount");
System.out.println("The final price is " + cdCount*3.5);
}
if(cdCount >= 15 && cdCount<=50)
{
System.out.println("You have a 1% discount.");
cdCountAfterDiscount = (cdCount *3.5)-(3.5*.01);
System.out.println("The final price is " + df.format(cdCountAfterDiscount));
}
if(cdCount >= 51 && cdCount<120)
{
System.out.println("You have a 5% discount.");
cdCountAfterDiscount = (cdCount *3.5)-(3.5*.05);
System.out.println("The final price is " + df.format(cdCountAfterDiscount));
}
if(cdCount >= 120)
{
System.out.println("You have a 10% discount.");
cdCountAfterDiscount = (cdCount *3.5)-(3.5*.1);
System.out.println("The final price is " + df.format(cdCountAfterDiscount));
}
}
The Fibonacci sequence begins with 0 and then 1 follows. All subsequent values are the sum of the previous two, for example: 0, 1, 1, 2, 3, 5, 8, 13. Complete the fibonacci() method, which takes in an index, n, and returns the nth value in the sequence. Any negative index values should return -1.
Ex: If the input is: 7
the out put is :fibonacci(7) is 13
Note: Use recursion and DO NOT use any loops. // is this mean i don't have to use loops? for (int i = 1; i<= n; ++i)
import java.util.Scanner;
public class LabProgram {
public static int fibonacci(int n) {
/* Type your code here. */
public static void main(String[] args) {
Scanner scnr = new Scanner(System.in);
int startNum;
System.out.println("Enter your number: ");
startNum = scnr.nextInt();
System.out.println("fibonnaci(" + startNum + ") is " + fibonacci(startNum));
}
}
Answer:
if this helps you,do consider marking my ans as brainliest.
Explanation:
import java.util.Scanner;
public class LabProgram{
public static int fibonacci(int n) {
/* Type your code here. */
if(n<0)
return -1;
if(n==0||n==1)
return n;
else
return fibonacci(n-1)+fibonacci(n-2);
}
public static void main(String[] args) {
Scanner scnr = new Scanner(System.in);
int startNum;
System.out.println("Enter your number: ");
startNum = scnr.nextInt();
System.out.println("fibonnaci(" + startNum + ") is " + fibonacci(startNum));
}
}
Recursions involve calling a function from the function itself, until a condition is met.
The required function, where comments are used to explain each line is as follows:
//This defines the function
public static int fibonacci(int n) {
//The function returns -1, if n is negative
if(n<0){
return -1;}
//The function returns the value of n, if n is 0 or 1
if(n==0||n==1){
return n;}
//If otherwise
else{
//The function returns the nth term of the Fibonacci series
return fibonacci(n-1)+fibonacci(n-2);
}
}
At the end of the program, the nth term of the Fibonacci series is printed.
Read more about similar programs at:
https://brainly.com/question/24212022
1. What would be the best explanation of the variable name 'int indexSize'?
a. Shows the number in the index is big
b. Holds the number in the last index spot
c. Holds the number in the first index spot
d. Holds the number of indexes in the array
1The option that would be the best explanation of the variable name 'int indexSize' is option d. Holds the number of indexes in the array
What is the variable about?The variable name 'int indexSize' is one that tells that it have the number of indexes in an array.
Note that The use of the term "indexSize" is one that tells that it stand for the size or the amount of the indexes in the array, and thus it is one that is telling the total number of indexes as well as the elements that is seen in the array.
Therefore, It is common work in programming to be able to make use of variable names that are said to be descriptive.
Learn more about variable from
https://brainly.com/question/28248724
#SPJ1
What other new jobs could be created to help address the reality of climate change?
The new jobs that could be created to help address the reality of climate change are:
Environmental Engineer. Clean Car Engineer.Environmental Scientist. Conservation Scientist.What exactly is climate change?The term climate change is known to be a Long-term changes in temperature and weather patterns are referred to as climate change. These changes could be caused by natural processes, such oscillations in the solar cycle.
Note that human activities are known to be primarily the combustion of fossil fuels like coal, oil, and others are those that have been the primary cause of climate change.
Therefore, The new jobs that could be created to help address the reality of climate change are:
Environmental Engineer. Clean Car Engineer.Environmental Scientist. Conservation Scientist.Learn more about climate change from
https://brainly.com/question/1789619
#SPJ1
How to send and receive same bits with the SDR in simulink????????
Answer:
SI QUERÉS SALIMOS
Como te amo te adoro
by using the Communications Toolbox
Which of the following could be considered an algorithm?
directions for assembling a bicycle
the pages in a book
a file system directory
an application
F
ANSWER QUICKLY!!
Kenny is designing a document for the employee motivation campaign at his company. He is using various elements of design and grouping them accordingly. Which principle of design is Kenny following in his document?
Answer: The answer is Proximity.
Explanation:
The easiest way to select a cell (make it active) is to use the mouse to move the block plus sign pointer to the cell and then click.
Question 1 options:
True
False
Which of the following items are present in the function header?
A. function name and parameter (variable) list
B. parameter (variable) list
C. return value
D. function name
Given the following schema
AB ⟶ CD
A ⟶ B
B ⟶ E
E ⟶ F
A ⟶ F
G ⟶ H
H ⟶ E
GC ⟶ H
G⟶E
Required:
a. Find a minimal cover of this schema.
b. Find a key of this schema.
c. Find a 3rd normal form decomposition of this schema.
d. Find a BCNF decomposition of this schema.
Answer:
a)
A ⟶ BCD , B ⟶ E , E ⟶ F , G⟶ H , H ⟶ E
b) AG
c) attached below
d ) attached below
Explanation:
a) Minimal cover of this schema
This can be written following the steps below
step 1 : AB ⟶ C, AB ⟶ D , A ⟶ B , B ⟶ E, E ⟶ F , A⟶F, G ⟶ H, H ⟶ E, GC⟶H, G ⟶ E
removing redundant FD
AB ⟶ C , AB ⟶ D , A ⟶ B, B ⟶ E, E ⟶ F, G ⟶H , H⟶ E ,
eliminating p if Q⁺ contains p
Finally the Minimal cover of the schema
A ⟶ BCD , B ⟶ E , E ⟶ F , G⟶ H , H ⟶ E
B) Key of this schema
AG is the key of this schema given that ( AG )⁺ = ABCDEFGH
C) Determine the 3rd normal form decomposition
attached below
D) BCNF decomposition
attached below
Which key should you press to leave the cell as it originally was?
Answer:
Backspace.
Explanation:
Cancel Button you should press to leave the cell as it originally was. Cancel Button you should press to leave the cell as it originally was. This answer has been confirmed as correct and helpful.
Backspace is press to leave the cell as it originally was.
What is Backspace key?The Backspace key is situated in the top-right corner of the character keys part of the keyboard.
Backspace is replaced by a "delete" key on Apple computers, although it serves the same purpose.
There are no "backspace" keys on an Android or Apple iPhone smartphone or iPad tablet, but there is a key that serves the same purpose. Look for a key that resembles an arrow with a "X" or an arrow pointing left, as illustrated in the image.
Therefore, Backspace is press to leave the cell as it originally was.
To learn more about backspace, refer to the link:
https://brainly.com/question/29790869
#SPJ2
Write an if-else statement that assigns 0 to the variable b if the variable a is less than 10. Otherwise, it should assign 99 to the variable b .
espanol;
Escriba una declaración if-else que asigne 0 a la variable b si la variable a es menor que 10. De lo contrario, debería asignar 99 a la variable b
respuesta:Una declaración if le dice al programa que ejecute un bloque de código, si una condición es verdadera. En el siguiente código, escribimos un mensaje solo si x es mayor que 0:var x = 5;if (x > 0) { text('¡x es un número positivo!', 200, 200);}ingles;
Write an if-else statement that assigns 0 to the variable b if the variable a is less than 10. Otherwise, it should assign 99 to the variable b .
answer:An if statement tells the program to execute a block of code, if a condition is true. In the following code, we write a message only if x is greater than 0:var x = 5;if (x> 0) { text ('x is a positive number!', 200, 200);}xdAmerica's class struggle against the poor is nothing new—the struggle was formally launched in the early 1970s and has been carried out with great efficiency over the past 40 years.
America's class struggle against the poor is nothing new—this is true and Marxism was formally launched in the early 1970s
What is Marxism?This refers to the social theory that was propounded by Karl Marx who divided society into the bourgeoisie and proletariats as the people who control the capital and people who bring the labor
Hence, it can be seen that as a result of the class struggle, divide, and differences, this has led to class conflicts such as violence, industrial strikes and many more.
Read more about Marxism here:
https://brainly.com/question/29500032
#SPJ1
15. How many PC's can be connected to an SPS?
Answer:
The standby power supply SPS is specified by 2 numbers. Typically something like a maximum rating in watts W (or KiloWatts KW, 1000 W = 1 KW ) and a capacity of Watt Hours WH (or milli Watt Hours mWH 1 WH = 1000 mWH.)
How does calculate() work?
Answer:
calculate works by determining the amount of something
Explanation:
What is the work of continue statement in c programming
Answer:
The continue statement breaks one iteration (in the loop), if a specified condition occurs, and continues with the next iteration in the loop.
Explanation:
Learning Task 3: Below are different electronic diagrams. Write the name of
the diagram on your answer sheet.
BELL
Input
Video
Transform
Quantization
Entropy
Coding
Output
Bitstream
Inverte
Quantization
1 2 3
Inverse
Transform
Number to be
dropped when
energized by
electric current
Annunciato
DOOD
Intor intra
Prediction
Frame
Buffer
Ordinary
Push Button
Answer:
WAOW
Explanation:
You did better than I can
Zeke is working on a project for his economics class. He needs to create a visual that compares the prices of coffee at several local coffee shops. Which of the charts below would be most appropriate for this task?
Line graph
Column chart
Pie chart
Scatter chart
Opting for a column chart is the best way to compare prices of coffee at various local coffee shops.
Why is a column chart the best option?By representing data in vertical columns, this type of chart corresponds with each column's height showing the value depicted; facilitating an efficient comparison between different categories.
In our case, diverse branches of local coffee shops serve as various categories and their coffee prices serve as values. Depicting trends over time suggested usage of a line graph. Pie charts exhibit percentages or proportions ideally whereas scatter charts demonstrate the relationship between two variables.
Read more about column chart here:
https://brainly.com/question/29904972
#SPJ1
What kind of material is used for DRAM (dynamic random-access memory)?
The kind of material that is used for DRAM (dynamic random-access memory) is metal-oxide-semiconductor.
What is DRAM?DRAM was invented in 1968. It is a type of RAM used in modern computers and laptops. It is a type of random access memory. Its name is dynamic random access memory.
Metal-oxide-semiconductor is used in making the transistors and capacitors of the DRAM, which are used to store the data. They hold a bit of the data in these capacitors and transistors.
Thus, the material that is used is metal-oxide-semiconductor to make DRAM (dynamic random-access memory).
To learn more about DRAM, refer to the link:
https://brainly.com/question/20216206
#SPJ1
a technician is replacing a cable modem. the cable from the cable company has an inner solid wire conductor and an outer mesh conductor separated by pvc plastic insulation. which of the following network cable types is being used?
The network cable type that is being used by the technician is a coaxial cable. Coaxial cables are typically used in cable television systems, office buildings, and other work-sites for local area networks.
These cables are designed with an inner solid wire conductor and an outer mesh conductor, which are separated by PVC plastic insulation.
The inner conductor is responsible for carrying the signal, while the outer conductor serves as a shield to protect the signal from interference. The PVC plastic insulation helps to further protect the cable and prevent any signal loss. Therefore, the technician is replacing a coaxial cable in this scenario.
Learn more about plastic insulation: https://brainly.com/question/28443351
#SPJ11
from the list below, select all of the statements that are true regarding the ideal brayton and diesel cycles. multiple select question. the brayton cycle is executed in a closed loop of steady flow devices, while the diesel cycle occurs in a reciprocating piston-cylinder device.
1. The Brayton cycle is executed in a closed loop if steady flow devices, while Diesel cycle occurs in a reciprocating piston-cylinder device.
2. The heat rejection for the Brayton Cycle occurs at constant pressure, whereas heat rejection from the Diesel cycle occurs at constant volume.
what is Brayton cycle?
Assuming that the ideal Brayton Cycle begins with isentropic compression, put the remaining processes in order so they complete the closed-loop Brayton cycle.
2 . Constant - Pressure Heat Addition
3. Isentropic Expansion
4. Constant - Pressure Heat Rejection
The ratio of the cylinder volumes after and before the combustion process of the ideal Diesel cycle is called the Cutoff ( The ratio of the volumes at state 3 to the volume at state 2 is called the cutoff ratio) ratio.
The thermal efficiency of the Brayton cycle increases as a result of regeneration since less fuel is used for the same work output
learn more about Brayton cycle at
https://brainly.com/question/29410357
#SPJ4
what is document formatting?
Answer:
Document formatting refers to the process of designing and arranging the content, layout, style, and structure of a document to make it more readable, visually appealing, and professional-looking. Document formatting involves applying different formatting techniques such as setting margins, adding page numbers, adjusting font size and style, indenting paragraphs, adding headings and subheadings, using bullet points and numbered lists, and incorporating images, tables, and charts to enhance the presentation of the document.
Explanation:
A broadband connection is defined as one that has speeds less than 256,000 bps.
Question 25 options:
True
False
Answer:
A typical broadband connection offers an Internet speed of 50 megabits per second (Mbps), or 50 million bps.
Explanation:
I think I got it right, plz tell me if im wrong