Name some objectives that are not the goal of an inspection!

Answers

Answer 1

Explanation:

To identify potential problems that are not anticipated during the design or ... Some activities to consider are the following: ... First aiders names displayed.


Related Questions

Discuss the advantages and disadvantages of using digital publishing over traditional forms of offset publishing.
Write in paragraph pls

Answers

Answer:

Advantages:  Dynamic: Digital magazines are extremely dynamic. They can be read on tablets and mobile devices anywhere and anytime. Readers can access the information without delays.Unsold Stock: There are no fears of having unsold stock like that of printed newspapers and magazines.

Disadvantages: Digital magazines can sometimes be harder to read than printed magazines as the reader must be able to zoom in and out. Again, this would depend on the chosen digital magazine software. Other issues some people may face is outdated software, poor internet connection and download speeds. With a physical magazine or newspaper, you needn’t worry about it running out of power.

Using your knowledge of classes, arrays, and array list, write the Java code for the UML above in NetBeans. [7 marks]​

Answers

The Java code for the TestElection class that does the tasks is

java

import javax.swing.JOptionPane;

public class TestElection {

   public static void main(String[] args) {

       // Declare an array to store objects of the Election class

       int length = Integer.parseInt(JOptionPane.showInputDialog("Enter the number of candidates:"));

       Election[] candidates = new Election[length];

       // Request values from the user to initialize the instance variables of Election objects and assign these objects to the array

       for (int i = 0; i < length; i++) {

           String name = JOptionPane.showInputDialog("Enter the name of candidate " + (i + 1) + ":");

           int votes = Integer.parseInt(JOptionPane.showInputDialog("Enter the number of votes for candidate " + (i + 1) + ":"));

           candidates[i] = new Election(name, votes);

       }

       // Determine the total number of votes

       int totalVotes = 0;

       for (Election candidate : candidates) {

           totalVotes += candidate.getVotes();

       }

       // Determine the percentage of the total votes received by each candidate and the winner of the election

       String winner = "";

       double maxPercentage = 0.0;

       for (Election candidate : candidates) {

           double percentage = (double) candidate.getVotes() / totalVotes * 100;

           System.out.println(candidate.getName() + " received " + candidate.getVotes() + " votes (" + percentage + "%)");

           if (percentage > maxPercentage) {

               maxPercentage = percentage;

               winner = candidate.getName();

           }

       }

       System.out.println("The winner of the election is " + winner);

   }

}

What is the arrays about?

In the above code, it is talking about a group of things called "candidates" that are being saved in a special place called an "array. " One can ask the user how long they want the list to be using JOptionPane and then make the list that long.

Also based on the code, one can also ask the user to give us information for each Election object in the array, like the name and number of votes they got, using a tool called JOptionPane.

Learn more about  arrays from

https://brainly.com/question/19634243

#SPJ1

Using your knowledge of classes, arrays, and array list, write the Java code for the UML above in NetBeans. [7 marks] Write the Java code for the main method in a class called TestElection to do the following: a) Declare an array to store objects of the class defined by the UML above. Use a method from the JOptionPane class to request the length of the array from the user. [3 marks] b) Use a method from the JOptionPane class to request values from the user to initialize the instance variables of Election objects and assign these objects to the array. The array must be filled. [5 marks] c) Determine the total number of votes and the percentage of the total votes received by each candidate and the winner of the election. The sample output of your program is shown below. Use methods from the System.out stream for your output.

The third assignment involves writing a Python program to compute the cost of carpeting a room. Your program should prompt the user for the width and length in feet of the room and the quality of carpet to be used. A choice between three grades of carpeting should be given. You should decide on the price per square foot of the three grades on carpet. Your program must include a function that accepts the length, width, and carpet quality as parameters and returns the cost of carpeting that room. After calling that function, your program should then output the carpeting cost.
Your program should include the pseudocode used for your design in the comments. Document the values you chose for the prices per square foot of the three grades of carpet in your comments as well.
You are to submit your Python program as a text file (.txt) file. In addition, you are also to submit a test plan in a Word document or a .pdf file. 15% of your grade will be based on whether the comments in your program include the pseudocode and define the values of your constants, 70% on whether your program executes correctly on all test cases and 15% on the completeness of your test report.

Answers

Answer:

# price of the carpet per square foot for each quality.

carpet_prices=[1,2,4]

def cal_cost(width,height,choice):

 return width*height*carpet_prices[choice-1]  

width=int(input("Enter Width : "))

height=int(input("Enter Height : "))

print("---Select Carpet Quality---")

print("1. Standard Quality")

print("2. Primium Quality")

print("3. Premium Plus Quality")

choice=int(input("Enter your choice : "))

print(f"Carpeting cost = {cal_cost(width,height,choice)}")

Explanation:

The cal_cost function is used to return the cost of carpeting. The function accepts three arguments, width, height, and the choice of carpet quality.

The program gets the values of the width, height and choice, calls the cal_cost function, and prints out the string format of the total carpeting cost.

Multimedia can be used in
a) schools
b) advertising
c) all of these

Answers

c) all of these

multimedia can be used in schools, specially when there' an educational videos.

C) all of these
Multimedia can be used for multiple purposes including school and advertising

Without using parentheses, enter a formula in C4 that determines projected take home pay. The value in C4, adding the value in C4 multiplied by D4, then subtracting E4.

HELP!

Answers

Parentheses, which are heavy punctuation, tend to make reading prose slower. Additionally, they briefly divert the reader from the core idea and grammatical consistency of the sentence.

What are the effect of Without using parentheses?

When a function is called within parenthesis, it is executed and the result is returned to the callable. In another instance, a function reference rather than the actual function is passed to the callable when we call a function without parenthesis.

Therefore, The information inserted between parenthesis, known as parenthetical material, may consist of a single word, a sentence fragment, or several whole phrases.

Learn more about parentheses here:

https://brainly.com/question/26272859

#SPJ1

How does a computer go through technical stages when booting up and navigating to the sample website? Answer the question using Wireshark screenshots.

Answers

When a computer is turned on, it goes through several technical stages before it can navigate to a sample website. The following are the basic steps involved in booting up a computer and accessing a website:

How to explain the information

Power On Self Test (POST): When a computer is turned on, it undergoes a Power On Self Test (POST) process, which checks the hardware components such as RAM, hard drive, CPU, and other peripherals to ensure they are functioning properly.

Basic Input/Output System (BIOS) startup: Once the POST process is complete, the BIOS program stored in a chip on the motherboard is loaded. The BIOS program initializes the hardware components and prepares the system for booting.

Boot Loader: After the BIOS startup is complete, the boot loader program is loaded. This program is responsible for loading the operating system into the computer's memory.

Operating System (OS) startup: Once the boot loader program has loaded the operating system, the OS startup process begins. During this process, the OS initializes the hardware, loads device drivers, and starts system services.

Web browser launch: After the OS startup is complete, the user can launch a web browser. The web browser program is loaded into the memory, and the user can navigate to a sample website.

DNS Lookup: When the user types in the website address, the computer performs a Domain Name System (DNS) lookup to translate the website name into an IP address.

HTTP Request: After the IP address is obtained, the web browser sends an HTTP request to the web server that hosts the website.

Website content delivery: Once the web server receives the HTTP request, it sends back the website content to the web browser, and the website is displayed on the user's screen.

These are the basic technical stages involved in booting up a computer and navigating to a sample website.

Learn more about computer on;

https://brainly.com/question/24540334

#SPJ1

What's one way to help close the digital divide?

Answers

Answer:Answer:1. Literacy Answer:1. Literacy 2. High income levelsAnswer:1. Literacy 2. High income levels3. No geographical restrictionsAnswer:1. Literacy 2. High income levels3. No geographical restrictions4. Motivation to use technologyAnswer:1. Literacy 2. High income levels3. No geographical restrictions4. Motivation to use technology5. Physical access to technologyAnswer:1. Literacy 2. High income levels3. No geographical restrictions4. Motivation to use technology5. Physical access to technology6. Digital literacy

what is a network computer that processes requests from a client server​

Answers

Answer:

computer processing unit

computer processing unit is a network computer that processes requests from a client server​.

What is a computer processing unit?

The main element and "control center" of a computer is the Central Processing Unit (CPU). The CPU, sometimes known as the "central" or "main" processor, is a sophisticated collection of electronic circuitry that manages the device's software and operating system.

A central processing unit, sometimes known as a CPU, is a piece of electronic equipment that executes commands from software, enabling a computer or other device to carry out its functions.

Computers use a brain to process information, much like people do. The brain is the central processing unit for a computer (CPU). The CPU is the component that carries out all of the computer's instructions. It connects with all the other hardware parts of the computer while being on the motherboard.

Thus, computer processing unit.

For more information about computer processing unit, click here:

https://brainly.com/question/29775379

#SPJ6


What are the reasons why organizations opt for a certificate
issued by third party commercial certification authorities to
secure their web server? [Choose two that applyl.
To secure browsing of social media sites.
To secure data transfer, transactions and logins to the
website.
To securely redirect a customer to a third party
a
website.
lling
To run a trusted web site that conduct business with
the general public.

Answers

The reasons that organizations opt for a certificate issued by third party commercial certification authorities to secure their web server are option B and D:

To secure data transfer, transactions and logins to the website.To run a trusted web site that conduct business with the general public.What Is a Certification Authority?

A certificate authority is a third-party organization that operating systems and web browsers trust to generate and distribute digital certificates.

However, they must perform this task for businesses and websites that they have vetted, which is why CAs are crucial to modern digital security (and internet security). These certificates are essentially short data files with verified organization identification information.

What we now usually refer to as a certificate authority or a CA was originally known as a "certification authority." Therefore, you may occasionally encounter them referred to by these many names.

Therefore, When a product is third-party certified, it signifies that an independent body has examined the product's production process and has independently found that the final product complies with certain safety criteria.

Learn more about certification authorities from

https://brainly.com/question/17011621
#SPJ1

Which of the following is an operating system?
MacBook Air
Windows 10
Dell

Which of the following is an operating system?MacBook AirWindows 10Dell

Answers

macbook air.
hope this helps
Windows 10 I believe would be your answer because the other are things that are different yeah

difference between electronic and non electronic components

Answers

Answer:

The working principle of both of them are same, i.e., uses the electrical energy for doing work. The major difference between the electrical and electronic devices is that the electrical devices convert the electrical energy into the other form of energy like heat, light, sound, etc

What is the quickest way to switch between application windows on a computer

Answers

Answer:

Press and hold the [Alt] key > Click the [Tab] key once. ...

Keep the [Alt] key pressed down and press the [Tab] key or arrows to switch between open applications.

Release the [Alt] key to open the selected application.

Explanation:

Which of the following represents the numeric value nine as a decimal number? ( 9 01001 ΟΝ Nine​

Answers

Nine is represented as the digit "9" in numerical form. "01001" and "N Nine," the other values mentioned, do not correspond to the decimal value of nine.

What is output with a 0d start?

Python output denotes a decimal integer by beginning with 0d.

What are some of the benefits of procedural programming over object-oriented programming, according to 6 points?

A comparatively straightforward method for programming computers is procedural programming. This is why procedural programming languages are the starting point for many developers because they offer a coding base that the developer can use as they learn other languages, like an object-oriented language.

To know more about decimal visit:

https://brainly.com/question/28033049

#SPJ9

Let's talk about this cryptocurrency: Vechain (VET)​

Answers

Answer:

This is gonna be interesting

Design a program that generates a sequence of N random numbers. The numbers lie between 1 and 9 inclusively. The program counts the number of times each number appears in the sequence. It then counts the number of times each count appears the list of counts. Suppose N = 100. The first table displays the number of times each number appears in the sequence of N numbers. The second table displays the number of times each count appears in the first table. “9” appears once in the first table, “10” appears twice in the first table and so on.

1st table
1 10
2 11
3 10
4 14
5 13
6 10
7 9
8 10
9 13

2nd table
9 1
10 4
11 1
13 2
14 1

Answers

The first table is 1/10 in the questionnaire on the continent of the page the answer should be be

can the charger of my laptop get infected with viruses also when it was connected to it?​

Answers

Answer:

Technically… yes. Because if the charging port is the same as a USB/etc connector port, then it can travel over that.

Explanation:

Which tab can be used to change the theme and background style of a presentation?
O Design
O Home
O Insert
O View

Answers

Answer:

Design

Explanation:

seems the most correct one..

I would say design as well.

An argument does not always have to be made in words. A piece of music
can make an argument; however, the argument is usually a(n)
one.
A. unfocused
B. emotional
C. credible
D. logical

Answers

Answer:

B. emotional

Explanation:

An emotional argument. An argument does not always have to be made in words.

The piece of music that can make an argument is usually an emotional argument. Thus option B is correct.

What is an emotional argument?

An emotional argument is an e that is made in words and expresses its deals in terms of feelings and thoughts. The emotional argument is characterized by the manipulation of the recipient's emotions and has an absence of factual evidence.

Find out more information about the argument.

brainly.com/question/3775579

who here plays overwatch or paladins ps4? I'm getting overwatch soon and need people to play with. please don't report this.​

Answers

Answer:

I'm down to play

Explanation:

In the graph shown here, by what percentage are the number of people in computer occupations in general projected to increase?


21%

26%

10%

12%

In the graph shown here, by what percentage are the number of people in computer occupations in general

Answers

The number of people in computer occupations in general is projected to increase at 12%

The chart

Reading the charts, we have the following entries

Software developer applications = 26%Software developer = 21%Computer occupations = 12%Software developers, system software = 10%

Using the above entries, we can conclude that:

The number of people in computer occupations in general is projected to increase at 12%

Read more about bar charts at:

https://brainly.com/question/25069221

What is true about super computers?

Answers

Explanation:

Super Computer are expensive computer that are used to provide very quick results. Super computer are used in calculating complex mathematical calculations. Calculations such as weather forecast and Atomic energy research. Therefore Super Computer perform complex calculations rapidly.

Which is an example of a demand account

Answers

Answer:  savings account investment account credit account checking account Checking account is an example of a demand account.

A recursive function _____. Group of answer choices combines data members and functions in a single unit repeatedly calls other member functions of the same class repeatedly calls the main function either calls itself or is in a potential cycle of function calls

Answers

Answer:

A recursive function

Explanation:

A recursive function either calls itself or is in a potential cycle of function calls.

Use function GetUserInfo to get a user's information. If user enters 20 and Holly, sample program output is:Holly is 20 years old. #include #include void GetUserInfo(int* userAge, char userName[]) { printf("Enter your age: \n"); scanf("%d", userAge); printf("Enter your name: \n"); scanf("%s", userName); return;}int main(void) { int userAge = 0; char userName[30] = ""; /* Your solution goes here */ printf("%s is %d years old.\n", userName, userAge); return 0;}

Answers

Answer:

Replace

/*Your solution goes here*/

with

GetUserInfo(&userAge, userName);

And Modify:

printf("%s is %d years old.\n", userName, userAge)

to

printf("%s is %d years old.", &userName, userAge);

Explanation:

The written program declares userAge as pointer;

This means that the variable will be passed and returned as a pointer.

To pass the values, we make use of the following line:

GetUserInfo(&userAge, userName);

And to return the value back to main, we make use of the following line

printf("%s is %d years old.", &userName, userAge);

The & in front of &userAge shows that the variable is declared, passed and returned as pointer.

The full program is as follows:

#include <stdio.h>

#include <string.h>

void GetUserInfo(int* userAge, char userName[]) {

   printf("Enter your age: ");

   scanf("%d", userAge);

   printf("Enter your name: ");

   scanf("%s", userName);

   return;

}

int main(void) {

   int* userAge = 0;

   char userName[30] = "";

   GetUserInfo(&userAge, userName);

   printf("%s is %d years old.", &userName, userAge);

   return 0;  

}

What is object oriented programming

Answers

Answer:

Object-oriented programming is a programming paradigm based on the concept of "objects", which can contain data and code: data in the form of fields, and code, in the form of procedures. A feature of objects is that an object's own procedures can access and often modify the data fields of itself.

What is an Internet Service Provider? Describe at least two types of ISP. (I NEED THIS ASAP LIKE NOW)

Answers

Answer:

A company that provides service to its subscribers to the internet | WiFi, cellular data

Explanation:

WiFi provides service to its subscribers to the internet; the same applies to cellular data.

How to modify the query by creating a calculated field enter the TotalAdultCost:[AdultCost]*[NumAdult] in the zoom dialog box of the first empty column in the design grid

Answers

To modify the   query and create a calculated field, follow these steps.

The steps to be followed

1. Open the query in the design view.

2. In the design grid,locate the first empty column where you want to add the calculated field.

3. In the "Field" row of the empty   column, enter "TotalAdultCost" as the field name.

4. In the "Table" row of the empty column, select the table that contains the fields [AdultCost] and [NumAdult].

5. In the "TotalAdultCost"row of the empty column, enter the expression: [AdultCost]*[NumAdult].

6. Save the query.

Byfollowing these steps, you will create a calculated field named "TotalAdultCost" that multiplies the values of [AdultCost] and [NumAdult].

Learn more about query at:

https://brainly.com/question/25694408

#SPJ1

Ensure the file named Furniture.java is open.
The file includes variable declarations and output statements. Read them carefully before you proceed to the next step.
Design the logic and write the Java code that will use assignment statements to:
Calculate the profit (profit) as the retail price minus the wholesale price
Calculate the sale price (salePrice) as 25 percent deducted from the retail price
Calculate the sale profit (saleProfit) as the sale price minus the wholesale price.
Execute the program by clicking Run. Your output should be as follows:

Item Name: TV Stand
Retail Price: $325
Wholesale Price: $200
Profit: $125
Sale Price: $243.75
Sale Profit: $43.75
91011121314151617181920212223242526272829303132678345
double profit;
double saleProfit;

// Write your assignment statements here.
Logic:
profit=retailPrice-wholesalePrice
salePrice=retailPrice-(retailPrice*25)/100;
saleProfit=salePrice-wholesalePrice;



can someone write this how the code would be written i think i have it correct but i am getting and error when i run the code

Answers

Using the knowledge in computational language in JAVA it is possible to write a code that calculate the sale profit (saleProfit) as the sale price minus the wholesale price.

Writting the code:

public class Furniture

{

  public static void main(String args[])

  {

      String itemName = "TV Stand";

      double retailPrice = 325.00;

      double wholesalePrice = 200.00;

      double salePrice;

      double profit;

      double saleProfit;

     

      // Write your assignment statements here.

      profit = retailPrice - wholesalePrice;

      salePrice = retailPrice * (1 - 0.25);

      saleProfit = salePrice - wholesalePrice;

     

      System.out.println("Item Name: " + itemName);

      System.out.println("Retail Price: $" + retailPrice);

      System.out.println("Wholesale Price: $" + wholesalePrice);

      System.out.println("Profit: $" + profit);  

      System.out.println("Sale Price: $" + salePrice);

      System.out.println("Sale Profit: $" + saleProfit);

      System.exit(0);

      System.exit(0);

  }

}

See mroe about JAVA at brainly.com/question/12975450

#SPJ1

Ensure the file named Furniture.java is open.The file includes variable declarations and output statements.

What is the primary purpose of a slideshow presentation

Answers

Answer:

to help us to complete all of useless project given by school

Answer:

support the presenter's ideas

Explanation:

The White House spokesman said that if the relevant bill was sent to the desk, US President Biden would sign to end the national emergency of COVID-19 in advance, although he strongly opposed it. The US Senate will vote on the evening of the 29th local time and is expected to pass

Answers

The requirement for the Senate to vote on the bill is a standard legislative process in the United States.

Why the senate votes on bills

In order for a bill to become law, it needs to be approved by both the House of Representatives and the Senate. The legislative branch of the US government is divided into two chambers—the House of Representatives and the Senate—each with its own set of responsibilities.

Once a bill is introduced in either chamber, it goes through a series of committee reviews, debates, and amendments before being put to a vote.

Read more on bills here https://brainly.com/question/29613391

#SPJ1

The White House spokesman said that if the relevant bill was sent to the desk, US President Biden would sign to end the national emergency of COVID-19 in advance, although he strongly opposed it. The US Senate will vote on the evening of the 29th local time and is expected to pass

Why does the senate have to vote on a bill

Other Questions
To make a profit a clothing store sells board shorts at on trade and 115% of the amount they paid for them. How much did the store pay for the board shorts shown? Give me work and I'll mark you brainlest and 15 points. 6. Are the classes practical? suppose you transfer $500 from your checking account to your savings account. with this transaction, m1 FITB and m2 FITB . Atoms emit visible and ultraviolet light asthey are:_______. a. heated and the solid melts to form a liquidb. the atoms condense from a gas to a liquidc. the electrons move about the atom within an orbitd. electrons jump from lower energy levels to higher levelse. electrons jump from higher energy levels to lower levels Considering long-term consequences generally leads to better decision making. O True O False El ambiente narrativo se representan mediante estos dos elementos. spying in the american revolution: What is a deserter? callie, age 11 months, went to the circus with her mother. when a clown came bouncing up to callie's stroller, callie was anxious and looked at her mother. when callie's mother began to laugh at the clown, callie joined in the laughter. callie's behavior shows evidence of group of answer choices affective regulation. social referencing. stranger anxiety. bonding dependence. a truck leaves its present location and travels along a bearing of for 69 miles. how far north and east of its original position is it? round your answers to two decimal places. The line passing the points (-2,12) and (3-23) intersects the line passing through which of these pairs of points? With reference to bond markets define in detail and withexamples these 2 terms:Trading at a premiumSemi-annual coupon The following table shows the appraised value of a house over time. Age (years)Value (thousands)0140314861609162121851517818194Using the data from the table determine if there is a linear trend between the age of a house and its value and determine if there is an exact linear fit of the data. Describe the linear trend if there is one. a. Negative linear trend, an exact linear fit. b. Negative linear trend, not an exact linear fit. c. Positive linear trend, an exact linear fit. d. Positive linear trend, not an exact linear fit Daniel gets a paycheck every 4 weeks. He works x hours each week.How many hours does Daniel get paid for on each paycheck?Write your answer as an expression. a client undergoing chemotherapy is found to have an extremely low white blood cell count, and neutropenic precautions, including a low-bacteria diet, are immediately instituted. which of these food items will the client be allowed to consume? How do I prove the Geometric Mean of a Leg Theorem? Which of the following is not a valid component of an occupational health and safety program in a facility that uses NHPs graph the linear inequality y the actual voice of a figure in the news, usually sandwiched in a correspondents report, is called a(n) Hawaiian food would be an example of what type of cuisine?AClassic cuisineBRegional cuisineNouvelle cuisineDNational cuisine A room that is 500 cm x 400 cm x 250 cm contains 65 kg of air. Determine the volume of air in the room and its density.