A ______________ is diagram that depicts the flow of a program. a) Algorithm b) Hash Table c) Graph d) Flowchart

1 Answer

Answer :

Answer: d Explanation: A flowchart is a diagram that helps us determine the flow of the program. Other options are irrelevant

Related questions

Description : When an algorithm is written in the form of a programming language, it becomes a _________ a) Flowchart b) Program c) Pseudo code d) Syntax

Last Answer : Answer: b Explanation: An algorithm becomes a program when it is written in the form of a programming language. Thus, any program is an algorithm

Description : The word ____________comes from the name of a Persian mathematician Abu Ja’far Mohammed ibn-i Musa al Khowarizmi. a) Flowchart b) Flow c) Algorithm d) Syntax

Last Answer : Answer: c Explanation: The word algorithm comes from the name of a Persian mathematician Abu Ja’far Mohammed ibn-i Musa al Khowarizmi

Description : ___uses various symbols to represent function within program and is __ _representation: a. Flowchart, pictorial b. Algorithm, pictorial c. Pictorial, flowchart d. None of these

Last Answer : a. Flowchart, pictorial

Description : is useful to prepare detailed program documentation: a. Flowchart b. Algorithm c. Botha &b d. None of these

Last Answer : a. Flowchart

Description : Avoid crossing flow lines. a. Flowchart b. Algorithm c. Botha &b d. None of these

Last Answer : a. Flowchart

Description : Data going into the computer is called? 1) Output 2) Algorithm 3) Input 4) Calculations 5) Flowchart

Last Answer : Answer :3

Description : What hash algorithm is used by common implementaions of Chap?

Last Answer : Need answer

Description : What is the relationship between algorithm and flowchart ?

Last Answer : Answer : The periodic minutes required to compose and execute a program are called algorithms. An algorithm can be used to solve a problem by breaking it down into several steps, solving each step ... one to solve the problem. Geometric images or assembly symbols are used in some of the flowcharts

Description : Write an algorithm and draw the flowchart to find sum of series of numbers. 

Last Answer : Algorithim to find sum of series of numbers: 1. Initialize data segment 2. Initialize byte counter and memory pointer to read number from array. 3. Initialize sum variable to 0 4. sum=sum+number from array ... Decrement byte counter 9. If byte counter=0 then step 10 else step 4 10. Stop

Description : Graph depicts the concentration of enzymes involved in urea synthesis in a developing tadpole. It indicates a transition from `:`

Last Answer : Graph depicts the concentration of enzymes involved in urea synthesis in a developing tadpole ... to ureotelism D. Ureotelism to reocotelism

Description : The following graph depicts changes in two populations (A and B) of herbivores in a grassy field. A possible reason for these changes is that :

Last Answer : The following graph depicts changes in two populations (A and B) of herbivores in a grassy ... completed more successfully for food than population A

Description : The following graph depicts changes in two populations (A and B) of herbivores in a grassy field. A possible reason for these changes is that :

Last Answer : The following graph depicts changes in two populations (A and B) of herbivores in a grassy ... Population A produced more offspring than population B

Description : The following graph depicts changes in two populations (A and B) of herbivores in a grassy field. A possible reason for these changes is that (a) population A produced more offspring ... populations in this habitat decreased (d) population B competed more successfully for food than population A.

Last Answer : (c) both plant populations in this habitat decreased

Description : ____ is a small picture on screen that depicts program, file or folder: a) Start Bottom b) Task Bar c) Icon d) Pixel e) Cursor

Last Answer : c) Icon

Description : A computer program consists of: a) System Flowchart b) Program Flowchart c) Algorithm's written in any computer language d) None of The Above

Last Answer : c) Algorithm's written in any computer language

Description : What is called as transposition table? a) Hash table of next seen positions b) Hash table of previously seen positions c) Next value in the search d) None of the mentioned

Last Answer : b) Hash table of previously seen positions

Description : Q.What is the major advantage of a hash table?

Last Answer : The major advantage of a hash table is its speed. Because the hash function is to take a range of key values and transform them into index values in such a way that the key values are distributed randomly across all the indices of a hash table.

Description : Given an open address hash table with load factor a < 1, the expected number of probes in a successful search is (A) Atmost 1/α ln (1-α/α) (B) Atmost 1/α ln (1/1-α) (C) Atleast 1/α ln (1/1-α) (D) Atleast 1/α ln (α/1-α)

Last Answer : (B) Atmost 1/α ln (1/1-α)

Description : If h is chosen from a universal collection of hash functions and is used to hash n keys into a table of size m, where n ≤ m, the expected number of collisions involving a particular key K is (A) less than 1 (B) less than lg n (C) greater than 1 (D) greater than lg n

Last Answer : (A) less than 1

Description : Consider a hash table of size m=100 and the hash function h(k) = floor(m(kA mod 1)) for A = (√5 − 1)/2 = 0.618033. Compute the location to which the key k = 123456 is placed in hash table. (A) 77 (B) 82 (C) 88 (D) 89

Last Answer : (C) 88

Description : If h is chosen from a universal collection of hash functions and is used to hash n keys into a table of size m, where n≤m, the expected number of collisions involving a particular key x is less than ................... (1) 1 (2) 1/n (3) 1/m (4) n/m

Last Answer : Answer: 1

Description : A perceptron is a ______________ a) Feed-forward neural network b) Backpropagation algorithm c) Backtracking algorithm d) Feed Forward-backward algorithm

Last Answer : a) Feed-forward neural network

Description : ______________ Is an algorithm, a loop that continually moves in the direction of increasing value – that is uphill. a) Up-Hill Search b) Hill-Climbing c) Hill algorithm d) Reverse-Down-Hill search

Last Answer : b) Hill-Climbing

Description : Which of the following represents the step of scientific methodI- Develop hypothesis based on evidenceII- Calculate hash value of evidenceIII- Test the hypothesis to look for additional evidence IV-make an imaging of the original evidence A. All above B. I and III C. II and IV D. II, III and IV

Last Answer : B. I and III

Description : Which of the following represents the step of scientific method? I- Develop hypothesis based on evidence II- Calculate hash value of evidence III- Test the hypothesis to look for additional evidence IV-make an imaging of the ... a. I and IV b. I and II c. II, III and IV d. All of above

Last Answer : b. I and II

Description : What is program flowchart ?

Last Answer : A program flowchart is an algorithm of a program that is expressed using diagrams.

Description : Define what is a program flowchart and Define How does it help in writing a program?

Last Answer : A flowchart provides a visual representation of the step by step procedure towards solving a given problem. Flowcharts are made of symbols, with each symbol in the form of different shapes. Each shape ... the entire program structure, such as a process, a condition, or even an input/output phase.

Description : Draw a flowchart of Do-while loop and write a program to add numbers until user enters zero. 

Last Answer : Flowchart of Do-while loop: Program:- #include<stdio.h> #include<conio.h> void main() { int no,sum=0; clrscr(); do { printf("\n Enter a number:"); scanf( ... no; }while(no!=0); printf("\n Sum of entered numbers =%d",sum); getch(); }

Description : ………….. gives defining the flow of the data through and organization or a company or series of tasks that may or may not represent computerized processing. A) System process B) System flowchart C) System design D) Structured System

Last Answer : B) System flowchart

Description : Which is used to extract solution directly from the planning graph? a) Planning algorithm b) Graphplan c) Hill-climbing search d) All of the mentioned

Last Answer : b) Graphplan

Description : Which data structure is used to give better heuristic estimates? a) Forwards state-space b) Backward state-space c) Planning graph algorithm d) None of the mentioned

Last Answer : c) Planning graph algorithm

Description : Any algorithm is a program. a) True b) False

Last Answer : Answer: b Explanation: The statement is false. An algorithm when represented in the form of a programming language is called a program. Any program is an algorithm but the reverse is not true

Description : A compiler translates a program written in a high-level language into a) Machine language b) An algorithm c) A debugged program d) Java e) None of these

Last Answer : a) Machine language

Description : A compiler translates a program written in a high level language into 1) Machine Language 2) An algorithm 3) A debugged program 4) None of these

Last Answer : 1) Machine Language

Description : Compiling creates a(n)- 1) Program Specification 2) Algorithm 3) Executable Program 4) Subroutine

Last Answer : 3) Executable Program

Description : Algorithm and Flow chart help us to A) Know the memory capacity B) Identify the base of a number system C) Direct the output to a printer D) Specify the problem completely and clearly

Last Answer : Answer : D

Description : Algorithm and Flow chart help us to--- 1) Know the memory Capacity 2) Identify the base of a number system 3) Direct the output to a printer 4) Specify the problem completely and clearly

Last Answer : 4) Specify the problem completely and clearly

Description : A computer programmer A) Does all the thinking for a computer B) Can enter input data quickly C) Can operate all types of computer equipments D) Can draw only flowchart

Last Answer : Answer : A

Description : Which of the following is not a flowchart structure? a) Process b) Sequence c) Repetition d) Case

Last Answer : Answer: a Explanation: There are basically four flowcharting structures: • Decision • Repetition • Case • Sequence

Description : Terminals are represented by diagonals in a flowchart. a) True b) False

Last Answer : Answer: b Explanation: The statement is false. Terminals are represented by rounded rectangles. They indicate the starting or ending point in a flowchart

Description : The primary aim of computer process is to convert the data into ______ (A) table (B) graph (C) file (D) information

Last Answer : (D) information

Description : The wiring diagram for the motor starting circuit shown in the illustration indicates ______________. EL-0007 A. resistance starting B. reduced voltage starting C. low voltage protection D. low voltage release

Last Answer : Answer: C

Description : Figure 'A' of the diagram shown in the illustration represents a ______________. EL-0092 A. differential transformer B. saturable reactor C. synchro system D. magnetic amplifier

Last Answer : Answer: C

Description : Fill in the blank. Work breakdown structure (WBS) is a ______________ of the work  with increasing detail in each layer. Select one: a. layered description b. step change c. ballpark estimate d. project execution plan e. project logic diagram

Last Answer : a. layered description

Description : In the Haig-Soderberg diagram, the test data for ductile material falls near the ______________ a) Soderberg line b) Goodman Line c) Gerber line d) Haig line

Last Answer : c) Gerber line

Description : How does one convert Marijuana (Medical- read description please) to hash oil?

Last Answer : I really wish I had the right answer to this one, @Dog, I really wish I did. No one should ever be mindlessly denied relief from their suffering because of outdated or misguided views regarding marijuana. ... . I hope someone here has something else, Good luck, friend, you are doing the right thing.

Description : Do any Jellies have corned beef hash recipes to share?

Last Answer : answer:I am more inclined to make roast beef hash with leftover roast beef. But I think the principle is the same. Finely dice some onion (Note: you can also use green onions.) and saute in the ... Add the finely diced, cooked meat. Salt and pepper to taste. Heat through and serve. It's delicious.

Description : How do I make good hash browns?

Last Answer : Are you frying or baking?

Description : Is it a big deal for a teacher to have smoked hash when she was younger?

Last Answer : No. Just don’t tell your students. I know so many teachers. If everyone was asked if they did drugs when they were younger there would be a lot fewer teachers.

Description : How do i follow Hash tags on Twitter #?

Last Answer : By searching for the hash tag on Twitter search or by using a specialised Twitter client like TweetDeck that will allow you to add a custom feed for a particular search term (in this case a hash tag). Hope this helps.