If any mistake was made using this type of primitive programming, the entire program of punch cards had to be re punched again. The correct option is A.
What is punch card?A punch card is a card on which data is able to be recorded in the form of punched holes.
Whenever a mistake is done, the punched card is scrapped and made anew one for same programming.
Thus, if any mistake was made using this type of primitive programming. The entire program of punch cards had to be re punched again. The correct option is A.
Learn more about punch card.
https://brainly.com/question/27476988
#SPJ1
Python
write a program that reads a list of integers, and outputs whether the list contains all even numbers, odd numbers, or neither. the input begins with an integer indicating the number of integers that follow. if the input is: 5 2 4 6 8 10 then the output is: all even if the input is: 5 1 3 5 7 9 then the output is all odd if the input is: 5 1 2 3 4 5 then the output is: not even or odd your program must define and call the following three functions. def getuservalues(). getuservalues reads in, creates, and returns the list of integers. def islisteven(mylist). islisteven returns true if all integers in the list are even and false otherwise. def islistodd(mylist). islistodd returns true if all integers in the list are odd and false otherwise.
def is_list_even(my_list):
for i in my_list:
if(i%2 != 0):
return False
return True
def is_list_odd(my_list):
for i in my_list:
if(i%2 == 0):
return False
return True
def main():
n = int(input())
lst = []
for i in range(n):
lst.append(int(input()))
if(is_list_even(lst)):
print('all even')
elif(is_list_odd(lst)):
print('all odd')
else:
print('not even or odd')
if __name__ == '__main__':
main()
Distinguishing elements of your data visualizations makes the content easier to see. This can help make them more accessible for audience members with visual impairments. What is a method data analysts use to distinguish elements
It is a method data analysts use to distinguish elements data visualizations may be a powerful manner to talk about complicated statistics units by presenting a visible illustration of statistics via charts.
What is Data visualizations,?Data visualizations, which include statistical charts, diagrams, and maps, are an powerful manner to represent, analyze, and discover statistics in addition to discovering and talking insights.
The number one techniques for statistical evaluation are qualitative statistics evaluation strategies and quantitative statistics evaluation strategies. These statistics evaluation strategies may be used independently or in aggregate with the alternative to assist enterprise leaders and decision-makers collect enterprise insights from exclusive statistics types.
Read more about the visualizations :
https://brainly.com/question/1822923
#SPJ1
you are running out of time and budget for your game development project you had great ideas for making a randomized highly customizable game experience with high levels of emerg but now you can only fit in the features of one of those qualities highly immersive highly randomize or highly customized briefly describe your imaginary games style then explain which of these three qualities would be best to implement in that type of game on a limited budget
My games style in terms of their qualities will be made up of:
Movement from Attack to Defense.Set up Defense.Movement from Defense to Attack. Set Pieces. What is a game style?Game style is known to be a term that is made or used by coaches, sports scientists, etc., to show the patterns of play in a scenario of team sports.
Therefore, My games style in terms of their qualities will be made up of:
Movement from Attack to Defense.Set up Defense.Movement from Defense to Attack. Set Pieces.Learn more about Games from
https://brainly.com/question/5144258
#SPJ1
how to transfer crypto from coinbase to coinbase wallet
Answer:
Open Coinbase Wallet on your mobile device.
Tap to go to your Settings.
Tap Buy or Transfer.
Select the supported crypto.
Enter the amount you want to transfer then tap Continue.
Follow the remaining steps to complete your transfer.
A website implements a sequential menu (as shown in the diagram) that indicates the relative page that the visitor is on in the website. Which planning phase covers this aspect?
A. Wireframe
B. Browsing functionality
C. Content
D. Page description diagrams
Answer:
Letter B. Browsing Functionality
Explanation: I just did this question
Question 4 of 10
which phrase best describes algorithmic bias?
o a. when systematic errors in a program create unfair outcomes
b. when companies avoid using algorithms in their software
c. when programmers purposely create biased software
d. when people insist on doing things without technology
The phrase that best describes algorithmic bias is that when systematic errors in a program create unfair outcomes.
What is Algorithmic bias?This is known to be a term that tells about the systematic and repeatable errors as seen in a computer system that forms "unfair or bad" outcomes.
Therefore, we can say that the phrase that best describes algorithmic bias is that when systematic errors in a program create unfair outcomes.
Learn more about algorithmic bias from
https://brainly.com/question/22236556
#SPJ1
1. Sunday Times wants an analysis of the demographic characteristics of its readers. The
Marketing department has collected reader survey records containing the age, gender, marital
status, and annual income of readers. Design an application (Flowchart) that accepts reader
data and, when data entry is complete, produces a count of readers by age groups as follows:
under 20, 20–29, 30–39, 40–49, and 50 and older. Hint: Refer to the program discussed in
class Figure 6-15
2. Create the logic (Flowchart) for a program that calculates and displays the amount of money
you would have if you invested R10000 at 4 percent simple interest for one year. Create a
separate method to do the calculation and return the result to be displayed.
The main program (Flowchart) should prompt the user for the amount of money and passes it
to the interest-calculating method.
Answer:
GIRL
Explanation:
DALAGANG FILIPINA
14 YEARS OLD
NEED FRIENDS
Given a sorted list of integers, output the middle integer. assume the number of integers is always odd.
ex: if the input is:
2 3 4 8 11 -1
(a negative indicates the end), the output is:
4
the maximum number of inputs for any test case should not exceed 9. if exceeded, output "too many inputs".
hint: first read the data into a vector. then, based on the number of items, find the middle item.
#include
#include // must include vector library to use vectors
using namespace std;
int main() {
/* type your code here. */
return 0;
}
integer userInput
integer i
integer mid
integer array(20) number
userInput = 1
for i = 0; userInput >= 0; i = i + 1
if number[i] > -1
userInput = Get next input
number[i] = userInput
i = i - 1
mid = i / 2
if i > 9
Put "Too many inputs" to output
elseif i % 2 == 0
Put number[mid - 1] to output
else
Put number[mid] to output
Type the correct answer in the box spell all words correctly.
karl has designed an interactive stories website for kids. he has implemented an alphabetical format for browsing through the stories. which
structure will he use for easy navigation?
kart implements a
structure for users to advance through the chapters.
reset
nexus
Kart should implement a main navigation structure for users to advance through the chapters.
The types of navigation.
In Computer technology, there are three main types of navigation used on websites and these include the following:
Structural navigationUtility navigationAssociative navigationIn this scenario, Kart should implement a main navigation structure for users to advance through the chapters on this interactive stories website for kids.
Read more on website here: https://brainly.com/question/26324021
#SPJ1
What is a benefit of being a member of a professional organization?
Answer: A benifit of being a member of a proffesional organzation is you can refresh your knowledge by acquiring new skills through workshops, seminars, and conferences.
Explanation:
What is the newest code language?
Answer:
Python 3
Explanation:
The language's latest iteration, Python 3.9, was released on October 5, 2020. It includes even more new features such as relaxed grammar restrictions, flexible function and variable annotations, and new string methods to remove prefixes and suffixes.
New Programming Language 1: Python 3
The language's latest iteration, Python 3.9, was released on October 5, 2020. It includes even more new features such as relaxed grammar restrictions, flexible function and variable annotations, and new string methods to remove prefixes and suffixes.
Zenith Computers is a software development company. It has received a random email claiming that there will be an attempt to hack and extract sensitive financial data of the company before the year end. The company has contacted you, a network analyst, to verify if such claims are indeed true. You have decided to set up a trap for the hackers by putting up a system containing false financial data. Which of the following will you use in this scenario?
A. Metasploit
B. Honeypot
C. Nessus
D. Nmap
Answer:
B. Honeypot
Explanation:
Honepots, like the name suggest, are sort of baits for the hackers. Honeypot pretty much decoys made to mimic the actual company computers. Hackers fall for it and think they hit jackpot. Once hackers try to extract info from the honeypot, the security analyst can either track the hackers to report to authorities or this is a way to distract hackers from the real protected data.
which is the following career pathway for human services
The career pathway for human services includes:
Consumer servicesCounseling and mental health services, etc.What are career pathways?This is known to be the likely career choices that one can make based on a specific field.
Note that the career pathways within the human services cluster are:
Consumer services.Counseling and mental health services.Early childhood development and services.Family and community services.Personal care services.Learn more about career pathway from
https://brainly.com/question/9719007
#SPJ1
Write a script that creates a user-defined database role named paymententry in the ap database. give update permission to the new role for the vendors and invoices table, update and insert permission for the invoicelineitems table, and select permission for all user tables.
Answer:
USE AP CREATE ROLE PaymentEntry
GRANT UPDATE, DELETE ON Invoices TO PaymentEntry
GRANT UPDATE, INSERT ON InvoiceLineItems TO PaymentEntry
EXEC sp_AddRoleMember db_datareader, PaymentEntry
Marc is creating a physical design, what aspect of the design deals with the interaction between a user and data?
a. data design
b. user interface design
c. user data design
d. process design
Answer:
C. User data design
Explanation:
Interaction design can be understood in simple (but not simplified) terms: it is the design of the interaction between users and products. Most often when people talk about interaction design, the products tend to be software products like apps or websites.
You work as the IT administrator for a growing corporate network. You are in the process of creating an iSCSI storage area network (SAN) on the CorpisCSI server. The server is currently connected to the network using an Ethernet cable. To increase the server's performance, yoru have decided to replace the existing Ethernet connection with a fiber optic connection. In this lab, your task is to complete the following: . Connect the CorpisCSI server to the switch using the appropriate fiber optic cable. . Examine the port types on the switch. Examine the server's fiber optic NIC. . When connecting the server, use the color coding on the end of the fiber optic cable to identify the Tx and Rx connection ends Connector A (red) Tx. - Connector B (black) is Rx. . Remove the server's previous Ethernet network connection and place the Ethernet cable on the Shelf. . Verify that the server is connected to the network through the fiber optic connection. C When connecting fiber optic cables, the transmit (T) port on one device is connected to the receive (Rx) port on the other device. The fiber cables in this lab have already had their Rx and Tx connectors switched as necessary. You can view component information in the Details window on the Specification tab
The steps in the above scenario are:
Connect to an iSCSI target:Then Create a volume:How do you Connect to an iSCSI target?This can be done by:
Select CORPSERVER from Hyper-V Manager, Make sure to Maximize the window to view all virtual machines.Then Right-click CorpFiles16 and select Connect.Use the Server Manager on CorpFiles16 to select Tools > iSCSI Initiator.Via the Target field, enter the server name of the target server.Then click.Select Quick Connect and then Done and then OK.Note that the steps in the above scenario are:
Connect to an iSCSI target:Then Create a volume:Learn more about IT admin from
https://brainly.com/question/26096799
#SPJ2
Describe the ideal environment for a computer to work properly
The ideal environment for a computer to work properly is a cool place to avoid heating of the computer, good air circulation in the place so that the computer's fan can get cool air.
What is a computer?Computer is an electronic device, that perform various of tasks easily that take humans much time.
It is a machine on which we can work and contains a screen and operators, like keyboard and mouse.
Thus, the ideal environment for a computer to work properly is a cool place to avoid heating of the computer, good air circulation in the place so that the computer's fan can get cool air.
Learn more about computer
https://brainly.com/question/21080395
#SPJ1
1. What is a blog?Explain its use.
2. List any 5 websites that provide blog service.
3. Difference between web page and website.
4. What do you mean by publishing a post?
Answer:
A blog is a type of website, usually maintained by an individual with regular entries of commentary, descriptions of events, or other material such as graphics or video. Entries are commonly displayed in reverse-chronological order.WordPress.com – Best for Free Blogs. ...WordPress.org – Best for Self-Hosted Blogs. ...Web.com – Best for Small Business Owners. ...Wix.com – Best for Small Websites. ...Joomla.com. ...The webpage is a single document on the web using a unique URL, while a website is a collection of multiple webpages in which information on a related topic or another subject is linked together under the same domain address. Learn more about what is the difference between a website and webpage from the table below.to submit (content) online, as to a message board or blog: I published a comment on her blog post with examples from my own life. They publish a new webcomic once a month. to announce formally or officially; proclaim; promulgate.What are some of the options available when previewing a worksheet before printing? Check all that apply.
applying styles
adjusting margins
inserting images
zooming in and out
navigating through pages
adding functions
Answer:
applying style to the worksheet before printing
Every javafx main class __________. group of answer choices implements javafx.application.applicatio extends javafx.application.application overrides start(scene s) method overrides start() method
Two concepts central to JavaFX are a stage and a scene.
different between simplex and duplex data transmission mode
In order to receive financial aid at his vocational school, mario must fill out the fafsa. the fafsa is a form that must be completed to determine . in order to complete a fafsa, you must submit . the fafsa can help students obtain .
In order to receive financial aid at his vocational school, Mario must fill:
1. Financial and eligibility form.
2. Financial information.
3. Scholarships and grants.
What is financial aid ?
This is known to be funds or support through monetary terms that are give to student or for research purpose.
Therefore, based on the above, In order to receive financial aid at his vocational school, Mario must fill:
1. Financial and eligibility form.
2. Financial information.
3. Scholarships and grants are all correct.
Learn more about financial aid from
https://brainly.com/question/14173570
#SPJ4
Answer:
1. ✔ financial aid eligibility
2. ✔ financial information
3. ✔ scholarships and grants
Explanation:
16
Select the correct answer.
St. Charles school's music community is organizing a fundraiser. They want to create a simple but attractive website. However, they don't have
too much time to invest in creating the website. Which web builder can the music community use to create a good website in less time?
OA text editor
OB.
WYSIWYG web builder
OC.
template builder
O D.
dynamic web builder
OE.
static web builder
Reset
Next
WYSIWYG web builder is web builder can the music community use to create a good website in less time. As it allows the person to easily advertise and sell music.
What website builder do artists use?The most usable website builders for artists
Squarespace. Overall, For artists on a budget, the finest website builderWix is the finest website builder for artists. Shopify is The greatest website builder for artists that want complete control over their online presence.Voog is the greatest website builder for musicians that wish to sell to followers.Thus, option B is correct.
For more information about website builder, click here:
https://brainly.com/question/15104973
#SPJ1
Pin number was changed and i let the culprit go without a kiss kiss how do i get it back
Answer:
I cant comprehend to even understand this
Explanation:
Question #1
dropdown
choose the term described.
a variable in a program that represents a class and is created by an assignment statement
function created within a class
definition
constructor
method
instance
Answer:
instance - a variable in a program that represents a class and is created by an assignment statement
method - function created within a class definition
Explanation:
A class is made up of the members fields and methods.
Fields are variables in the class and methods are functions in the class.
An instance is a copy of the class also called an object
The ___ event is used to get things started and to set up vital initial information?
Answer:
Start-up
Explanation:
The start-up event is used to get things started and to set up vital initial information?
In what year was the earliest documented use of the word computer?.
Answer:
1613
Explanation:
referring to a person who carried out calculations, or computations, and the word continued to be used in that sense until the middle of the 20th century. This means that at first, "a computer" was a "person".
Which type of computer application is apple keynote? a. word processor b. spreadsheet c. presentation d. database e. multimedia
The type of computer application which apple keynote is, is: c. presentation.
What is a presentation application?A presentation application can be defined as a type of computer application which is designed and developed to avail its end users an ability to create various slides that comprises both textual and multimedia information, which are typically used during a presentation.
This ultimately implies that, apple keynote is an example of a presentation application which is used on computers.
Read more on presentation application here: https://brainly.com/question/26404012
#SPJ4
Help me with this question asap please
Answer:
Parameter
Explanation:
The function's scope is truly local. The () brackets at the end execute the function -- the enclosing brackets are to disambiguate what is being executed.
software that requires a monthly subscription fee is called
Answer:
Software as a service
Explanation:
You may hear this as (SaaS) for short.