Writing the algorithm acts as _______________ for coding
1. Writing the algorithm acts as _______________ for coding
Answer:
hindi ko po alam ang sagot sorry po
2. convert flowchart into algorithm
MODULES AND LIFE IS THE BEST WAY TO DO YOU HAVE A HAVING A HAVING A
Answer:
ur module is already done
3. Determine the outcome of your code in algorithm.
Answer:
Find your starting and ending point are crucial to listing the steps of the process. To determine a starting point, determine the answers to these questions: What data/inputs are available? Where is that data located? What formulas are applicable to the issue at hand? What are the rules to working with the available data? How do the data values relate to each other?
4. A national bank opts to use machine learning for deciding whether to award loans to applicants. the engineers create the algorithm by training a neural network on their large database of previous loan applications and decisions (made by loan officers). after they start using the algorithm for new loan applicants, they receive complaints that their algorithm must be biased, because all the loan applicants from a particular zip code are always denied. what is the most likely explanation for the algorithm's bias
Answer:
0.053p
Explanation:
i can't answer it correctly I can't understand but I'm willing to find the answer
5. I hope someone here knows how to code and make algorithms.Can I use this algorithm [Increase "z" cumulatively according to "y"] to the codeconstantEX = 10z = 0while True: x = int(input("give a number:")) if x== 1: quantity = int(input("Enter the quantity: ")) y = constantEX * quantity z += yI didn't include the whole code.
Answer:
z += y means no matter what the value of z will be added to z.
z will be incremented by the result of y
6. What is produced when writing a machine learning algorithm using a large data set what is produced when the data scientist compiles the code?
Answer:
Question: What is produced when writing a machine learning algorithm using a large data set what is produced when the data scientist compiles the code?
Answer:
Machine-learning algorithms process large datasets to develop a data-driven model. Feature ranking helps us understand the inherent decision making process of a data-driven model and helps in evaluating the consistency of a data-driven model by making the model easy to interpret.#READYTOHELP
7. Directions: Write TRUE if the statement is true and FALSE if not. true 1. Computer is a machine that perform only a single task according to specific instruction, 2. Hardware is the intangible part of a computer. 3. CPU is the heart and brain of the computer 4. Systems programs are needed to keep all the hardware and software systems running together smooth. 5. Compiler is a program that converts instruction into a machine code so that they can be read and executed by a computer. 6. Algorithm is a step-by-step instructions used to solve problem.7. An algorithm is an ordered set of unclear executable steps. 8. A set of directions is the algorithm we use when we're looking for the Post Office. 9. A set of directions is the algorithm we use when we're building a wardrobe. 10. Only top software programmers can write an algorithm. 11. A recipe is the algorithm we use when we're making a cake. 12. When you write an algorithm the order of the instructions is very important. 13. Algorithms can be used anytime to design solutions to problems. 14. More than one way of solving problem should be considered when designing an algorithm 15. A program is an illustration of an algorithm designed for computer applications
Answer:
false
true
true
true
true
true
true
true
false
true
true
true
true
true
#CarryOnLearning
#StudyHard
8. 1. Design an algorithm, pseudocode and flowchart that converts Celsius to Fahrenheit. Use the formula: F = C x (1.8 + 32).
Answer:
33.8
Explanation:
sana makatulong po
9. design an algorithm that converts celcius to fahrenheit. use the formula f = c x (1.8 = 32)
Answer:
0/5 5.2-6.2 ayn po ata yung sagot
10. A flowchart. helps you plan out computer code is a type of graphic diagram that represents an algorithm, uses shapes to help organize a process
A flowchart is a kind of graphic diagram that portrays an algorithm, assists in the planning of computer code, and utilizes shapes to facilitate in the organization of a process; all definitions you mentioned above are correct.
A flowchart is a graphical representation of a process, system, or computer algorithm. They are widely used in a variety of areas to document, examine, plan, enhance, and convey frequently complicated processes in clear, simple diagrams.
There are four types of flowcharts that are widely used. They are as follows: process flowchart, workflow diagram, swimlane flowchart, and data flowchart.
A flowchart is a diagram that depicts a process. It is a diagram that depicts the workflow necessary to execute a job or series of activities using symbols, lines, and shapes. Flowcharts are used in a variety of areas to investigate, develop, and convey processes.
Learn more about flowchart here https://brainly.ph/question/235304
#SPJ4
11. 2. It is the process of developing how a computer program should work.a. program designb. algorithmc. flowchartd. coding language
Answer:
b. algorithm, thank me later
12. Write an algorithm to Convert temperature: Fahrenheit to Celsius. C=5/9*(F-32)
Answer:
#include<stdio.h>
int main()
{
float celsius,fahrenheit;
printf("Enter temperature in Fahrenheit: \n");
scanf("%f",&fahrenheit);
celsius=(fahrenheit - 32)*5/9;
printf("\nCelsius = %.3f",celsius);
}
Explanation:
Coded it with C
13. create a computer program that accepts number of days and convert it to hours display the result.input:process:output:algorithm
Answer:
days = int(input())
result = days*24
print(result)
Note:
Python languange 'yan, please mention what programming languange ang gagamitin.
14. what is the importance of knowing how to convert algorithm to flowchart and vice versa
Answer:
yan po sana naka bawas sa gawain mo
15. Create a computer program that accepts number of days and convert it to hours, display the result.INPUT:PROCESS:OUTPUT:ALGORITHM:
Answer:
algorithms
Explanation:
because input,process and output are ways of the computer to do in a process to have an output or product but algorithm is a computer program that accepts number of days and convert it to hours,display the result.
16. when writing a computer programmers most program use... a. a high level language , b. a machine code, c. a low level language, d. an algorithm
Answer:
A.
Explanation:
Answer:
a.) High level language
Explanation:
In the past the majority of programming applications were written in BASIC, FORTRAN, or COBOL - all general languages.
17. Modified True or False1.Programming Algorithm is not computer code. 2. An interpreter translate the entire program into machine codes before running the program.
Answer:
1.true
2.true
Explanation:
sana makatulong;)
18. 1. The aim of pseudocode is to make programming easier by using symbols. A. Yes B. No 2. Is a way of expressing an algorithm without conforming to specific syntactic rules A. Pseudocode C. Algorithm B. Data Type D. Flowchart 3. It is a set of rules on how to use and organize statements in a programming language A. Variable C. Language D. Code B. Syntax 4. Before you write once piece of computer code, you should? A. Conform to specific syntax C. Know what the program is supposed to do B. Create a variable D. Describe an algorithm 5. In writing basic pseudocode is not like writing an actual coding language. It cannot be compiled or run like a regular program. It can be written on? A How you wantC. Peripheral input and output devicesB.Computer D. Accepted notations
Answer:
1.a
2D
3B
4A
5C
Sorry kung mali
19. 2. What is one way of getting the GCD of two positive integers without factoring, by recursive use of division algorithm? * A. Euler's Algorithm B. Euclidean Algorithm C. Division Algorithm D. Bezout's Algorithm
#ANSWER ☁️
2. What is one way of getting the GCD of two positive integers without factoring, by recursive use of division algorithm? *
A. Euler's AlgorithmB. Euclidean AlgorithmC. Division AlgorithmD. Bezout's Algorithm[tex]____________________________________[/tex]
#ANSWER ☁️2. What is one way of getting the GCD of two positive integers without factoring, by recursive use of division algorithm? *
A. Euler's AlgorithmB. Euclidean AlgorithmC. Division AlgorithmD. Bezout's Algorithm[tex]____________________________________[/tex]
20. Write an algorithm to convert temperature: Fahrenheit to celcius. C=5/9*(F-32).
°C to °F Divide by 5, then multiply by 9, then add 32
°F to °C Deduct 32, then multiply by 5, then divide by 9
#happytohelp
#CarryOnLearning
21. Example of Java script program code and its algorithm
Answer:
Examples of these Array methods in code: ... The JavaScript Array object is a global object that is used in the construction
22. Effectiveness of Learning Codes and Algorithms on the Programming SAMPLE AND SAMPLING TECHSAMPLE AND SAMPLING TECHNIQUES USEDpa help po!!5sentence po
Effectiveness of Learning Codes and Algorithms on the Programming
SAMPLE AND SAMPLING TECH
SAMPLE AND SAMPLING TECHNIQUES USED
pa help po!!
5sentence po
23. Write the algorithm to convert the length in feet to centimeter
Answer:
STEP 1: StartSTEP 2: Declare x, in feetSTEP 3: Input= x feetSTEP 4: CM= x*30.48STEP 5: Print= y cm
Explanation:
24. Suppose we are working with an error-correcting code that will allow a single bit errors to be corrected for memory words of length 12. we have already calculated that we need 5 check bits, and the length of all code words will be 17. code words are created according to the hamming algorithm. we now receive the following codeword 00101111001000011. is this a legal code word
Answer:
ang haba naman yan
Explanation:
d ko gets
25. use and importance of bresenhams algorithm in scan-converting a circle
Answer:
This algorithm is used for scan converting a line. It was developed by Bresenham. It is an efficient method because it involves only integer addition, subtractions, and multiplication operations. These operations can be performed very rapidly so lines can be generated quickly.
Explanation:
26. Write an algorithm to convert the decimal numbers into binary numbers.
Answer:
Decimal to binary in C: We can convert any decimal number (base-10 (0 to 9)) into binary number(base-2 (0 or 1)) by c program.
27. Why it is important to create algorithm first before coding?
Answer:
By creating algorithm you will be able to evaluate all the possible solution to specific problem. ... It's a bad programming methodology to start writing computer program without analyzing and write the best algorithms for the problem at hand.
Explanation:
28. Write an algorithm and pseudocode that will convert from either Fahrenheit, Kelvin, or Celsius into Fahrenheit, Kelvin, or Celsius.
Answer:
What is a pseudocode and flowchart that converts temperature entered in Fahrenheit by an end-user to Celsius? [Hint formula that converts Fahrenheit to Celsius: C = (F-32) * 5/9].
Explanation:
paki follow
29. Do the algorithm of the problem below using Flowchart and Pseudo code: FIND THE SUM OF 10 NUMBERS.
hope it help
STUDYFAST
BRAINLySFAST.
30. A way to present your algorithm using shapes and symbols. Select one: a. None of these b. Pseudo code c. Flowchart d. Human Language
Answer:
a
Tap on a clip to paste it in the text box.
Answer:
a
Explanation:
yan po correct me if me wrong mwuaahhh