Translating an algorithm into the syntax of Java is the design phase of software development.

Answers

Answer 1

Answer:

I think it's false

Explanation:

I don't think so. What makes me hesitate is that you may have been told that in your text or in the classroom.

Here are the steps as I understand them.

Understand the problem you are trying to solve. Design a solution. Draw a flow chart. Write pseudo-code. Write code. Test and debug.

I think you've done the designing long before you start writing code or even pseudo-code.


Related Questions

Which computer are used by mobile employees such as meter readers.​

Answers

Answer:

Handheld/Mobile Computers

what are the things a computer can do?​

Answers

Answer:

It can run a bunch of special command that coder implanted and when you a normal person clicks something it runs smooth with no difficulty.

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 -D-D - Du 0 e the output is: earn Note: Using a pre-defined string function, the solution can be just one line of code. 1 #include 2 #include 3 using namespace std; 4 5 int main() { 6 string workStr; 7 int idx; 8 char newChar; 9 19 getline(cin, workStr); 11 cin >> idx; 12 cin >> newChar; 13 14 15 16 cout << workStr << endl; 17 18 return; 19} 1 2 3

Answers

Answer:

#include <iostream>

using namespace std;

const string replace(const string workStr, int idx, const char newChar) {

   string ans = "";

   for (int i = 0; i < workStr.length(); ++i)

       ans += (i != idx ? workStr[i] : newChar);

   return ans;

}

int main() {

   string workStr;

   int idx;

   char newChar;

   getline(cin, workStr);

   cin >> idx;

   cin >> newChar;

   

   cout << replace(workStr, idx, newChar) << endl;

   

   return 0;

}

Explanation:

Declares the necessary variables. Next read them  and finally call a replace user defined function to solve the problem.

The program is given in C++. So, the code must be completed in C++.

The missing part of the program can be completed with the following lines of code:

string newStr(1, newChar);

workStr.replace(idx,1,newStr);  

To complete the code, we first convert newChar to a string.

This is done using:

string newStr(1, newChar);

In the above code segment, a string variable newStr is initialized with the value of newChar

Next, replace the character of the string using:

workStr.replace(idx,1,newStr);  

The syntax of the above instruction is:

string-variable.replace(position, number of characters to replace, replacement string)

In this case,

The string variable is workStrThe position of string to replace is idxThe number of characters is 1 (because only one character is to be replaced)The replacement string is newStr

See attachment for the complete program and a sample run

Read more about C++ programs at:

https://brainly.com/question/24494143

what's the difference between joystick and mouse​

Answers

Hey there! This is the difference between a joystick and a mouse:

A mouse is moved back and forth and up and down by a person's hand. The mouse device moves across the table surface. A joystick on the other hand stays stationary and is basically composed of a base and a stick. A vertical stick is held in the hand and tilted forward backward left and right. But the only thing that moves with a joystick is the center stick.

I hope this helps you out! Let me know if you have any questions!

Answer:

joystick means a mechanical device consisting of a handgrip mounted on a base or pedestal and typically having one or more buttons, used to control an aircraft, computer or other equipment, whereas mouse means any small rodent of the genus mus.

hope this will help u :)

Which type of database would be used to analyze hours worked per nursing unit in a healthcare facility?
A. Data warehouse
B. Data mart
C. Data mining
D. Distributed database

Answers

Answer:

a

Explanation:

a is a answer just in the question was a name is not true

Data warehouses are employed for commercial reporting and analytical needs. Any grouping of data that has been arranged for archiving, access, and retrieval is referred to as a database.

What is the difference between  database and data warehouse?

Any grouping of data that has been arranged for archiving, access, and retrieval is referred to as a database. In a data warehouse, copies of transaction data from several source systems are combined and made available for analytical use.

Data warehouses are employed for commercial reporting and analytical needs. Data warehouses often save copies of transaction data from several sources to store historical data. Real-time data feeds can also be used by data warehouses to provide reports that employ the most recent, comprehensive information.

A data warehouse is a central collection of data that can be examined to help decision-makers become more knowledgeable. Transactional systems, relational databases, and other sources all regularly and continuously feed data into a data warehouse.

Therefore, the correct answer is option A. Data warehouse.

To learn more about Data warehouse refer to:

https://brainly.com/question/25885448

#SPJ2

Any computer expert to help me answer this question plz am giving brainliest

Answers

Answer:

(Shown below)

Explanation:

The email is written as:

boby(at)qengineers.org

The first part of the email adress is the name, which is Boby. (boby(at)qengineers.org)

The second part will always be the (at) sign. (boby(at)qengineers.org)

The third and last part is the company, or where the email is coming from. (boby(at)qengineers.org)

Hope this helps!

(Also please note I put (at) for the at symbol because brainly doesn't let me type it in)

Sarah stores data electronically.

Describe three methods that she could use to avoid loss of stored data.​

Answers

Answer:

Always back up your data. Prevention is the best protection.

Diversify your backups. You always want more than one backup system.

Encrypt sensitive data. Data is not always encrypted even when it's on a backup tape.

Address data security.  

Use anti-virus and email security.  

Trust the professionals

Explanation: HOPE IT HELPS YOU

In the year 2008, which of the digital devices was a carrier of the virus in the supply chain environment? [Choose all that apply]

Android device

USB drive

Hard drive

Digital Photo frame

Answers

Answer:

usb drive

Explanation:

risk of transporting viruses to another system

Digital devices or USB drive have been the virus carrier within the supply chain environment in the year 2008.

The USB hard drive is a "solid-state" device, which also means doesn't have moving parts. Flash drives are, even so, significantly smaller than the hardest drives and can't hold so much information. It is a small, portable device that helps connect to the USB computer’s USB drive that also called a Flash drive or storage machine. Utilizing USB drives, data storage, backup as well as transmit between devices have been commonly used.

Therefore, the final answer is "USB drive".

Learn more:

brainly.com/question/16737681

Which of the following job duties would a person in marketing preform

Answers

Answer: Hello There!.............

advertisement design

If there in marketing then they are trying to sell stuff and what better way to sell stuff then advertising your product

Explanation:

Mark me brainest please. Hope this helps. Anna ♥

which of the following generations does natural language fall into​

Answers

Answer:

2021

Explanation:

Answer:

What following you didn't write the full question ?

Write the use of these computers.

Analog computer

Mainframe computer

Mini computer

Laptop computer

Desktop Computer ​

Answers

Answer:

i not know mainframe computer there is many use of computer

Answer:

There used for school, and googol

Explanation:

lol

How did the ENIAC change computing?
How did the ENIAC change computing?

Answers

Answer:

The ENIAC, or Electronic Numerical Integrator and Computer, could churn 5,000 addition problems in one second, far faster than any device yet invented. In February 1946, J. ... In a few years, computers would pop up at universities, government agencies, banks and insurance companies.

in Adobe illustrator cc 2017 which of the following export file ​

Answers

Explanation:

In Adobe illustrator cc (2017) , of the following export file formats cannot preserve transparency

The computerization of human lives was the beginning of the end of all the traditional methods and non-automated devices. Ever since the evolution of computers and the introduction of automation the human lives have gone through drastic changes. Artificial Intelligence (AI) is changing the face of many organizations’ way of working. One of the most controversial topics when it comes to artificial intelligence is how the future of AI will impact humanity. Select any manufacturing company operating in Vietnam and explain can AI replace human workers in the manufacturing company you have selected? You will further consider why have AI caught on in manufacturing and what knowledge do they require? You will also need to explain if you were considering introducing AI in your manufacturing plant, what people, organization, and technology issues would you need to address?

Answers

Answer:

carry out hazard hunting of your home and identify types of hazard. suggest measures to mitigate it.

1.11 Additional practice: Output art1.12 zyLab training: BasicsWhile the zyLab platform can be used without training, a bit of training may help some students avoid common issues.The assignment is to get an integer from input, and output that integer squared, ending with newline. (Note: This assignment is configured to have students programming directly in the zyBook. Instructors may instead require students to upload a file). Below is a program that's been nearly completed for you.Click "Run program". The output is wrong. Sometimes a program lacking input will produce wrong output (as in this case), or no output. Remember to always pre-enter needed input.Type 2 in the input box, then click "Run program", and note the output is 4.Type 3 in the input box instead, run, and note the output is 6.When students are done developing their program, they can submit the program for automated grading.Click the "Submit mode" tabClick "Submit for grading".The first test case failed (as did all test cases, but focus on the first test case first). The highlighted arrow symbol means an ending newline was expected but is missing from your program's output.Matching output exactly, even whitespace, is often required. Change the program to output an ending newline.Click on "Develop mode", and change the output statement to output a newline: print(userNumSquared). Type 2 in the input box and run.Click on "Submit mode", click "Submit for grading", and observe that now the first test case passes and 1 point was earned.The last two test cases failed, due to a bug, yielding only 1 of 3 possible points. Fix that bug.Click on "Develop mode", change the program to use * rather than +, and try running with input 2 (output is 4) and 3 (output is now 9, not 6 as before).Click on "Submit mode" again, and click "Submit for grading". Observe that all test cases are passed, and you've earned 3 of 3 points.userNum = int(input())userNumSquared = userNum + userNum # Bug here; fix it when instructedprint(userNumSquared, end=' ') # Output formatting issue here; fix it when instructed

Answers

Following are Python programs to the given question:

userNum = int(input())#defining a variable userNum

userNumSquared = userNum * userNum#defining a userNumSquared that calculates the square value of userNum

print(userNumSquared)#print squared value

Output:

60

3600

Program explanation:

In the above-given python code, a variable "userNum" is declared that uses an input method with the int that only takes an integer value as an input.In the next line, another variable "userNumSquared" is declared that is used to calculates the square value of "userNum". After holding the square value it uses the print method to prints its calculated value.

Learn more:

brainly.com/question/14484366

application of optical fibre​

Answers

Answer:

Internet data transfer.

Explanation:

Optical fibre can be used to move information from one place to another. It is used in internet communications, cable television broadcasting, and telephone communication. One common application is for the transfer of data over the internet. Chances are your browser was able to download this web page by receiving data that came from Brainly's servers, and from my computer, through a fibre optic cable.

A serial schedule:

a. Can have a dirty read anomaly
b. Is always sorted sequentially in ascending order by transaction ID
c. Needs the current Xact to finish before another one starts
d. Is just theoretical and cannot be implemented in real life Reset Selection

Answers

Answer:

B)

Explanation:

Is alwayd sorted sequentially in aceding order by transaction ID

What is an example of an Experience component within an enterprise platform?​

Answers

Answer:

A

Explanation:

A system used for processing customer payments. A tool used to coordinate recruitment of new employees. A mobile app used by customers to place orders.

give ways in which fire can be prevented in a computer lab​

Answers

Answer:

don't try to run a sketchy game that plays in 4k on a computer and monitor that can only generate 1280p.

Explanation:

yes. I made that mistake once.

What are the fundamental activities that are common to all software processes?

Answers

Answer:

There are some fundamental activities that are common to all software processes:

•Software specification. In this activity the functionality of the software and constraints on its operation must be defined.

•Software design and implementation. ...

•Software validation. ...

•Software evolution

What makes up the cloud in cloud computing ?

Answers

Answer:

storage

Explanation:

hope this helps

define what is evaluation​

Answers

Answer:

the making of a judgment about the amount, number, or value of something; assessment.

Explanation:

be smart

Answer:

Evaluation is a systematic determination of a subject's merit, worth and significance, using criteria governed by a set of standards. It can assist an organization, program, design, project or any other intervention or initiative to assess any aim, realisable concept/proposal, or any alternative, to help in decision-making; or to ascertain the degree of achievement or value in regard to the aim and objectives and results of any such action that has been completed.[1] The primary purpose of evaluation, in addition to gaining insight into prior or existing initiatives, is to enable reflection and assist in the identification of future change.

how do i recover deleted search history

Answers

Answer:

You can search from activity option of your browser....

Explanation:

mark me as brainliest ❤️

Answer:

I presume there is no way you can do that :l

Explanation;

So be careful when you delete your history:-)

Please mark Brainliest ... :-)

Verbs in the active and passive voice

Answers

Answer:

Voice refers to the form of a verb that indicates when a grammatical subject performs the action or is the receiver of the action. When a sentence is written in the active voice, the subject performs the action; in the passive voice, the subject receives the action.

can I ask a question about information technology (IT)...
those who live in Nepal please suggest me..:)
which subject should I choose to read IT ?
#should I go through science?
# under science which subject need I to choose to study IT



I just passed grade10 and going to take a difficult decision for studying in grade 11​

Answers

Answer:

Hey don't overthink about it .It all depends on your interest like what you would prefer and how much you can afford. I guess it's your life so you should take a decision by yourself.

I hope it helps..

Which of these skills are Transferable Skills?
Question 2 options:

installing a corporate network

solving problems

critical thinking

building positive relationships

creating a spreadsheet

Which of these skills are Technical Skills?
Question 1 options:

Writing code

solving problems

critical thinking

replacing a hard drive

great communicator

Answers

The abilities you utilize in any work, whether it is in the title or the sector, are just how transferable they sound.

Some talents transferable are "hard," such as coding or data analysis is "soft," such as communication skills and relationship development.It allows you to interact more effectively with employees, managers, and customers. These competencies may foster stronger professional partnerships, which can lead to chances for career development and leadership.

So, the final answer is "Solving problems,  critical thinking,  building positive relationships,  and creating a spreadsheet (that is part of Computer Skills)".  

Learn more:

brainly.com/question/20799425

'Automation destroys human creativity and innovation.' How far do you agree or disagree?

Answers

It depends on what we are talking about, automation in a car would mean that there is less stress for the driver, but we humans tend to get lazy when things are done for us, so that statement is partially true

Explanation:

'Automation destroys human creativity and innovation.' It can be agreed, to some extent, that automation is not applicable everywhere.

What is automation?

We need creativity to improve the currently available products. Due to the extensive use of technology nowadays, when people want to do something new, they are less likely to think carefully or put forth the effort to finish the activity and are more likely to search online for inspiration.

The impact of modern technologies on your mind, however, is more than you might realize. You become more creative as a result of modern tools. In particular at the individual level, technology has had negative effects like restricting creativity.

Because people are so reliant on the internet and are constantly distracted by technology, imagination is being slowly stifled. Social anxiety is just another result of technological progress.

Therefore, automation stifles human ingenuity and originality. To some extent, it can be recognized that automation is not appropriate everywhere.

To learn more about automation, refer to the link:

https://brainly.com/question/28222698

#SPJ2

sự ra đời của thương mại điện tử có tác động như thế nào đến việc quảng cáo và Marketing sản phẩm
-

Answers

Sorry the languagw is not understood

Consider the LIBNAME statement below: LIBNAME 'path-to-file'; TRUE/FALSE: The name of the SAS library you are creating must match the name of the folder it references.

Answers

The SAS Library is a collection of a SAS file or more that is SAS recognized and stored as a unit.

Every file is a library member, it assists you to get your job organized. It consists of all your files in the same library if a SAS program needs or more than one SAS.A logical name termed a libre is a reference in a SAS library. The single SAS library can't store files at various physical sites, in which SAS deletes the temporary SAS library contents but not SAS libraries.

That's why the given statement is "false".

Learn more:

brainly.com/question/14354148

Will technology ever reach a stage where considered perfect, or will it always be evolving? explain

Answers

Answer:

I think technology will reach a stage where all and everything will be excellent

Other Questions
Write a page of your diary talking about thepast week Why is agar medium used in Petri dishes?A.It makes bacteria appear larger.B.It sterilizes the petri dish.C.It helps microorganisms grow.D.It makes cells glow. Whats the Square root of 3.24 When copper is changed to copper(II) nitrate by the nitric acid, it is an example of a(n) ______-_______ reaction. (two words, include the hyphen with no spaces) All of them were shimmering green and white gowns depicting the school crawler what are the four adjectives and two modifieds Law of indices a10a Which of the following is an example of a chemical property? the flammability of hydrogen the boiling point of ethanol the melting point of gold the density of neon gas please help for 100 points We are driving to Orlando. The sign saysthat it is 145 kilometers to Orlando.How many meters is it to Orlando?A: 0.145B: 145,000C: 14.5D: 14,500 factorise X2+ 49+14X Determine the domain on which the following function is decreasing Why is technology important? 2/What is the greatest common factor of 20x4 and 6x??.OB.AOC. 2xOD. 2XAResetNext Read the following sentence and identify which part(s)/portion(s) make up the subject of the sentence. El profesor administra el examen a los estudiantes. Please help me!! Really important Horizontales (Across)1. un saludo5. el mes entre mayo y julio7. el mes de amor8. el mes con el cinco de mayo10. el veinticinco de mayo si hoy es el veinticuatro de mayo13. un chico que aprende en la clase15. El mes con Halloween16. Espaa, Mxico, los Estados Unidos, Francia, China, Per19. el mes con el da de San Patricio20. una mujer que ensea la claseVerticales (Down)2. una persona no vieja3. el mes con la Navidad4. el primer mes del ao5. el mes con el Da de Independencia para los Estados Unidos6. una despedida9. el mes con Pascua11. el 2 de abril, si hoy es el 3 de abril12. el mes con el Da de Independencia para Mxico14. el mes con el Da de Dar Gracias17. el mes que termina el verano18. una mujer no casadaCan someone answer this crossword for me 1. It had rained for three days. The sun finally came out. a. It had rained for three days because the sun finally came out. b. After it had rained for three days , the sun finally came out . c. It had rained for three days , the sun finally came out . A cylinder fitted with a movable piston and filled with a gas has a volume of 188.5mL at 26.7 C when the applied pressure is 755.2 torr. The temperature of the oil bath surrounding the cylinder was increased to 165.2 C, and the load on the piston was changed. Careful measurement now gave a value of 210.5mL for the volume. What was the final pressure in the system, in torr? Select one: O a. 715.5 tor O b. 576.9 torr Oc. 988 6 torr O d. 1233 torr 462.6 tor Who legally abolished slavery and nullified the 3/5 comprise and fugitive slave clause ? Jennifer is saving money to buy a bike. The bike costs $261. She has $107 saved, and each week she adds $14 to her savings.How long will it take her to save enough money to buy the bike?It will take her ____ weeks to save for the bike. What is the probability of drawing a red card or a queen from a standard deck of 52 cards?7 over 1315 over 261 half1 over 26