QUESTION 1In which object can you rename a field?a. tableb. formc. macrod. report3 pointsQUESTION 2Tables, queries, and forms are examples of Access ____.a. objectsb. valuesc. fieldsd. controls3 pointsQUESTION 3When can you rename a table?a. when you open the table in Design viewb. when you open the table in Datasheet viewc. immediately after you open the tabled. after you close the table3 pointsQUESTION 4Which of the following templates lets you create a database from scratch?a. Application databaseb. Blank desktop databasec. Personal databased. Custom desktop database3 pointsQUESTION 5A category of data such as a customer's name, city, state, or phone number is called a _____.a. fieldb. tablec. data typed. record3 pointsQUESTION 6_____ view provides the most options for defining fields.a. Field Createb. Field Definec. Table Created. Table Design3 pointsQUESTION 7Which of the following is the fastest way to open an Access database?a. Start Access from the Start menu.b. Double-click the database icon.c. Right-click the database icon.d. Start Access, and then create a new database.3 pointsQUESTION 8What are you saving when you click the Save button to save a table object?a. the table designb. the entire databasec. the field values in the tabled. the records in the table3 pointsQUESTION 9To back up a database, you use the _____ command.a. Back Up Databaseb. Compact & Repairc. Make a Backupd. Package and Sign3 pointsQUESTION 10Which data type stores only one of two values?a. Date/Timeb. Yes/Noc. Hyperlinkd. AutoNumber

Answers

Answer 1

The object that you can you rename a field is A. table

Tables, queries, and forms are examples of Access .a. objects

The templates lets you create a database from scratch is D. Custom desktop database

What is a database?

A database is a collection of data that has been organized to make it simple to manage and update. Data records or files containing information, such as sales transactions, customer information, financial data, and product information, are typically aggregated and stored in computer databases.

A database is a planned gathering of data. They enable the manipulation and storage of data electronically. Data management is made simple by databases. Let's use a database as an example. Foe example, it is used by an online phone book to store information about people, their phone numbers, and other contact information.

To rename a table:

Click on the table.

Go to Table Tools > Design > Properties > Table Name.

Learn more about database on:

https://brainly.com/question/518894

#SPJ1


Related Questions

i gave 15 min to finish this java program

i gave 15 min to finish this java program

Answers

Answer:

class TriangleNumbers

{

public static void main (String[] args)

{

 for (int number = 1; number <= 10; ++number) {

  int sum = 1;

  System.out.print("1");

  for (int summed = 2; summed <= number; ++summed) {

   sum += summed;

   System.out.print(" + " + Integer.toString(summed));

  }

  System.out.print(" = " + Integer.toString(sum) + '\n');

 }

}

}

Explanation:

We need to run the code for each of the 10 lines. Each time we sum  numbers from 1 to n. We start with 1, then add numbers from 2 to n (and print the operation). At the end, we always print the equals sign, the sum and a newline character.

Why do you think engineering has been called the stealth profession? (hint: there are many internet resources that address this question.)

Answers

Engineering is a stealth profession because you don't see engineers at work often: EX: you don't see many engineers working at a light-fixup job.

What does a covert career entail?Although we utilise hundreds of designed things every day, engineering is frequently referred to be the "stealth" profession since we seldom ever consider the engineering processes involved in their development and manufacture.

Engineering was termed the "stealth profession" in a survey commissioned by the American Association of Engineering Societies because so few respondents claimed to understand what it was.

The profession of engineering has been referred to as "stealthy" or "invisible." You may not be aware of the engineers working behind the scenes or have much technical knowledge, yet everything around you and that you use every day has been engineered in some manner.

To learn more about Engineering, refer to:

https://brainly.com/question/17169621

#SPJ4

which systems engineering support discipline has the goal to ensure that support considerations are an integral part of the system design requirements so that the system can be cost-effectively supported throughout its life cycle

Answers

Answer:what's the question

Explanation:

The load on a bolt consists of an axial pull of 10 KN together with a transverse shear force of 5 KN. Find the diameter of bolt required according to I. Maximum principal stress theory; 2. Maximum shear stress theory; 3. Maximum principal strain theory, 4. Maximum strain energy theory, and 5 Maximum distortion energy theory. Take permissible tensile stress at elastic limit = 100 MPa and poisson's ratio = 0.3​

Answers

Answer:

hey. its a big question. solved from *c hegg

Explanation:

The load on a bolt consists of an axial pull of 10 KN together with a transverse shear force of 5 KN.
The load on a bolt consists of an axial pull of 10 KN together with a transverse shear force of 5 KN.
The load on a bolt consists of an axial pull of 10 KN together with a transverse shear force of 5 KN.
The load on a bolt consists of an axial pull of 10 KN together with a transverse shear force of 5 KN.
The load on a bolt consists of an axial pull of 10 KN together with a transverse shear force of 5 KN.

In engineering documents, figures are labeled above the figure, but tables are labeled below. O True False

Answers

In engineering documents, the statement "figures are labeled above the figure, but tables are labeled below" is True.

Typically, in such documents, figures have their labels placed above them, while tables have their labels placed below them for proper identification and referencing. Labeling figures above the figure allows readers to easily identify and refer to the figure while reading the accompanying text. The label typically includes a number and a brief descriptive caption that helps readers understand the content of the figure. On the other hand, tables are labeled below the table. The label is usually a table number and a descriptive caption that provides information about the table's content or purpose. Placing the label below the table allows readers to locate and refer to the table when needed without disrupting the flow of the text. Following this convention helps maintain consistency throughout the document and makes it easier for readers to locate and refer to specific figures and tables as they navigate the content.

To know more about referencing, visit the link : https://brainly.com/question/28365429

#SPJ11

4.11 LAB: Mileage tracker for a runner Given the MileageTrackerNode class, complete main() in the MileageTrackerLinkedList class to insert nodes into a linked list (using the insertAfter() method). The first user-input value is the number of nodes in the linked list. Use the printNodeData() method to print the entire linked list. DO NOT print the dummy head node. Ex. If the input is:

Answers

Using the knowledge of computational language in C++ it is possible to write a code that user-input value is the number of nodes in the linked list

Writting the code:

#include "MileageTrackerNode.h"

#include <string>

#include <iostream>

using namespace std;

int main(int argc, char *argv[]) {

   // References for MileageTrackerNode objects

   MileageTrackerNode *headNode;

   MileageTrackerNode *currNode;

   MileageTrackerNode *lastNode;

   double miles;

   string date;

   

   // Front of nodes list

   headNode = new MileageTrackerNode();

   lastNode = headNode;

   // Read in the number of nodes

   int no_nodes;

   cin >> no_nodes;

   // For the read in number of nodes, read in data and insert into the linked list

   MileageTrackerNode *tail = headNode;

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

       double milesInit;

       cin >> milesInit;

       cin >> date;

       MileageTrackerNode *newNode = new MileageTrackerNode(milesInit, date, nullptr);

       tail->InsertAfter(newNode);

       tail = newNode;

   }

   // Call the PrintNodeData() method to print the entire linked list

   MileageTrackerNode *cur = headNode->GetNext();

   while (cur != nullptr) {

       cur->PrintNodeData();

       cur = cur->GetNext();

   }

   // MileageTrackerNode Destructor deletes all following nodes

   delete headNode;

}

See more about C++ at brainly.com/question/12975450

#SPJ1

4.11 LAB: Mileage tracker for a runner Given the MileageTrackerNode class, complete main() in the MileageTrackerLinkedList

By observing the direction of current flow through the circuit, v oltage _____ can be determined.
a.drop b. polarity

Answers

Answer:

B. polarity

Explanation:

It was a mistake that i put in under 13 of age can you put it for 27

Answers

Answer:

ill try to help you :)

Explanation:

Para un intercambiador de calor encargado de precalentar pulpa de fruta, se utiliza agua caliente que entra a 180°C y sale a 78°C, mientras que la pulpa de fruta entra a 3°C y sube su temperatura hasta 55°C. Realizar los esquemas de perfil de temperaturas para un intercambiador de calor que funcione en paralelo y en contracorriente. Además, calcular LMTD.

Answers

Answer:

La diferencia media logarítimica de temperatura del intercambiador en paralelo es aproximadamente 75.466 ºC.

La diferencia media logarítmica de temperatura del intercambiador en contracorriente es aproximadamente 97.881 ºC.

Explanation:

De la teoría de Transferencia de Calor tenemos que un intercambiador de calor en paralelo presenta las siguientes dos características:

1) Tanto el fluido caliente como el fluido frío entran por el mismo lado.

2) Tanto el fluido caliente como el fluido frío salen por el mismo lado.

Mientras que el intercambiador de calor en contracorriente tiene que:

1) El fluido caliente y el fluido frío entran por lados opuestos.

2) El fluido caliente y el fluido frío salen por lados opuestos.

A continuación, anexamos los esquemas de perfil de cada intercambiador.

Ahora, la Diferencia Media Logarítimica de Temperatura (\(\Delta T_{lm}\)), medida en grados Celsius, queda definida como sigue:

\(\Delta T_{lm} = \frac{\Delta T_{1}-\Delta T_{2}}{\ln \frac{\Delta T_{1}}{\Delta T_{2}} }\) (Eq. 1)

Donde \(\Delta T_{1}\) y \(\Delta T_{2}\) son las diferencias de temperatura de los fluidos en cada extremo del intercambiador, medido en grados Celsius.

Procedemos a determinar esas diferencias y la Diferencia Media Logarítimica de Temperatura para cada configuración:

Intercambiador en paralelo

\(\Delta T_{1} = 180\,^{\circ}C-3\,^{\circ}C\)

\(\Delta T_{1} = 177\,^{\circ}C\)

\(\Delta T_{2} = 78\,^{\circ}C - 55\,^{\circ}C\)

\(\Delta T_{2} = 23\,^{\circ}C\)

\(\Delta T_{lm} = \frac{177\,^{\circ}C-23\,^{\circ}C}{\ln \frac{177\,^{\circ}C}{23\,^{\circ}C} }\)

\(\Delta T_{lm} \approx 75.466\,^{\circ}C\)

La diferencia media logarítimica de temperatura del intercambiador en paralelo es aproximadamente 75.466 ºC.

Intercambiador en contracorriente

\(\Delta T_{1} = 180\,^{\circ}C-55\,^{\circ}C\)

\(\Delta T_{1} = 125\,^{\circ}C\)

\(\Delta T_{2} = 78\,^{\circ}C-3\,^{\circ}C\)

\(\Delta T_{2} = 75\,^{\circ}C\)

\(\Delta T_{lm} = \frac{125\,^{\circ}C-75\,^{\circ}C}{\ln \frac{125\,^{\circ}C}{75\,^{\circ}C} }\)

\(\Delta T_{lm} \approx 97.881\,^{\circ}C\)

La diferencia media logarítmica de temperatura del intercambiador en contracorriente es aproximadamente 97.881 ºC.

Para un intercambiador de calor encargado de precalentar pulpa de fruta, se utiliza agua caliente que
Para un intercambiador de calor encargado de precalentar pulpa de fruta, se utiliza agua caliente que

Sadie is the props manager for a small community theater. Because she does not have a part onstage, Sadie is not part of the Performing Arts pathway of the Arts, AV Technology and Communication cluster.


True


False

Answers

Answer:

I think it is false!

Explanation:

Answer: I think it's true

Explanation:

Because if you were part of a play, you would have a part but if you work on props, you don't have a part onstage.

2. Solve for the unknown variable:

C = 16in

a =

b = 12in

Answers

Answer:

I don't Know what it is supposed to equal.

Explanation:

Tell me this, and consider it done

Question 2 Resilience engineering is concerned with adverse external events that can lead to system failure. Resilient systems are flexible and adaptable so that they can cope with the unexpected. As a software engineer you need to educate system developers of four characteristics as outlined by Hollnagel (2010) that reflect the resilience of an organisation. Make sure to also include an example for each characteristic

Answers

These four characteristics, as outlined by Hollnagel (2010), are critical in developing resilient systems that can cope with unexpected situations and adverse external events. Software engineers must educate system developers about these characteristics to develop more resilient systems.

Resilience engineering is about developing adaptable systems that can handle unexpected situations and are able to cope with the effects of adverse external events that might cause system failure. As a software engineer, you need to inform system developers about the following four characteristics that reflect the resilience of an organization, as described by Hollnagel (2010):Maintainability: This characteristic reflects the degree to which a system can be maintained or repaired after it has been damaged. In other words, it assesses the system's ability to remain in good working order or quickly recover from damage. An example of maintainability would be the ability to quickly repair an engine that has been damaged during an accident.Flexibility: This characteristic reflects the degree to which a system can be modified or adapted to cope with changing circumstances. Flexibility is essential for resilience because it enables a system to respond to new challenges and adapt to different circumstances. An example of flexibility would be the ability to change the specifications of a car to adapt to different driving conditions.Redundancy: This characteristic reflects the degree to which a system can continue to function even if some of its components fail. Redundancy is important because it ensures that the system can continue to operate even if one or more components are not working properly. An example of redundancy would be having a backup generator in case the primary generator fails.Responsiveness: This characteristic reflects the degree to which a system can respond to changing circumstances or threats. Responsiveness is important because it enables a system to quickly and effectively respond to unexpected events. An example of responsiveness would be the ability of an air traffic control system to quickly respond to changing weather conditions to ensure the safety of airplanes in the area.

To know more about Software engineers, visit:

https://brainly.com/question/7097095

#SPJ11

The most common type of pressure gauge is the 1. Piston 2. Linkage 3. Bourdon Tube 4. 5. Temperature​

Answers

Answer:

Bourdon Tube gauge

Explanation:

The most popular type of pressure gauge in several countries is the Bourdon pressure tube gauge, that is used to determine medium and high loads. Bourdon tube  will measure pressures ranging between 600 mbar - 4,000 bar. While the inner pressure is greater than the exterior pressure, the tube pushes forward, and vise versa.

A homeowner has enough money to hire four workers for the construction of a second kitchen in his basement. He has already hired an electrician, a plumber, and a terrazzo worker. What other worker should he hire and why?



a cabinetmaker, because cabinets will need to be built and installed


a general carpenter, because she can handle all of the other aspects of the project


a plasterer, because the kitchen will require drywall to be hung


a tile worker, because new flooring and a backsplash will need to be installed

Answers

He should hire a general carpenter, because she can handle all of the other aspects of the project.

Who or what is a carpenter general?

In addition to creating exquisite trim and finish work, general carpenters provide the essential framework for concrete, exteriors, roofs, infrastructure, and scaffolding. These experts are in charge of making blueprints come to life; they work with a variety of materials in all types of structures.

What is the purpose of terrazzo?

Terrazzo is a composite material that can be precast or poured in place and is applied to floors and walls. It is made up of glass, quartz, granite, or other suitable material chips that have been poured with a cementitious binder, a polymeric binder, or a combination of the two.

To know more about granite visit:-

brainly.com/question/12057584

#SPJ4

If the built-up beam is subjected to an internal moment of M = 75 kN·m, determine the maximum tensile and compressive stress acting in the beam. Where are these stresses located?

Answers

When subjected to an internal moment of M = 75 kN·m, the maximum tensile and compressive stress acting in the beam are 125 MPa and -125 MPa respectively.

These stresses are located at the top and bottom surfaces of the beam respectively.Let's find out how to solve the problem statement.A built-up beam is a composite beam that is constructed by bolting or welding together two or more individual beams side by side.

The bending stress formula for a beam subjected to a moment M is given by the following equation:σ = Mc / Iwhereσ is the bending stressM is the internal momentc is the distance from the neutral axis to the point of interestI is the moment of inertia of the beamWe need to determine the maximum tensile and compressive stress acting in the beam. To do so, we'll need to calculate the maximum bending stress that the beam experiences.

To know more about interestI visit:

https://brainly.com/question/29180742

#SPJ11

To measure an object accurately, what point on the ruler would you align with the object edge

Answers

Answer:

Along the zero to measure an object on a ruler

The zero to measure an object

an engineering firm is evaluating a sophisticated $80,000 laser system to measure the difference in water level between two large tanks. it is important that small differences be measured accurately. you suggest that the job can be done with a $200 manometer arrangement. an oil that is less dense than water can be used to give a 10:1 amplification of meniscus movement: a small difference in level between the tanks will cause 10 times as much deflection in the oil levels in the manometer. determine the specific gravity of the oil required for 10:1 amplification.

Answers

The specific gravity of the oil required for 10:1 amplification is 0.9.

Determine the specific gravity of the oil

The theory used in this question is the specific gravity of a substance, which is the ratio of the density of a substance to the density of water.

Explanations given below

Step 1: Calculate the specific gravity of the oil by dividing the density of the oil by the density of water.

Step 2: Multiply the specific gravity by 10 to get the amplification factor.

Step 3: Divide the desired amplification factor (10) by the calculated specific gravity to get the required specific gravity of the oil.

Example:

Desired amplification factor = 10

Calculated specific gravity = 0.9

Required specific gravity of the oil = 10 / 0.9 = 0.9

To learn more about specific gravity refer :

brainly.com/question/30498001

#SPJ4

write a java script function that allows the user to enter and convert Kenyan shillings into US dollars when a button is clicked on a web page. rate is 1 $ dollar 115 Ksh​

Answers

Answer:

Explanation:

Like requested the following function is written in JavaScript and prompts the user for a total amount of Kenyan Currency that needs to be converted. It then places that value in a variable and divides it by 115 Ksh so that it gives us the USD value of that currency. Then that value is returned. The function can be attached to any button but it must be done manually when creating the button's onClick method.

function convertCurrency() {

 

 var KenyanAmount = prompt("Please enter the amount of Kenyan you want to convert.");

 var usdValue = "$" + (KenyanAmount / 115);

 return usdValue;

}

The program is a sequential program, and does not require loops and conditional statements

The function in JavaScript where comments are used to explain each line is as follows:

//This defines the function

function convertCurrency() {

//This gets input for the amount to convert

var Amount = prompt("Kenyan Shillings: ");

//This converts the Kenyan Shillings to US Dollars

var usdValue = KenyanAmount / 115;

//This returns the converted amount to the main method

return usdValue;

}

Read more about JavaScript at:

https://brainly.com/question/9856013

8. 8 A large overhead gantry robot loads and unloads three CNC lathes in an automated cell. The three lathes are dedicated to the mass production of the same part style, so semiautomatic turning cycles are the same: 3. 30 min. Assume setup time can be ign The cell includes an automated parts storage unit from which the robot retrieves st work units and deposits finished parts using a dual gripper. The storage unit has an ing system that presents starting work units at one position and accepts finished pa another position. To perform the loading and unloading sequence for each lathe re 48 sec of the robot's time; however, only 18 sec of lost production time are experi by each lathe. The loading and unloading sequence for the three lathes is synchro so there is no machine interference. The tooling of each lathe must be changed once hour, and this takes 6. 0 min, which is lost production time. Determine (a) the averag duction time for each lathe, (b) production rate of the cell, and (c) the proportion o that the robot is working. ​

Answers

3.30/6.0 x 100% = 55% is the percentage of time that the robot is operating. A manufacturing system called an automated cell comprises of numerous pieces of machinery and equipment.

[a] In order to calculate the average production time for each lathe, we must take into account the length of the turning cycle, the time lost during the loading and unloading process, and the time required for tool changes.

Each cycle takes 4.43 minutes, or 3.30 + 0.8 + 0.33.

(a) Since each lathe has a capacity of 18.18 pieces per hour, the three lathes working together can turn out 54.54 parts per hour.

(c) We must take into account the overall time required for the loading and unloading sequence as well as the time required for the tooling change in order to calculate the percentage of time that the robot is actually functioning.

Each cycle lasts for a total of 3.30 + 2.7 = 6.0 minutes.

So, 3.30/6.0 x 100% = 55% is the percentage of time that the robot is operating.

Learn more about "automated cell." here:

https://brainly.com/question/29487255

#SPJ4

According to the Maxwellian speed distribution, As the Temperature increases the Number of molecules with speeds within a small interval near the most probable speed increase According to the Maxwellian speed distribution, As the Temperature increases the Number of molecules with speeds within a small interval near the most probable speed increase

Answers

It is a false statement because, based on the Maxwellian speed distribution, as the temperature increases the number of molecules with speeds within a small interval near the most probable speed decreases.

The Maxwell speed distribution defines the number of molecules that are moving at a specific speed at a particular temperature. Besides the average speed, and the root-mean-square speed,  the Maxwell speed distribution also describes the most probable speed - the speed at which distribution curve reaches its maximum..

According to Maxwell's law of distribution of molecular speeds, with the increase in temperature the number of molecules with speeds within a small interval near the most probable speed decreases.

"

Complete question:

According to the Maxwellian speed distribution, As the Temperature increases the Number of molecules with speeds within a small interval near the most probable speed increase

True

False

"

You can learn more about Maxwell speed distribution at

https://brainly.com/question/29632619

#SPJ4

discuss the benefits of modern communication technology​

Answers

Answer:

talk to people

Explanation:

you can communicate with people around the world and in different area

why thermosets are normally amorphous.

Answers

Answer:

Explanation:

Thermosetting polymers, or thermosets, are polymers that are resistant to heat and are able to maintain their shape and structure once they have been cured or crosslinked. One of the main characteristics of thermosets is that they are highly crosslinked, which means that the chains of the polymer are linked together by strong chemical bonds. This high degree of crosslinking gives thermosets their unique properties, such as their resistance to heat and their ability to maintain their shape. Because thermosets are highly crosslinked, they are typically amorphous, meaning that they do not have a well-defined crystal structure. This is in contrast to thermoplastics, which are polymers that can be melted and reshaped multiple times.

Answer:

Thermosets are polymeric materials that are cross-linked through chemical bonds, resulting in a three-dimensional network structure. These bonds are formed through a chemical reaction called curing, which occurs when the thermoset material is heated or exposed to a catalyst. Once cured, thermosets cannot be melted or reshaped without decomposition, making them strong and durable materials.

One reason why thermosets are normally amorphous is due to the cross-linking process. Amorphous materials do not have a long-range ordered structure, meaning that their molecules are randomly arranged rather than being arranged in a repeating pattern. During the curing process, the molecules of the thermoset material become cross-linked in a random, three-dimensional network structure. This random arrangement of molecules leads to an amorphous structure, rather than a crystalline structure with a repeating pattern.

Additionally, the curing process often involves the breakdown of the original polymer chains, leading to the formation of smaller, cross-linked molecules. These smaller molecules are less likely to form a crystalline structure, further contributing to the amorphous nature of thermosets.

Overall, the cross-linking process and the breakdown of original polymer chains in thermosets lead to the formation of a random, three-dimensional network structure, resulting in an amorphous material.

. Find the sum of the degrees of the vertices of each graph
in Exercises 1–3 and verify that it equals twice the number
of edges in the graph.

Answers

The sum of the degrees of all the vertices is given as 2e = 2(n-1) = 2n - 2.

If n-1 of the vertices of T had a degree of at least 2 we would get a contradiction.

Theorem: If T is a tree with n vertices, then the chromatic polynomial, P(T,x) = x(x-1)n-1.

What is a Vertix?

This refers to the point where two or more curves, lines, or edges meet and this is used in geometry.

The sum of the degrees of all the vertices is given as 2e = 2(n-1) = 2n - 2.

If n-1 of the vertices of T had a degree of at least 2 we would get a contradiction.

Theorem: If T is a tree with n vertices, then the chromatic polynomial, P(T,x) = x(x-1)n-1.

Hence, we can see that your question is incomplete, so I gave you a general overview to help you better understand the concept.

Read more about sum of vertices here:

https://brainly.com/question/15069810

#SPJ1

a runway identified as runway 27 serves operations oriented to which approximate direction?

Answers

A runway identified as runway 27 serves operations oriented to the westward direction.

What are runways?

A runway is defined as an airport's paved surface. A runway is used for aircraft takeoff and landing operations. The most important runway, without a doubt, is the primary runway, which is the longest runway that has lighting and instrument landing aids. Runways are usually numbered based on their compass bearings, and they are designated L or R if two runways are close together but not parallel. It's worth noting that the numbers don't signify the degree to which the runway is off of a north-south heading, but rather the runway's magnetic bearing.  

How to identify the approximate direction of operations from the runway designation?

A runway identified as runway 27 serves operations oriented to the westward direction. The runway numbering system is used to determine the runway direction, which is based on its magnetic direction from 0 to 359 degrees. These numbers are used to designate runway headings in tens, as well as for headings within ten degrees. Runway 27 would be the one with the magnetic heading of approximately 270 degrees (270-279). As a result, an aircraft taking off or landing on runway 27 would travel in an approximately westward direction.

Learn more about runway at https://brainly.com/question/29519316

#SPJ11

How can two set square be identified?

Answers

Answer:

A biome is identified by its particular set of abiotic factors and its characteristics of ecological community.

Explanation:

1. Làm thế nào để đảm bảo tính khả thi của văn bản hành chính ?
2.Dẫn chứng một số văn bản hành chính không thực hiện được do thiếu tính khả thi ?

Answers

Answer:

Explanation:

......................

Problem 2 (20 points): Three prismatic bars, two of material A and one of material B, transmit a tensile load P. The two outer bars (material A) are identical. The cross-sectional area of the middle bar (material I} B) is 50% larger than the cross-sectional area of the outer bar. Also, the modulus of elasticity of material A is twice that ofmaterial B. Find: (a) What fraction ofthe load Pis transmitted by the middle bar? (b) What is the ratio of the stress in the middle bar to the stress in the outer bars? (c) What is the ratio of the strain in the middle bar to the strain in the outer bars

Answers

Answer:

you said 20 points

Explanation:

Q2 [45 marks] Consider Ibra region where the installed solar panels cost on average 2 OMR /W.
[10 marks] What is the cost to install a 5kW PV system for a residence?

[10 marks] If the solar irradiance in Ibra is on average 800W/m2 and the installed panels have efficiency of 18%. How many panels are required if the panel’s area is 2m2?


[15 marks] Assume Ibra has an average of 10 day-hours, dusty environment which causes the efficiency of the solar system to drop by 10% on average, and 30 cloudy days/year which cause the efficiency of the solar panels drops by 50%. If electrical power cost per kWh is 0.05 OMR determine the break-even time for the 5kW PV system.

[10 marks] If the system to be off-grid, what would be the backup time if three 12-V batteries were selected each with a capacity of 200Ah. Assume that you can discharge the batteries up to 80% of their capacities.​

Answers

Answer:

so hard it is

Explanation:

I don't know about this

please mark as brainleast

byýyy

Cranes and derricks installed on a floating surface must have what placed where it can be easily seen by the operator?
a. Warning lights.
b. Reflective tape.
c. Safety harness.
d. Signal flag

Answers

The correct option is b. Reflective tape. is placed on cranes and derricks installed on a floating surface to enhance visibility and make them easily seen by the operator, especially in low-light or nighttime conditions.

How to enhance visibility on floating cranes?

When cranes and derricks are installed on a floating surface, it is important to ensure the visibility of these structures to the operator. One effective measure to enhance visibility is the use of reflective tape. Reflective tape is designed with special materials that reflect light when illuminated, making it highly visible even in low-light or nighttime conditions.

By placing reflective tape on cranes and derricks, it creates a contrasting visual indicator that catches the attention of the operator. This helps the operator easily locate the position of the equipment, especially in environments with limited visibility or when operating in proximity to other structures or equipment.

The reflective tape is typically applied to prominent areas of the crane or derrick, such as the boom, jib, or other high-visibility parts. This ensures that the operator can quickly and accurately identify the presence and location of the equipment, reducing the risk of accidents and promoting overall safety.

In addition to warning lights, reflective tape serves as a passive visual safety feature that works consistently without relying on power sources or active mechanisms. It is a cost-effective and reliable solution to improve the visibility of cranes and derricks on a floating surface, ultimately enhancing operator awareness and preventing potential hazards.

Learn more about cranes

brainly.com/question/27993199

#SPJ11

Tech a says that the difference between the stored pulse width and the actual pulse width required to keep the mixture at the correct ratio is called fuel trim. Tech b says that long-term fuel trim values can be positive or negative. Who is correct?.

Answers

Tech B says that the long-term trim values can be positive or negative, which is correct, while Tech A is wrong.

What Is Negative Long-Term Fuel Trim?

Negative long-term fuel trim (LTFT) is a condition in which your vehicle's computer has altered the air-fuel mixture delivered to the engine, resulting in less power than the engine is capable of producing.

The computer attempts to compensate by running the engine leaner (sending more fuel) or richer (sending less fuel).

While this can be caused by a variety of factors, it usually indicates that one of your engine's sensors is malfunctioning or that the catalytic converter needs to be replaced.

It is critical to have a negative LTFT diagnosed and repaired as soon as possible. It can cause serious engine damage if left unchecked.

To learn more about Fuel, visit: https://brainly.com/question/17080562

#SPJ4

Other Questions
Shi Import-Export's balance sheet shows $300 million in debt, $50 million in preferred stock, and $250 million in total common equity. Shi's tax rate is 25%, rd = 6%, rps = 7.7%, and rs = 14%. If Shi has a target capital structure of 30% debt, 5% preferred stock, and 65% common stock, what is its WACC? Round your answer to two decimal places The population of a city is 45000 and decreases 2ach year. if the tend continues, what will the population bve after 15 years? Which of the following is NOT an example of a conditional privilege in a defamation case? Statements that are the truth Statements that are characterized as fair comment Statements made to promote a common interest Statements made to protect or further the legitimate interests of another A recent study by economists at the Federal Reserve Bank of New York estimates that over the period from 1970 to 2013, the average college graduate earned more per year than the average person who had only a high school degree. $5,750 13,275 O $23,500 $44,400 What are positive relationships of the great white shark called? A DNA molecule is made up of long chains of nucleotides. A DNA nucleotide consists of a Which of the following statements is true regarding the Tang dynasty?China would not allow visitors from the outside world.The Tang dynasty fell because of a massive earthquake.China was a tributary state of the Mongol empire.During the Tang dynasty, Chinese culture and art flourished. write a letter to your younger sister telling her not to watch tv a lot Help fast plz 100 points! Please help What was significant about "The Seven Voyages of Sinbad"?MAKE A DETAILED ANSER this is pax Samples of a cast aluminum part are classified on the basis of surface finish (in microinches) and edge finish. The results of 104 parts are summarized as follows: edge finish excellent good surface finish excellent 82 4 good 7 11 Let A denote the event that a sample has excellent surface finish, and let B denote the event that a sample has excellent edge finish. If a part is selected at random, determine the following probabilities. Round your answers to three decimal places (e.g. 98.765). (a) P(A)= Enter your answer in accordance to the item a) of the question statement (b) P(B)= Enter your answer in accordance to the item b) of the question statement (c) P(A)= Enter your answer in accordance to the item c) of the question statement (d) P(AB)= Enter your answer in accordance to the item d) of the question statement (e) P(AB)= Enter your answer in accordance to the item e) of the question statement (f) P(AB)= Enter your answer in accordance to the item f) of the question statement Your friend asked you to help him to solve a problem in Math. Write a letter back to your friend explaining how to solve the problem, step by step. Remember that your friend is struggling in Math so please include the formulas and be specific as possible. btw pls make it 9 sentences Why did early attempts to colonize the americans fail? Why do pregnant patients have lower reference ranges for red blood cell counts?A) Body fluid increases in pregnancy, diluting red blood cells.B) Constant nausea leads to hemoconcentration of the blood.C) Poor appetite leads to transient anemia.D) The growing fetus uses up the mother's iron reserves. Identify the cycle described. A bike wheel. The weight of a full steel bead tire is approximately 800 grams, while a lighter wheel weighs only 700 grams. What is the weight of each tire in pounds? There are 453.592 grams in one pound. Round answers to 2 decimal places. 800 grams = pounds 700 grams = pounds 15. Hassan is solving x2 + 8x = 6 bycompleting the square. His first steps areshown below.x? + 8x + C = 6+C(x + Vc)* = 6+Ca. What is the value of c? Watch help videoFind the length of the third side. If necessary, round to the nearest tenth.2010Answer:Submit Answerattempt 1 out of 2 In traveling to the Moon, astronauts aboard the Apollo spacecraft put spacecraft into a slow rotation to distribute the Sun's energy evenly (so one side would not become too hot). At the start of their trip, they accelerated from no rotation to 1.0 revolution every minute during a 12-min time interval. Think of the spacecraft as a cylinder with a diameter of 8.5 m rotating about its cylindrical axis.a)Determine the angular acceleration of the ship.Express your answer using two significant figures.b)Determine the radial component of the linear acceleration of a point on the skin of the ship 9.5 min after it started this acceleration.Express your answer to two significant figures and include the appropriate units.c)Determine the tangential component of the linear acceleration of a point on the skin of the ship 9.5 min after it started this acceleration.Express your answer to two significant figures and include the appropriate units. a corporate bond has nominal yield of 6%. howard owns eight of these bonds. at their maturity, how much will he receive?