Question

#1 To execute a correctly written program, you first need to _____.                 highlight the output...

#1

To execute a correctly written program, you first need to _____.

                highlight the output commands in the code

                print the code for reference

                compile it to machine language

                compile it from machine language into the programming language of choice

#2

Adding capabilities to working software is called the _____ phase.

                coding

                maintenance

                debugging

                brainstorming

#3

A rectangle in a flowchart represents which of the following?

                One or more I/Os

                The start of the program

                A decision

                One or more instructions

#4

The first step in any programming endeavor is to _____.

                define and understand the problem

                clear all variables

                build an algorithm

                debug the code

#5

It is acceptable for a flowchart to have many twists and turn (in a snake-like or zig-zag form).

                This is true as long as the flowchart is well formatted and correctly labeled.

                This is always true in every circumstance.

                This is false. The flowchart must show how the program flows top-down.

                This is false. The flowchart must show how the program flows bottom-up.

#6

An algorithm is a _______.

                series of finite steps to solve a problem

                programming language

                special kind of code

                problem that needs to be solved

#7

A syntax error will be caught during

                execution.

                output.

                data processing.

                compiling.

#8

In a case-sensitive programming language, "unitprice" and "unitPrice" are ______.

                the output and input of the same value

                different variables

                used interchangeably

                the same variables

#9

An ellipse with no outgoing arrows is placed at the ______ of a flowchart.

                Start or End.

                Start.

                After Variable Declarations

                End

#10

When you are writing a program in VisualBasic, you are _______.

                executing

                coding

                debugging

                interpreting

0 0
Add a comment Improve this question Transcribed image text
Answer #1


PLEASE FIND THE ANSWER(S) and EXPLANATION BELOW


This is a very big question.
I have solved all of them.
Please give me an upvote dear, Much Appreciated.!!

  1. OPTION C
    • EXPLANATION:-
    • To execute a correctly written program, you first need to Compile it to the machine Language.
    • A system can't understand the high level code.
    • We have to convert it to the binary code which is called MACHINE LANGUAGE.
  2. OPTION D
    • EXPLANATION:-
      • Adding capabilities to working software is called the Brain Storming phase.
      • In this phase, we can add more functionalities to the software that has already developed.
  3. OPTION D
    • EXPLANATION:-
      • A rectangle symbol in a flowchart will represent the One or more instructions.
      • We can denote I/Os in parallelogram.
      • Ellipses used as start/end of the program.
  4. OPTION A
    • EXPLANATION:-
      • The first step in any programming endeavor is to define and understand the problem.
      • If we understand the problem well, it is easy to solve.
  5. OPTION A
    • EXPLANATION:-
      • We can have several twists and turns as long as the flowchart is well formatted and correctly labelled.
      • There should be no ambiguous.
  6. OPTION A
    • EXPLANATION:-
      • An algorithm is a series of finite steps to solve a problem.
      • We can also say that it is step by step solution to a problem.
  7. OPTION
    • EXPLANATION:-
      • The Syntax errors will be caught during COMPILING.
      • The run time errors will be caught while Execution of the program.
      • Logical errors can't be seen. We have to debug it.
  8. OPTION B
    • EXPLANATION:-
      • If the language is case-sensitive then unitprice and unitPrice has capital P .
      • Then, these two will be considered as different variables.
  9. OPTION D
    • EXPLANATION:-
      • An ellipse with no outgoing arrows is placed at the END of a flowchart.
      • If it is an end, we will not have any outgoing flow.
  10. OPTION B
    • EXPLANATION:-
      • When we write the code, it is called CODING.
      • When we execute, it is called EXECUTING.

Add a comment
Know the answer?
Add Answer to:
#1 To execute a correctly written program, you first need to _____.                 highlight the output...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • guys can you please help me to to write a pseudo code for this program and...

    guys can you please help me to to write a pseudo code for this program and write the code of the program in visual studio in.cpp. compile the program and run and take screenshot of the output and upload it. please help is really appreciated. UTF-8"CPP Instruction SU2019 LA X 119SU-COSC-1436- C Get Homework Help With Che X Facebook -1.amazonaws.com/blackboard.learn.xythos.prod/584b1d8497c84/98796290? response-content-dis 100% School of Engineering and Technology COSC1436-LAB1 Note: in the instruction of the lab change "yourLastName" to your last...

  • 3 Programming Question (45 points) 3.1 Instructions You need to write the code by yourself. Your...

    3 Programming Question (45 points) 3.1 Instructions You need to write the code by yourself. Your implementation must use C/C++ and your code must run on the Linux machine general.asu.edu. Please refer to the programming guide (available under the Assignments folder on Blackboard) for using the general.asu.edu server, as well as compiling and running C/C++ code under Linux For this question, you need to provide a Makefile that compiles your program to an executable named a3 that runs on the...

  • I need help solving this assignment, you are given a full piece of code that does not run correctly. Some of the bugs ca...

    I need help solving this assignment, you are given a full piece of code that does not run correctly. Some of the bugs can be found at compile time, while others are found at run time. Access the UserMenu.cpp code file (in the zip file in Start Here) and use debugging practices and the debugger in Visual Studio to find each bug. Fix the bug and write a comment in the code giving a description of how you found the...

  • How do i write the pseudocode for this java code? First, write out pseudocode, and then create a program to help you by accomplishing the following tasks: :  Use command line interface to ask the use...

    How do i write the pseudocode for this java code? First, write out pseudocode, and then create a program to help you by accomplishing the following tasks: :  Use command line interface to ask the user to input the following. ○ How many apples are on hand ○ How many apples should be in stock ○ How many oranges are on hand ○ How many oranges should be in stock  Perform an operation to determine how many of...

  • Learn the example C program in Folio consisting of three files (a.c, a.h, main.c) and complete this exercise. You need t...

    Learn the example C program in Folio consisting of three files (a.c, a.h, main.c) and complete this exercise. You need to understand function, pointer and the selection sort algorithm. Write a C program that consists of three files mysort.h, mysort.c and myMain.c. Below is the mysort.h prototype #include <stdlib.h> #include <stdio.h> void generateNums(int *myarr, int len); void sortNums(int *myarr, int len); mysort.h must contain only the function declarations (prototypes) listed above generateNums function should generate len random integers in the...

  • The purpose of this assignment is to develop solutions that perform File IO and objects. Problem specifications are shown below with my changes in blue. 1. File Previewer Write a program that asks...

    The purpose of this assignment is to develop solutions that perform File IO and objects. Problem specifications are shown below with my changes in blue. 1. File Previewer Write a program that asks the user for the name of a text file. The program should display the first 10 lines of the file on the screen. If the file has fewer than 10 lines, the entire file should be displayed along with a message indicating the entire file has been...

  • PROGRAMMING IN C. 1) The first program will compute compounded interest. Suppose you invest $1000.00 at...

    PROGRAMMING IN C. 1) The first program will compute compounded interest. Suppose you invest $1000.00 at an interest rate of 2% per year. If the interest is computed at the end of each day, it is added to your account (i.e., the interest is compounded daily). Print what the account value will be at the end of each year for 20 years. Use data type double for money. For 365 days per year (ignore leap year), the daily interest rate...

  • Write a program in the Codio programming environment that allows you to play the game of...

    Write a program in the Codio programming environment that allows you to play the game of Rock / Paper / Scissors against the computer. Within the Codio starting project you will find starter code as well as tests to run at each stage. There are three stages to the program, as illustrated below. You must pass the tests at each stage before continuing in to the next stage.  We may rerun all tests within Codio before grading your program. Please see...

  • If you’re using Visual Studio Community 2015, as requested, the instructions below should be exact but...

    If you’re using Visual Studio Community 2015, as requested, the instructions below should be exact but minor discrepancies may require you to adjust. If you are attempting this assignment using another version of Visual Studio, you can expect differences in the look, feel, and/or step-by-step instructions below and you’ll have to determine the equivalent actions or operations for your version on your own. INTRODUCTION: In this assignment, you will develop some of the logic for, and then work with, the...

  • #include<stdio.h> #include<stdlib.h> #include <time.h> int main() { /* first you have to let the computer generate...

    #include<stdio.h> #include<stdlib.h> #include <time.h> int main() { /* first you have to let the computer generate a random number. Then it has to declare how many tries the user has for the game loop. we then need the player to enter their guess. After every guess we have to give an output of how many numbers they have in the right location and how many they have the right number. The player will keep guessing until their 10 tries are...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT