Answer:
El plan de trabajo permite delimitar la necesidad a la cual se debe responder con una solución (descripción del problema), los hitos que se deben alcanzar (objetivos general y específico), los recursos requeridos para lograr desarrollar y aplicar la solución (marco teórico), los posibles beneficios derivados del proceso exitoso (justificación del proyecto) y una administración racional y realistas de los recursos a disposición en cuanto a disponibilidad, tiempo y personal mediante una secuenciación de tareas (i.e. diagramas de Gantt), todo reduce el componente iterativo inherente a diseño y producción de un producto, permite prever posibles imprevistos y mantener una perspectiva realista y una eficiencia aceptable en cuanto a presupuesto, metodologías y tecnologías a usar.
El plan de trabajo debe incluir principios de ingeniería concurrente para minimizar para manera mejor los posibles imprevistos, usualmente difíciles de manera con principios de ingeniería secuencial.
Explanation:
El plan de trabajo permite delimitar la necesidad a la cual se debe responder con una solución (descripción del problema), los hitos que se deben alcanzar (objetivos general y específico), los recursos requeridos para lograr desarrollar y aplicar la solución (marco teórico), los posibles beneficios derivados del proceso exitoso (justificación) y una administración racional y realistas de los recursos a disposición en cuanto a disponibilidad, tiempo y personal mediante una secuenciación de tareas (i.e. diagramas de Gantt), todo reduce el componente iterativo inherente a diseño y producción de un producto, permite prever posibles imprevistos y mantener una perspectiva realista y una eficiencia aceptable en cuanto a presupuesto, metodologías y tecnologías a usar.
El plan de trabajo debe incluir principios de ingeniería concurrente para minimizar para manera mejor los posibles imprevistos, usualmente difíciles de manera con principios de ingeniería secuencial.
Can anyone help me solve this?
Answer:
what should be basically be done in this question?
If a user has just added a simple triangle shape into a diagram, how can the triangle be adjusted? Check all that
apply.
O by making it bigger
O by adjusting it to be SmartArt
O by making it smaller
O by adjusting it to be different style
O by making it thinner
O by making it thicker
O by adjusting it to be a different color
O by rotating it
Need an answer as soon as possible please!
The lesson discusses ten "best practices" for digital recordings. Identify three of them and explain why they are important for ensuring a quality product.
(For a Digital Media Course)
Solution :
Digital recording may be defined as the preservation of an audio or some visual signals like the series of a binary numbers which can be stored on a magnetic tape or on an optical disc or some other digital storage media.
Some of the best practices for doing digital recording are :
1. We should always take permission from those who are being recorded. It is not right to shoot others without their permission. It is against the right to privacy.
2. We should record audio at about 44.1 kHz/16 bit in an uncompressed wave format.
3. A High quality MP3 (192 kbps or higher) is often accepted due to the limitations of a recorder or for a storage space.
The MP3 recordings are considered as the best option for certain recorders and when the storage space is severely limited. It produces a good quality recording.
Phishing is ____________. When hackers overwhelm a website with too many requests. A network of private computers infected with malicious software and controlled as a group without the owners' knowledge. A piece of code that is capable of copying itself and typically has a detrimental effect, such as corrupting the system or destroying data. Emails designed to trick users into sharing private information.
Answer:
Emails designed to trick users into sharing private information.
Explanation:
if that is a multiple choice question and the other sentences is the answer choices.
Given a string, an integer position, and a character, all on separate lines, find the character of the string in that position and replace it with the character read. Then, output the result.
Ex: If the input is:
warn
0
e
the output is:
earn
Note: Using a pre-defined string function, the solution can be just one line of code.
Answer:
The program in Python is as follows:
myStr = input()
pos = int(input())
chrr = input()
myList=[]
myList[:0]=myStr
myList[pos] = chrr
myStr =""
for i in myList:
myStr+=i
print(myStr)
Explanation:
This gets input for the string
myStr = input()
This gets input for the character position
pos = int(input())
This gets input for the incoming character
chrr = input()
Create an empty list
myList=[]
Convert the string to a list
myList[:0]=myStr
Replace the character
myList[pos] = chrr
Empty the string
myStr =""
Get the new string
for i in myList:
myStr+=i
Print the new string
print(myStr)
Following are the C++ program to replace the first index value of the string.
Program Explanation:
Defining header file.Defining the main method.Inside the main method three variable "Sval, Spos, Subchar" is declared in which "string, int, and char".After input variable value a string variable is declared with the at (method), which replaces the first index value with the character value.After replacing the first index value that is "0" use the prints method that prints its value.Program:
#include <iostream>//header file
#include <string>//header file
using namespace std;
int main() //main method
{
string Sval;//defining string variable
int Spos;//defining integer variable
char Subchar;//defining char variable
cin>>Sval>>Spos>> Schar;//input value
Sval.at(Spos) = Subchar; //using string variable that replaces the first index value with the character value
cout << Sval << endl;//printing the replaced value
return 0;
}
Output:
Please find the attached file.
Learn more:
brainly.com/question/24494143
Five uses of the start button
Starting something
Possibly turning it off
Making something work
Fixing the Start Button
Beginning something
Have you searched Buzz Ch.at on playstore
Answer:
Reorder terms.
y=52x−1
Cancel the common factor of 22.Factor 22 out of −2-2.
y−4=5x2+52⋅(2(−1))y-4=5x2+52⋅(2(-1))
Cancel the common factor.
y−4=5x2+52⋅(2⋅−1)y-4=5x2+52⋅(2⋅-1)
Rewrite the expression.
y−4=5x2+5⋅−1y-4=5x2+5⋅-1
Multiply 55 by −1-1.
y−4=5x2−5
what is meant by cyber law
Explanation:
Cybercrime is criminal activity that either targets or uses a computer, a computer network or a networked device
How Many types of application Software are there?
Answer:
there are 2 types of application software
an_is a sepuence of precise instructions which result in a solution
Answer:
algorithm.
Explanation:
An algorithm can be defined as a standard formula or procedures which comprises of set of finite steps or instructions for solving a problem on a computer. The time complexity is a measure of the amount of time required by an algorithm to run till its completion of the task with respect to the length of the input.
Furthermore, the processing symbols and their functions used in developing an algorithm are oval (start or stop), diamond (decision-making), circle (on-page connector), parallelogram (input and output), rectangle (calculation), arrow (flow or direction) and pentagon (off-page connector).
Some of the characteristics of an algorithm include the following;
I. An algorithm can be written using pseudocode. A pseudocode refers to the description of the steps contained in an algorithm using a plain or natural language.
II. An algorithm can be visualized using flowcharts. A flowchart can be defined as a graphical representation of an algorithm for a process or workflow.
In conclusion, an algorithm is a sequence of precise instructions which result in a solution for solving problems using a computer system.
what is meant by versatility in terms of features of computer?
Answer:
Versatility refers to the capability of a computer to perform different kinds of works with same accuracy and efficiency.
Explanation:
thank me later
Versatility refers to the effort or ability of a computer to carry out different kinds of works and it is done that is done on the same level of accuracy and efficiency.
What is versatility in computer?Computer is known to be a machine that is said to be versatile machine as it is made up of a lot of field and also involves in Multi-tasking.
Therefore, Versatility refers to the effort or ability of a computer to carry out different kinds of works and it is done that is done on the same level of accuracy and efficiency.
Learn more about Versatility from
https://brainly.com/question/26285269
#SPJ2
In today's digital world, companies have created software that makes business communication and productivity more efficient and effective. Explain why it is important for you to know how to use business communication tools such as the Microsoft Office Suite (i.e., Word, PowerPoint, Excel, etc.).
Include examples of some scenarios you faced or may face in the future (as both a student and in your career) that will require you to use these business communication tools.
300 + words
Answer:
Business communications tools are widely used and the world is becoming increasingly digital so not having those skills will hinder you.
Explanation:
Many jobs require knowledge of Microsoft tools as a qualification. By not having that expertise, I will be viewed as less qualified for a position and may be passed up for job. In corporate America, presentations are a staple and Microsoft PowerPoint is the primary software. If I deliver a poor presentation due to inexperience, I will make myself look bad and as a result get a bad quarterly review and possibly stunted any future promotions. On the flipside, as a business owner Excel is a handy tool for tracking expenses. Very customizable, quick and easy to understand.
of the following potential benefits, which is LEAST likely to be provided by the upgraded system?
A Human representatives will not be needed to respond to some inquiries.
B
The company will be able to provide a human representative for any incoming call.
с
Customers are likely to spend less time listening to information not relevant to their issue.
D
Customers will be unable to mistakenly select the incorrect department for their particular issue.
Answer:
The company will be able to provide human representative for any incoming call
Explanation:
The upgrade of a system is meant to resolve identified issues in an initial system and given that the available human representative is usually less than the number of incoming call at a given time, due to a constant drive for a larger customer base, we have;
The upgraded system will provide technologies such that human representative will not be required for some inquiries, customers will listen to mainly relevant information with regards to their issues and customers will be properly directed to the correct department that are concerned with their current issue
Therefore, the LEAST likely goal of the upgraded system from among the options and therefore the least likely to be provided by the upgrade is the company will be able to provide human representative for any incoming call
como se genera la electricidad con energias no renovables
porfa alguien me ayuda llevo muchas horas buscando la respuesta
doy corona y todos lo puntos que pueda
Answer:
efeiueur eiuube erferve
Explanation:
Answer:
La energia no renovable proviene de fuentes que se agotaran o no se repondran durante miles o incluso millones de años.
Los combustibles fósiles se queman para generar energía y electricidad. Por ejemplo, carbón.
n
Which of the following is not a goal of a persuasive speaking?
a. to motivate to action
b.
to change attitudes, beliefs, or values
to strengthen or weaken attitudes, beliefs, or values
d. to define, demonstrate, or instruct
C.
Answer: D. to define, demonstrate, or instruct.
Explanation:
Persuasive speaking is the form of speaking that we usually engage in. It is used to convince people. As individuals, we usually engage in persuasive speaking. We argue about different things and try to convince the other person to agree with us.
Th goals of persuasive speaking is to motivate to action, to change attitudes, beliefs, or values and to strengthen or weaken attitudes, beliefs, or values.
It should be noted that the goal of persuasive speaking isn't to to define, demonstrate, or instruct. Therefore, the correct option is D.
Answer:
Simple Answer: D
A ____ is an icon that does not directly represent a file, folder or application but serves as a link to it?
Answer:
Shortcut
Explanation:
A file can be defined as a computer resource that avails end users the ability to store or record data as a single unit on a computer storage device.
Generally, all files are identified by a name, icon, size, and type (format) such as audio, image, video, document, system, text, etc.
Furthermore, files are organized or arranged in directories. These directories are paths that describes the location wherein a file is stored on a computer system.
A software can be defined as a set of executable instructions (codes) or collection of data that is used typically to instruct a computer on how to perform a specific task and solve a particular problem. Thus, it's a computer program or application that comprises of sets of code for performing specific tasks on the system.
In Computer science, it's possible to create a shortcut in several directories (locations) on a computer, so as to reference a file, folder or software application and serve as an executable link.
Hence, a shortcut is an icon that does not directly represent a file, folder or application but serves as a link to it.
Additionally, deleting the shortcut of a data file, folder or software application would not permanently delete or uninstall the main data file respectively.
Please help me with my question
Answer:
1. Template
2. Name of the website
3. Signature of the instructor
in a dark place you have only a match , a twig , campfire logs , and oil lamp and a candle which do you literally first /
a twig
a campfire
none of the above
Answer:
You would use a twig first :)
Explanation:
Answer:
The glowing embers from the crackling campfire lit up the nighttime sky.
Explanation:
Q4. What is one of the benefits of using a library in a program?
Answer:
Simplifies creating a complex program
Explanation:
todas las computadoras son controladas por hardware?
Answer:
"La placa base está compuesta de más partes que alimenten y controlen el equipo. A diferencia del software, el hardware es una entidad física. ... Sin embargo, sin la creación de hardware para realizar tareas dirigidas por software a través de la unidad central de procesamiento, el software sería inútil."
Explanation:
(Sorry, I don't know much Spanish, so there might be mistakes. I hope this helps you.)
A professional-looking portfolio gives a clear message. What does it convey?
Ο Α. .
that you like to build up a sales pitch
OB. that you like to flaunt your work
OC. that you are serious about your work
OD.
that you put on a show for effect
Ο Ε.
that you only care about appearances
Reset
Next
Answer:a
Explanation:
A professional-looking portfolio gives a clear message that you put on a show for effect. Thus, the correct option is D). that you put on a show for effect.
What is a professional portfolio?Professional portfolio refers to the collection of work and other documents that make clear the abilities of the candidate to the potential employers. It can be created in both digital and physical format.
A portfolio is an collected album of all work samples and professional documentation that provides proof about the accomplishments, skills, potential and samples of an individual's work.
In order to give portfolio a professional look, there are several categories to be consider such as Personal Information, Values, Personal Goals and History, Accomplishments and Job History, Skills and Attributes, Education and Training as well.
Learn more about professional portfolio here:-
https://brainly.com/question/20411709
#SPJ2
Q.No.2. A study of the effect of smoking on sleep patterns is conducted. The measure observed is the time, in minutes, that it takes to fall asleep. These data are obtained: [3] Smokers:69.3 56.0 22.1 47.6 53.2 48.1 52.7 34.4 60.2 43.8 23.2 13.8 Non Smokers: 28.6 25.1 26.4 34.9 28.8 28.4 38.5 30.2 30.6 31.8 41.6 21.1 36.0 37.9 13.9
Answer:
(a) [tex]\bar x_1 = 43.7[/tex] [tex]\bar x_2 = 30.25[/tex]
(b) [tex]\sigma_1 = 16.93[/tex] [tex]\sigma_2 = 7.14[/tex]
(c) Smoking increases the time to fall asleep
Explanation:
Solving (a): The sample mean of each group
Mean is calculated as:
[tex]\bar x = \frac{\sum x}{n}[/tex]
So, we have:
Smokers
[tex]n_1= 12[/tex] and
[tex]\bar x_1 = \frac{69.3 +56.0+ 22.1 +47.6+ 53.2+ 48.1+ 52.7 +34.4+ 60.2 +43.8 +23.2 +13.8}{12}[/tex]
[tex]\bar x_1 = \frac{524.4}{12}[/tex]
[tex]\bar x_1 = 43.7[/tex]
Non Smokers
[tex]n_2 = 15[/tex] and
[tex]\bar x = \frac{28.6 +25.1 +26.4 +34.9 +28.8 +28.4 +38.5 +30.2 +30.6 +31.8 +41.6 +21.1 +36.0 +37.9 +13.9}{15}[/tex]
[tex]\bar x_2 = \frac{453.8}{15}[/tex]
[tex]\bar x_2 = 30.25[/tex]
Solving (b): The standard deviation of each group
This is calculated as:
[tex]\sigma = \sqrt{\frac{\sum(x - \bar x)^2}{n-1}}[/tex]
For smokers
[tex]n_1= 12[/tex]
So:
[tex]\sigma_1 = \sqrt{\frac{(69.3 -43.7)^2+(56.0-43.7)^2+..........+(13.8-43.7)^2}{12-1}}[/tex]
[tex]\sigma_1 = \sqrt{\frac{3152.04}{11}}[/tex]
[tex]\sigma_1 = \sqrt{286.5491}[/tex]
[tex]\sigma_1 = 16.93[/tex]
For non-smokers
[tex]n_2 = 15[/tex]
So:
[tex]\sigma_2 = \sqrt{\frac{(28.6 -30.25)^2+(25.1 -30.25)^2+..........+(13.9 -30.25)^2}{15-1}}[/tex]
[tex]\sigma_2 = \sqrt{\frac{713.2575}{14}}[/tex]
[tex]\sigma_2 = \sqrt{50.9469}[/tex]
[tex]\sigma_2 = 7.14[/tex]
Solving (c): Impact of smoking on time to sleep
In (b), we have:
[tex]\sigma_1 = 16.93[/tex] --- smokers
[tex]\sigma_2 = 7.14[/tex] --- non-smokers
Smokers have larger standard deviation (i.e. large variability) than non-smokers. This means that smokers require more time to fall asleep.
Why did Stephen Hawking stop playing hide and seek?
Answer:
because she keeps using a metal detector.
which of the following is the best example of an installation issue
Answer:
A user made an error while trying to set up a software program.
Answer:
A computer can't find the file that it needs to perform an operating system function. A computer displays error messages, and then the Blue Screen of Death appears. A user made an error while trying to set up a software program.
Explanation:
Can anyone help me with a mental ability work plzz
choose the correct option:
1) using
2) is
3) use
4) to eat
5) use
Identify the correct way to cite the Occupational Outlook Handbook's "How to Become a Dentist" web page.
A.Occupational Outlook Handbook. "How to Become a Dentist." Bureau of Labor Statistics and US Department of Labor, 2012.
B."Occupational Outlook Handbook." How to Become a Dentist. Bureau of Labor Statistics and US Department of Labor, 29 March 2012. Web. 1 May 2013.
C."How to Become a Dentist." Occupational Outlook Handbook. Bureau of Labor Statistics and US Department of Labor, 29 March 2012. Web. 1 May 2013.
D.How to Become a Dentist, Occupational Outlook Handbook. Bureau of Labor Statistics and US Department of Labor, 2012. Web. 1 May 2013.
Answer:
C."How to Become a Dentist." Occupational Outlook Handbook. Bureau of Labor Statistics and US Department of Labor, 29 March 2012. Web. 1 May 2013.
Explanation:
When citing an online publication without a known author, the title of the article is first stated and encapsulated in italics. This is then followed by the name of the website or book. The organization responsible for the write-up is indicated. A comma separates the name of the organization and the date when the article was written. 'Web' is written to show that the material was obtained online. Finally, the date that tells when the article was retrieved is noted.
This guideline applies to both the Modern Language Association and the American Psychological Association citation styles.
Answer:
Identify the correct way to cite the Occupational Outlook Handbook's "How to Become a Dentist" web page. awser:C Explanation: How to Become a Dentist." Occupational Outlook Handbook. Bureau of Labor Statistics and US Department of Labor, 29 March 2012. Web. 1 May 2013.
help,these are true and false and tick and cross
Answer:
1.
a.true
b.false
2a internal
Explanation:
hope it helps you
One of the following is NOT a type of Intellectual Property
Group of answer choices.
a) Copyright
b) Trademark
c) Trade Secrets
d) Privacy
Answer:
d) Privacy
Explanation:
An intellectual property can be defined as an intangible and innovative creation of the mind that solely depends on human intellect.
Simply stated, an intellectual property is an intangible creation of the human mind, ideas, thoughts or intelligence. They include intellectual and artistic creations such as name, symbol, literary work, songs, graphic design, computer codes, inventions, etc.
Generally, there are different types of intellectual property (IP) and this includes;
a) Copyright
b) Trademark
c) Trade Secrets
However, privacy is a type of intellectual property.
Choose the issue that is occurring from the drop-down menu. During the , development teams transform the requirements into a software application design. During the , the software design is implemented by developers in code. In the , software is evaluated for quality. Any issues with the software are logged as to be resolved by developers. Software that is maintained by developers is said to be .
Answer: See explanation
Explanation:
During the, (software design phase), developmentt teams transform the requirements into a software application design.
During the (software development phase), the software design is implemented by developers in code.
In the (software evaluation phase), software is evaluated for quality.
Any issues with the software are logged as (bugs) to be resolved by developers.
Software that is maintained by developers is said to be (supported).
Answer:
1) 2
2) 1
3) 2
4) 2
5) 3
Explanation: just did it
Diana has created a graphic design portfolio for a major project. What kind of portfolio would increase Dlana's chances of getting selected?
OA
a portfolio with some case studies of her graphic design work
OB.
a portfolio with graphic designs in her favorite theme
Ос.
a portfolio containing contact numbers of references
OD.
a portfolio that emphasizes large images and many colors
OE. a portfolio that emphasizes her qualifications and experience
Answer:
Hello There!!
Explanation:
I believe the answer is O A. a portfolio with some case studies of her graphic design work.
hope this helps,have a great day!!
~Pinky~