Answer:
A) A function can hold multiple return statements, but only one return statement executes in one function call
Explanation:
This is because each function can only return one value, whether it be an integer, String, or other object.
However, you can have a series of if-else statements, or case statements, to return a different value depending on information (within parameters, or variables.
Excellent. So, you can have multiple return statements, but the function will only end up executing one of these return statements and return a single value.
Hope this helps!
The statement "When there are multiple return statements but one return statement should execute the 1 function call" is true.
The following information should be considered:
This can be done as every function has only a return i.e. one value. It can be an integer, string, or any other thing. The function can't hold only 1 return statement.The function can't hold many return statements that execute one function call. The function can't have the utmost 2 return statements.Therefore, we can conclude that option A is correct.
Learn more about the function here: brainly.com/question/12431044
What is the primary difference, if any, between a web master and a web producer? While a web master maintains a company’s websites, the web producer maintains a company’s entire web-based system. While a web producer maintains a company’s websites, the web master maintains a company’s entire web-based system. While a web master maintains a company’s web presence, the web producer maintains all technology at a company. While a web producer maintains a company’s web presence, the web master maintains all technology at a company.
Answer:
While a web master maintains a company’s websites, the web producer maintains a company’s entire web-based system.
I'm assuming that's A
can you fart and burp at the same time?
Answer:
Yes you can
Explanation:
Although farting and burping at the same time is a very rare phenomenon, it’s very possible. When this happens at the same time it is usually called a Furp.
This occurrence usually happens when there’s a lot of intake of foods which have a large percentage of gas . These gases often need to be expelled through processes such as burping and farting.
After a chart has been inserted and formatted, is it possible to change the data range it refers to or to add new rows of data?
No, additional data cannot be included in a chart once it has been created; the user should delete the chart and create a new chart.
Yes, click the Select Data button in the Data group under the Design tab to extend or reduce the data range.
Yes, click the chart, select the additional rows or columns of data to add, and press Enter on the keyboard.
Yes, double-click the chart and select Properties from the list; in the Properties box, insert the new data range to include in the chart.
Answer: Yes, click the Select Data button in the Data group under the Design tab to extend or reduce the data range.
Explanation:
Excel allows one to be able to update the data in a graph because the designers knew that information needs to be updated sometimes.
This is why there is an option to use the Data button in the Data group which is under the Design tab to increase or decrease the data range that is to be used in the chart which means that a new row of data could even be added.
list any six area where computer used
Answer:
I. Banking and finance.
II. Hospitals.
III. Schools.
IV. Defense and military.
V. Office.
VI. e-commerce.
Explanation:
A computer can be defined as an electronic device that is capable of receiving of data in its raw form as input and processes these data into information that could be used by an end user.
The central processing unit (CPU) is typically considered to be the brain of a computer system. It is the system unit where all of the processing and logical control of a computer system takes place.
Additionally, the component of the central processing unit (CPU) that controls the overall operation of a computer is the control unit. It comprises circuitry that makes use of electrical signals to direct the operations of all parts of the computer system. Also, it instructs the input and output device (I/O devices) and the arithmetic logic unit on how to respond to informations sent to the processor.
The six (6) areas in which a computer can be used are;
I. Banking and finance.
II. Hospitals.
III. Schools.
IV. Defense and military.
V. Office.
VI. e-commerce.
While using a Web-based order form, an attacker enters an unusually large value in the Quantity field. The value she entered is so large that it exceeds the maximum value supported by the variable type used to store the quantity in the Web application. This causes the value of the quantity variable to wrap around to the minimum possible value, which is a negative number. As a result, the Web application processes the order as a return instead of a purchase, and the attacker's account is refunded a large sum of money. What type of attack has occurred in this scenario
Answer: integer overflow
Explanation:
The type of attack has occurred in this scenario is a integer overflow. An integer overflow occurs when there's an attempt by an arithmetic operation to create a numeric value which is outside the range which the given numbers are able to represent.
In this, the integer overflow occurs when the result of the integer operation cannot be able to fit in the allocated memory space which then brings about an unexpected result.
Software that tries to monitor and track the way you use your computer.
Explanation:
that's called a virus, and it can do much harm to your softwares
From a dictionary, the literal meaning of virus is "a piece of code which is capable of copying itself and typically has a detrimental effect, such as corrupting the system or destroying data." Therfore, the answer is clearly virus.
Hope this helps! Have a great day!
Which method deletes a footer from a document?
Double-click the footer region and delete all the content in the Footer.
Click on the Insert tab on the ribbon, click the Footer button, and select Remove Footer from the list.
Double-click the footer region; under the Design tab in the Header & Footer group, click on the Footer button and select Remove Footer from the list.
All the above are methods for deleting a footer from a document
A program in the cyberspace and intercept messages containing specific text A. Virus B. Sniffers C. Worm D. Bomb
Answer:
B. Sniffer
Explanation:
The type of program that is being discussed is called a Sniffer. This can either be a software or hardware that allows the user to intercept data flowing from a computer to the internet in real-time before it reaches its destination. The program can be very vague and intercept all the data coming and going to the target computer or it can be very specific and intercept only the data in which it was programmed to target (sniff out). Cyber Criminals use these programs/devices to steal valuable information that they know a user is going to send sooner or later over the internet.
[10 points] Write a program to compute the sum of digits in a number given by the user. You must use your own function to compute the sum of digits.
Answer:
I am going to write the program using BASIC PROGRAMMING
Explanation:
10 PROGRAM TO CALCULATE SUM OF DIGITS
20 INPUT B,H,T,G
30 LET Y = B+H+T+G
40 PRINT Y
DO THIS ON BASIC PROGRAMMING AND YOU HAVE YOUR PROGRAM
how computer network reduce the cost of computer hardware? explain with example.
Answer:
The biggest advantage of computer network is that the hardware components such as printers memory etc. can be shared by multiple computers. Hence it reduces the hardware cost of an organization
Answer:
One main method computer networking reduces the cost of computer hardware through the sharing of hardware component and resources including printers, faxes, memory space for data storage, processor, graphics capabilities, and internet access devices both locally, within a building and across sites
Computer network allows the sharing of a single resource mentioned above with several other computers, such that a single unit of each resource can be used by members of the same organization
Computer network also reduces the cost of additional space required where each computer is connected to its own components
Explanation:
Which vendor owns the software platform Fusion?
A.
Microsoft
B.
Apple
C.
SAP
D.
Oracle
Answer: D
Explanation:
What happens when you drag a file from the Documents folder on the hard drive to the Pictures folder on the hard drive?
Answer:
The file changes its location within your hard drive while the file itself remains unchanged
Explanation:
The file's location will change from C:\Users\username\Documents to
C:\Users\username\Pictures
(a) Rewrite the following using if else statement:
int x;
String s=(x%3=0)? “Divisible by 3" : "Not divisible by 3";
System.out.println(s);
Answer:
int x;
String s;
if ((x%3) == 0) {
s = "Divisible by 3";
} else {
s = "Not divisible by 3";
}
System.out.println(s);
Explanation:
A : B ? C generally translates to if (A) { B } else { C }.
Note the == to compare to 0. The single = in the original expression is a mistake.
what is the working principle of computer?
Answer:
input, process, output, storage
Design a sequential circuit with two flip-flops A and B and one input X. When X = 0, the state of the circuit remains the same. When X = 1, the circuit goes through the state transitions from 00 to 10 to 01 to 11, back to 00, and then repeats. Show the state transition by 7-segment display decoder using a. D-Flip Flop-Section B b. T-Flip Flop-Section A c. JK-Flip Flop-Section B d. RS-Flip Flop-Section A
Answer:
see your answer in picture with detail
please mark me brainlist
Explanation:
You want to add a new Product and Services entry to your client's QuickBooks Online company. The service is installation of a server that doesn't include the cost of the hardware. Here are some steps for getting the job done. 1. Select the Gear icon, select Products and Services, then select New 2. _____________________________________________ 3. In the Name field, type Server installation 4. In the Sales information field, type Server installation 5. Sale price/rate is $1250 6. In the Income Account drop-down, select Service/Fee Income 7. Select Save and close
Answer:
The correct answer is Option 3: "Select Service"
You have to select "Service" in the Second Step.
Only after that, you'll be able to name the Service in the following step.
Other options are invalid for a given question.
You have a website that accepts input from users for creating customer accounts. Input on the form is passed to a database server where the user account information is stored. An attacker is able to insert database commands in the input fields and have those commands execute on the server. Which type of attack has occurred
Answer:
SQL injection
Explanation:
SQL (Structured Query Language) Injection, are vulnerabilities associated security of SQL web interface through which an attacker can intrude into the backend of a database by modifying the queries a web program sends to the database to which it is connected
Examples of SQL injection include: Subverting application logic, which uses modified queries to alter the logic of an application. UNION attacks, which allow the retrieval of data from different tables within a database. Retrieving hidden data, which allows the attacker to have additional query results through modification of a SQL query.
who is Lady Augusta Ada Lovelace
Answer:
Lovelace was an English mathematician and writer, chiefly known for her work on Charles Babbage's proposed mechanical general-purpose computer, the Analytical Engine.
When media is used to communicate with a very large audience, it is referred to as media.
Answer:
mass media
Explanation:
Answer:Mass media communication
Explanation:
When I’m design view, Henrietta deleted a previous criterion, added a new column, and filtered patients’ age. Which best describes what Henrietta did?
Answer:
Explanation:
b
Which SCSI standard allows for the technique known as “hot swapping”? Ultra SCSI Original SCSI Serial SCSI Fast-Wide SCSI
Answer:
Serial SCSI
Explanation:
Hot swapping can be defined as a process which typically involves fitting or replacing CD-ROM drive, hard-disk drive, power supply or other peripheral devices while a computer system is powered on. Thus, it allows for the installation or removal of a peripheral device from a computer while power is still being supplied to the computer i.e without having to shutdown the computer.
Serial SCSI is a SCSI standard which allows for the technique known as “hot swapping” because it's a point to point connection that is designed to move data to and from computer storage serially.
A logistics company's vulnerability scan identifies the following vulnerabilities on Internet-facing devices in
the DMZ: SQL injection on an infrequently used web server that provides files to vendors SSL/TLS not used for a website that contains promotional information
The scan also shows the following vulnerabilities on internal resources: Microsoft Office Remote Code Execution on test server for a human resources system
TLS downgrade vulnerability on a server in a development network In order of risk, which of the following should be patched FIRST?
A. Microsoft Office Remote Code Execution
B. SQL injection
C. SSL/TLS not used
D. TLS downgrade
Answer:
A. Microsoft Office Remote Code Execution
Explanation:
From the given options, we have;
The web server having a SQL injection is infrequently use
The information on the website having SSL/TLS not used is promotional
The location of the server having a TLS downgrade is on a development network
The location of the Microsoft Office Remote Code Execution is on a human resource system test server
Therefore, given that the test server, is the deployment source of the main server, and that with a Remote Code Execution, RCE, cyber attack, the attacker is able to make commands work on other computers, the RCE attack on the test server is a potential access of an attack on the main servers, and should be patched first.
cises t Answer Questions 1. What is Open source Operating System? Write the advantages and disadvantages of Open source Operating System.
Answer:
Question 1. Open source operating system is an operating system that allow the public to view and edit the source codes on which the operating system is developed, and any user can have access to and edit the source code
Advantages of Open Source Operating System
a) Open-source operating system are usually free, or very low price
b) The open source operating system are constantly being evaluated globally by skilled users and developers that can get bugs fixed once they are detected
c) Open-source operating system can be customized
Disadvantages of Open Source Operating System
a) The free access to the source code increases the vulnerability of open-source operating system to attacks
b) Users are expected to have a certain level of technical proficiency to be able to use an open-source operating system
c) The open-source operating system comes without a customer support service
Explanation:
Is there any quantum computer in India?
yes, Qulabs was one of the first quantum computing startups in India.
What is malware? a type of virus that spreads through a network connection a type of virus that targets programs and files any program designed to do harm a type of software designed to track activity online
a malware is any program designed to do harm
Explanation:
a malware (malicious software) is any software intentionally designed to cause damage to a computer,server, client or computer network.
The router is physically located in a server room that requires an ID card to gain access. You've backed up the router configuration to a remote location in an encrypted file. You access the router configuration interface from your notebook computer by connecting it to the console port on the router. You've configured the management interface with a username of admin and a password of password. What should you do to increase the security of this device
Explanation:
the best thing to do is to create a personal password with a two time passcode for better security of the device
Can someone answer this, I'll mark u the brialintest
Answer:
d
Explanation:
Decimal equivalent of "D" = (D) 13 × 16^1
It is used to select specific menu options, drag and drop options and to draw something on screen.
Answer:
A mouse.
Explanation:
An input device can be defined as any device that is typically used for sending data to a computer system.
Generally, all of the output and input device of a computer are known as peripheral (external) devices and they provide data (informations) to the end users in various formats such as video, audio, texts, images etc.
Since input devices are peripheral (external) devices, they can be connected to the computer system wirelessly or through a wired-connection (cable).
Some examples of peripheral (external) devices are monitor, speakers, keyboard, printer, scanner, projector, mouse, etc.
A mouse is an input device that is designed and used to select specific menu options, drag and drop options and to draw something on screen.
What is the Sparklines group for in Excel? to place charts in individual cells working with hyperlinks selecting font styles or themes formatting the appearance of the cells or tables
Answer:
A sparkline is a tiny chart in an Excel worksheet cell that provides a visual representation of data.
Define Fiber optic cable
Explanation:
An optical fiber is a flexible, transparent fiber made by drawing glass or plastic to a diameter slightly thicker than that of a human hair.