Methods ii.) Define and implement a method that takes a string array as a parameter and returns the length of the shortest and the longest strings in the array i.) Write a method that take an integer array as a parameter and returns the sum of positive odd numbers and sum of positive even numbers. iii.) Implements the sequential search method that takes and array of integers and the item to be search as parameters and returns true if the item to be searched in the array, return false otherwise

Answers

Answer 1

Answer:

Explanation:

Well I am sorry I don't know the answer anyway.


Related Questions

If columns are labelled alphabetically, what will be the label for the cell in row 1, column 16,384?

Answers

AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA

Hope this helps!

1. In what ways a computer system is like a human being
la
2. In what ways is it not like a human being
3. What will happen if the computer is not invented​

Answers

a computer system can be considered similar to human beings in a way that it needed various parts in order to it to function it humans we need the or such as hurt brain veins exactra while computer need the CPU Ram etc

Add (11011)2 + (111)2​

Answers

Answer:

(11011)2+(111)2=(100010)2

hope it helps.

Answer:

(100010)square is the correct answer Hope it helps you have a great day keep smiling be happy stay safe ☺


Write a function solution that, given an integer N, returns the maximum possible
value obtained by inserting one '5' digit inside the decimal representation of integer N.
Examples:
1. Given N = 268, the function should return 5268.
2. Given N = 670, the function should return 6750.
3. Given N = 0, the function should return 50.
4. Given N = -999, the function should return - 5999.
Assume that:
• N is an integer within the range (-8,000..8,000).
In your solution, focus on correctness. The performance of your solution will not be the
focus of the assessment.
Copyright 2009-2021 by Codility Limited. All Rights Reserved. Unauthorized copying, publication or
disclosure prohibited

Answers

You did not specified the language, so I did my program in python.

Hope it helps!!!

Explain the complement of a number along with the complements of the binary and decimal number systems.why is the complement method important for a computer system?​

Answers

olha so olha la que bacana bonito

The complement method are the digital circuits, are the subtracting and the addition was the faster in the method.  The binary system was the based on the bits are the computer language.

What is computer?

Computer is the name for the electrical device. In 1822, Charles Babbage created the first computer. The work of input, processing, and output was completed by the computer. Hardware and software both run on a computer. The information is input into the computer, which subsequently generates results.

The term “binary” refers to the smallest and minimum two-digit number stored on a computer device. The smallest binary codes are zero (0) and one (1). The use of storing numbers easily. The computer only understands the binary language. The binary is converted into the number system as a human language. The complement method are the digital circuits the addition and the subtracting was the easily.

As a result, the complement method is the digital circuits are the subtracting to the binary system was the based on the bits are the computer language.

Learn more about on computer, here:

https://brainly.com/question/21080395

#SPJ2

Explain different types of networking-based attacks

Answers

Answer:

Network-based cyber attacks. ... These may be active attacks, wherein the hacker manipulates network activity in real-time; or passive attacks, wherein the attacker sees network activity but does not attempt to modify it

Which term describes the surrounding area of this image?

The surrounding area of this image is called
Surroundings
Foreground
Background

This area is also called a
Negative
Positive
Neutral

Answers

Answer: background/negative

Explanation: the background, is negative space. A solid piece of sculpture occupies space, and makes the space around it come to life.

where are all of your documents saved?

Answers

Answer:

create a my document folder so you can easily find it

Select the correct answer.

The idea that different aspects of health influence each other is known as _____ .

A.

Holistic health

B.

Happy health

C.

Integral health

D.

Perfect health

Answers

Answer:

A.  Holistic health

Explanation:

Holistic health refers to the method of caring the entire body. It includes physical, mental and emotional health of the individual. The overall health of an individual depends on the fitness of al these aspects of the body. The mind, body and the soul are considered to be interdependent and therefore the fitness of the body depends on the fitness of all of these parts.

Answer:

A

Explanation:

The definition of holistic is relating to the idea that things should be studied as a whole and not just as a sum of their parts. An example of holistic is health care that focuses on the health of the entire body and mind and not just parts of the body.

A company utilizes a specific design methodology in the software design process. They utilize concepts of encapsulation in design. Which design
methodology would they be using?
A
structured design
B.
modular design
C.
object-oriented design
rapid application development
D
E
use-case design

Answers

Answer:

C. object-oriented design

Explanation:

Answer:

c. object- oriented design.

Explanation:

i took the test.

Have you ever tried using such a camera?​

Answers

Answer: yeah i mean i use my canon camera

Explanation:

The objective of this task is to use Scapy to estimate the distance, in terms of number of routers, between your VM and a selected destination. This is basically what is implemented by the traceroute tool. In this task, we will write our own tool. The idea is quite straightforward: just send a packet (any type) to the destination, with its Time-To-Live (TTL) field set to 1 first. This packet will be dropped by the first router, which will send us an ICMP error message, telling us that the time-to-live has exceeded. That is how we
This project is based on SEED labs by Wenliang Du, Syracuse University.
get the IP address of the first router. We then increase our TTL field to 2, send out another packet, and get the IP address of the second router. We will repeat this procedure until our packet finally reach the destination. It should be noted that this experiment only gets an estimated result, because in theory, not all these packets take the same route (but in practice, they may within a short period of time). The code in the following shows one round in the procedure
a = IP()
a.dst '1.2.3.4
a.ttl = 3
b = ICMP()
send (a/b)
If you are an experienced Python programmer, you can write your tool to perform the entire procedure automatically. If you are new to Python programming, you can do it by manually changing the TTL field in each round, and record the IP address based on your observation from Wireshark. Either way is acceptable, as long as you get the result
Task: Sniffing and-then Spoofing
In this task, you will combine the sniffing and spoofing techniques to implement the following sniff- and-then-spoof program. You need two VMs on the same LAN. From VM A, you ping an IP X. This will generate an ICMP echo request packet. If X is alive, the ping program will receive an echo reply, and print out the response. Your sniff-and-then-spoof program runs on VM B, which monitors the LAN through packet sniffing. Whenever it sees an ICMP echo request, regardless of what the target IP address is, your program should immediately send out an echo reply using the packet spoofing technique. Therefore, regard-less of whether machine X is alive or not, the ping program will always receive a reply, indicating that X is alive. You need to use Scapy to do this task. In your report, you need to provide evidence to demonstrate that your technique works.

Answers

Answer:

kad ;ikajlfhdakjsfhadskfadhkjfahdjkfadk a jk h

Explanation:

Answer:

is this even a legit question

1. What characteristics are common among operating systems? List types of operating systems, and
examples of each. How does the device affect the functionality of an operating system?

Answers

The fundamental software applications running upon that hardware allow unauthorized to the interface so much with the equipment because then instructions may be sent and result obtained.

Some characteristics of OS are provided below:

Developers provide technology that could be suitable, mismatched, or otherwise completely at odds with several other OS categories throughout various versions of the same similar OS.Throughout two different versions, the OS's are often 32 as well as 64-Bit.

Type of OS:

Distributed OS.Time-sharing OS.Batch OS.

Learn more about the operating system here:

https://brainly.com/question/2126669

1. Which of the following is used to operate computers and execute tasks?
A. Software
C. Update
B. Application
D. Upgrade

Answers

I wish I could get the new app to play this app and it is great for the iPad version

Answer:

a.software

I hope it hel

To copy an item, you would:
O Highlight the item, right click, and select copy
O Press Ctrl + X
O Press Ctrl + Z
O Highlight text​

Answers

The first one (Highlight the item, right click, and select copy)
You would highlight the item, right click, and select copy to copy an item which is the first option!

Under foreign corrupt practices act, under what conditions is a bribe not unlawful explain and provide an example

Answers

Answer:

ex. telling your children if you clean up you get new toys

2. It is the art of creating computer graphics or images in art, print media, video games.
ins, televisions programs and commercials.

Answers

the answer is CGI :)



Combination of one or more columns used to identify particular rows in a relation is a (n)

Answers

Answer:

Combination of one or more columns used to identify particular rows in a relation is a key

A key is a combination of one or more columns that is used to identify particular rows in a relation.

KEYS in DBMS (database management system) is an attribute or set of attributes which helps you to identify a row in a relation(table). They allow you to find the relation between two tables.

Keys help you uniquely identify a row in a table by a combination of one or more columns in that table. Key is also helpful for finding unique record or row from the table.

Database key is also helpful for finding unique record or row from the table.

Find out more on DBMS at: https://brainly.in/question/1919695

A Zookeeper wants you to create a program to keep track of all of the animals in the zoo and people working for him. You are given 4 files: Mammals.txt, Birds.txt, Reptiles.txt, and Personnel.txt. Your task is to create an array of structs for each file to hold the entries. The first line of each file will be a number indicating how many entries are in the file.

Answers

Answer:

I don't know  you should figure that out good luck

Explanation:

good luck

When you use a rest area, you should:
A. Make sure your windows are closed tightly
B. Stop in a dark place where you can sleep
C. Walk around your car after resting
D. Sleep with the windows rolled down

Answers

The answer would be A.
The rest seem impractical.
The answer is A because you need to make sure you’re safe before resting

name 20 input device​

Answers

Answer:

I wish that is helpful

.........

Answer:

Some Input devices are;

KeyboardMouseLight penMicrophoneDocument scannerCharacter readerBar-Code readerTrack pointTouch padTrack ballDigital cameraMagnetic Ink Character readerMagnetic stripTouch screen

which among the following if absent, a computer is not complete.
A. mouse
B. DVD
C. user
D. projector

Answers

i think mouse is the correct answer

Answer:

user because all the other things the computer need

Which artistic technique uses multiple layers of small calligraphic or scribbled marks?
A. random hatching
B. crosshatching
C. shading
D. stippling
E. scrumbling

Answers

I would go with C.shading. It just makes the most sense

Answer:

E. scrumbling

Explanation:

6n^3+n-2 C++ code using Dev
i need only the code

Answers

Answer:

A = 6*pow(n,3) +n - 2

Explanation:

I'm not sure if this what you need but that's what I can help you with :)

what, if anything, is returned by the method call rearrange ("apple")?

Answers

Answer:

[tex] \boxed{E} \to \boxed{nothing \: is \: returned \: due \: to \: run \: tie \: error}[/tex]

____________ reference is used when you want to use the same calculation across multiple rows or columns.

Answers

Answer:

relative cell

Explanation:

So, if you want to repeat the same calculation across several columns or rows, you need to use relative cell references. For example, to multiply numbers in column A by 5, you enter this formula in B2: =A2*5. When copied from row 2 to row 3, the formula will change to =A3

Answer:

Relative

Explanation:

Relative  reference is used when you want to use the same calculation across multiple rows or columns.

Which image-editing tool can be used to help remove spots and other marks from an image?
A. brighten
B. stylize
C. healing brush
D. contrast
E. desaturate

Answers

C. Healing brush
That’s the answer

Answer:

c. healing brush

Explanation:

You work at a computer repair store. A customer wants you to install a new sound card into his computer to run his home theater system. Currently, the computer uses the sound card built into the motherboard. You need to upgrade the computer with a better sound card that installs into an expansion card slot. Your task is to complete the following:

a. Install the sound card with the optical output.
b. View the Details for each card to identify the card with an optical audio connector.
c. Boot into the BIOS and disable the onboard sound card.
d. Boot into Windows and verify that the new sound card is recognized and the onboard sound card does not appear in Device Manager.

Answers

Answer:

Explanation:

The following tasks are needed to complete the installation of the sound card so that it is fully usable.

a. and b. : First, you need to slot the sound card into a pci-e slot in the motherboard and connect the optical cable to the back of the sound card. You can look at the back of the card or the box to see if it has an optical audio connector slot.

c. Next you can boot into the Bios to disable the onboard sound card. Each motherboard is different but the usual way of entering the bios is pressing F12 when turning on the PC. Then navigate to the motherboard options tab/menu and turn off the onboard sound.

d. Finally, turn on the PC, log in and at the bottom left search bar type in Device Manager. Next navigate to sound, video and game controllers and make sure the new sound card is being detected.

Advantages of special purpose computer

Answers

Answer:

The main advantage of the special-purpose systems is the possibility to utilize a much higher fraction of available silicon to actually do calculations. ... All the rest of the calculation, such as the time integration of the orbits of particles, I/O, and diagnostics are handled by a general-purpose host computer..

Explanation:

What are the inputs and outputs of the app "Spotify"?

Answers

Hey the I/O for Spotify would be. for I or input keyboard and mouse.

and for O or output the sound files being sent from the server to the pc

Hope this helps.

-Toby  aka scav

Answer:

Input is for mics and other tools, output is your audio interface, speakers, headphones, so on. 3. At the top you'll find general system-wide settings, below you find dedicated settings for each open app. You'll need to have Spotify open to see it there.

Explanation:

Other Questions
Colligative PropertiesFollow the directions in the lab write up. Record the requested data below to submit for your lab. Only report the information asked for. Do NOT add rows to the data tables. "Be careful with your significant figures! Recall that you are to record all of the known digits and then one estimated digit for all analog devices. All digital devices, you record only the digits provided.**Data Table 1. Dialysis Tubing Results or Egg results (3pts)INSERT A PICTURE OF YOUR DIALYSIS TUBING ON THE SCALE after 1 hour. I need to be able to read your scale for credit. (3 pts)Time; Mass of Dialysis Tubing and Contents0 minutes; 51.4g30 minutes; 67.960 minutes; 82.0Questions (4pts)A. In your experiment, is the light corn syrup in the dialysis tubing (or outside the egg) hypertonic or hypotonic? Explain your reasoning. please help!The longest side of a triangular sail measures 13 ft and the base ofthe sale is 5ft. What is the height of the sail? Write a short persuasive paragraph for elementary school The organic compounds in living things are organized into groups: carbohydrates, lipids, proteins, and nucleic acids. Which two macromolecules play a role in storing and providing energy in an organism?. Which factor of production would the machines and building that a company uses to produce its products be considered? Is 0 an exponential function? Which of the following would be considered benefits of a hyperhydration protocol prior to intensive training? Select all that apply. A. Increased urination In a simple pendulum, the weight of the bob can bedivided into two components, one tangent to thebob's direction of motion and the other perpen-dicular to the bob's direction of motion. Which ofthese is the restoring force, and why? What kind of character is Della? Who was someone who believed in Kevin and how did they demonstrate it situation #4 It is known that BIG~FUN.4a. Angle N is congruent to whichangle? [Letter Only]4b. Using situation #4, what shouldgo in the place of the smiley face inthis proportion?NF ---- = ---- = ---- IB 4c. Using situation #4, what shouldgo in the place of the moon in thisproportion?NF ---- = ---- = ---- IB annotations/notice and note for tangerinei need 4 Find the distance between each pair of points.5)2AR6) (6,-3), (2,-2) Which sentence describes what Li Mei's friends were doing?Li Mei's friends wanted to congratulate her for winning the election. Theyspent hours discussing the best way to do it. Sometimes she enjoyed biggatherings, and other times she preferred quiet dinners. Everyone hadgood ideas, but it was hard to know which idea to choose. Finally theydecided to ask Li Mei what she would like to do.They were faltering out of fear ofdisappointing her.They were pondering how best tocelebrate her victory.They were relentlessly congratulatingher on her win.They were dictating which idea sheshould choose.X Maintenance and repair techniciansfind work most often in which kind ofsetting?A. They do scientific research for a company.B. They work for commercial businesses withequipment.C. They teach at universities. The process by which plants lose water by evaporation is called(a)Respiration(b)Photosynthesis(c)Transpiration(d)Absorption What is the exponential form of 3? if the expression 3x + 10 is equivalent to -2x what must the value of x be A partnerhip contract hould be drawn up at the end of each year, prior to ditributing net income to the partner What are the explicit equation and domain for an arithmetic sequence with a first term of 3 and a second term of 5?Group of answer choicesan = 3 + 2(n 1); all integers where n 0an = 3 + 6(n 1); all integers where n 1an = 3 + 6(n 1); all integers where n 0an = 3 + 2(n 1); all integers where n 1