Answer:
mean
mode
Explanation:
edg 2020
Answer:
MEAN
mode
Explanation:
20 pts, please write in JAVA. need this ASAP
In the Lesson Slides for this activity, we developed a method findChar for figuring out if a character was in a String.
The implementation was:
public boolean findChar(String string, String key)
{
for(int index = 0; index < string.length(); index++)
{
String character = string.substring(index,index+1);
if(character.equals(key))
{
return true;
}
}
return false;
}
However, there is a much more efficient and simple algorithm that we can use to determine if a character is in a String. Using the method signature public boolean findChar(String string, String key), figure out a more efficient method with a lower exection count.
Hint: We’ve learned a couple of methods that can tell us what index a character is at - can we use those to determine if the character is in a String?
public class JavaApplication78 {
public boolean findChar(String string, String key){
if (string.contains(key)){
return true;
}
return false;
}
public static void main(String[] args) {
JavaApplication78 java = new JavaApplication78();
System.out.println(java.findChar("hello", "h"));
}
}
First I created the findChar method using the contains method. It checks to see if a certain sequence of characters is in another string. We returned the result. In our main method, we had to create a new instance of our main class so we could call our findChar method.
if you make homemade knitted garments and you sell them to individuals online, what e-commerce are you participating in?
is it B2B or B2C or C2C or SaaS
The Answer Of This Question Is C2C.
Using complete sentences post a detailed response to the following.
What are the advantages and disadvantages of top-down and bottom-up programming? How would you decide which one to use? Do you approach problems in your real life from a bottom-up or top-down approach?
Answer:
some advantages of top down is that you can start off from what you know and figure out what you need to complete it, advantages to bottom up is that you can make something new . if you are starting something from scratch and you dont know what the end goal might be you would use bottom up but if you already have an idea or the final product of what you want you would go the top down approach.
Explanation: just saying you shouldnt just copy and paste my response but rather pick out what you want to say and use this to complete what ever your working on. hope i helped :)
Answer:
the guy on top of me is super right follow him
Explanation:
7-9 validation rule in a field will
Answer:
Validation rule in a field will restrict the input from user into a field or table
Explanation:
Validation is used in database to ensure that the correct data type is entered in the fields. When validation is applied to a field, a message is displayed to the user if he enters the data of wrong datatype.
Hence,
Validation rule in a field will restrict the input from user into a field or table
identify 5 products/services needed by the people in our current situation.
Answers with Explanations:
5 Products/Services Needed by People These Days.
1. Face mask/Surgical mask - The use of face mask is considered a common sense. Most countries mandate people to wear this every time they go out.
2. Food Delivery service - To prevent contracting corona virus, most people prefer to have their food delivered than to dine out. This increases the demand for the food delivery service.
3. Alcohol - It has become an important habit recently to disinfect hands and other things. This is also being advertised on TV, thus many people carry it along with them.
4. Infrared Forehead Thermometer - Many establishments use this in order to quickly check the temperature of people entering.
5. Internet service - The increase use of this service is due to online learning and remote-working situations.
We all need different product and services. In this pandemic time, the products/services needed by the people are;
Face mask or Surgical mask
All round Food Delivery service
Humanitarian gestures by people or firms and also Good Tv programs that are educative and one can watch with kids them.
Infrared Forehead Thermometer
Internet service
A product is known to be a tangible goods that one buys or acquisition, consume, etc. Service is known as an intangible item.
A key reason for any new development is to give the best or new value to the customer and in this present time. Helping those who have lost their jobs, having mask mask, etc., readily available will go a long way to help.
Learn more about Products from
https://brainly.com/question/10873737
Which of the following internet protocols is used to request and send pages and files on the World Wide Web
it is . org Explanation:
A user can view
and
in the Reading pane.
Answer:
sorry,but I can't understand your question.
Answer:
email messaging and attachments
Explanation:
2023 edg 100%
How do I charge my ACDC Halo bolt?
Answer:
To recharge your HALO Bolt, using the provided AC wall adapter cable, plug the AC adapter tip into the charger's charge input DC 20V/0.6A port. Next, connect the AC adapter into a wall outlet. Your HALO Bolt will automatically begin charging. Charge your HALO Bolt for a full eight hours.
Explanation:
ANSWER THIS CORRECTLY TO GET BRAINLY
What is a row of data in a database called?
a
Field
b
File
c
Record
d
Title
Write pseudocode for a function that translates a telephone number with letters in it (such as 1-800-FLOWERS) into the actual phone number. Use the standard letters on a phone pad.
Answer:
Explanation:
Function telToNumbers with one parameter of a String input for the telephoneNumber
String var newTelephoneNum;
for loop through telephoneNumber {
Char var currentChar = current Character in the loop;
currentChar to lower Case;
Switch statement (currentChar) {
case "a" or "b" or "c" : newTelephoneNum += "2"; break;
case "d" or "e" or "f" : newTelephoneNum += "3"; break;
case "g" or "h" or "i" : newTelephoneNum += "4"; break;
case "j" or "k" or "l" : newTelephoneNum += "5"; break;
case "m" or "n" or "o" : newTelephoneNum += "6"; break;
case "p" or "q" or "r" or "s" : newTelephoneNum += "7"; break;
case "t" or "u" or "v" : newTelephoneNum += "8"; break;
case "w" or "x" or "y" or "z" : newTelephoneNum += "9"; break;
default : newTelephoneNum += currentChar; break;
}
}
print newTelephoneNum;
Consider a call center with three agents that receives 25 calls/hr during regular hours. We observe 3.5 people on hold on average. Also, calls take an average of 6 minutes. What is the inter-arrival time, the utilization of the system, and the queue and system waiting times during normal hours?
Answer:
2.4 minutes ; 0.8333 ; 8.4 minutes ; 14.4 minutes
Explanation:
Given that:
Number of agents (n) = 3
Mean calls per hour (λ) = 25calls/hr
Average Number of calls in queue (Q) =3.5
Service time (E) = 6 minutes ;
Hence, mean service rate (μ) = 60/ 6 = 10 calls/hr
A.) The inter-arrival time :
1 /λ = 1 / 25 = 0.04 hours = (0.04 * 60) = 2.4 mins
The utilization of the system :
Mean calls per hour /(number of agents * mean service rate)
λ / (n * μ) = 25/ (3 * 10)
= 25 / 30
= 0.8333
Queue waiting time :
Q / λ
= 3. 5 * 0.04
= 0.14 hour = (0.14 * 60) = 8.4 minutes
System waiting time :
Queue waiting time + service time
8.4 minutes + 6 minutes = 14.4 minutes
Does anyone know how to fix this error of " the media could not be loaded, either because the server or network failed or because the format is not supported " in the playback of web videos ?
Answer:
Restart your WiFi!
Explanation:
It happened to me I did that and it fixed it
A database has one physical schema and one conceptual (logical) schema but many external schemas (views).
a) True
b) False
Answer:
true
Explanation:
A database has one physical schema and one conceptual (logical) schema but many external schemas (views): a. True.
A database refers to a structured (organized) collection of data that are stored on a computer system and usually accessed in various ways such as electronically.
In database management, a database schema can be defined as a structure which is typically used to represent the logical design of the database. Thus, it denotes how data are stored (organized) and the relationships existing in a database management system (DBMS).
Generally, there are two (2) main types of a database schema and these include;
Physical database schema: it is only one per database.Conceptual (logical) schema: it is only one per database.However, there are multiple number of external schemas (views) for each database because it is what an end user is interested in.
Read more on database here: https://brainly.com/question/3259292
what is the first things u do upon seeing this sheet?
Answer:
umm ok
Explanation:
plz mark brainlyest
jiz
Active
2
3
- 2(7 - 15)
What is the value of
4
Answer: I think it is c
Explanation: hope this helps
Which logic correctly describes an algorithm to find the smallest of the three numbers a, b, and c and store the smallest number in small?
A.
If a is less than b, then set a to small, else set b to small, else set c to small.
B.
If a is less than b, then set small to a, else set small to b.
If c is less than small, then set small to c.
C.
If a is less than b, then set small to b, else set small to c.
If c is less than small, then set small to a.
D.
If a is less than small, then set small to a.
If b is less than small, then set small to b.
If c is less than small, then set small to c.
Answer:
D
Explanation:
Answer:
B. If a is less than b, then set small to a, else set small to b.
If c is less than small, then set small to
Explanation:
Plato correct!!
When would you insert a merge field?
A. when updating the source document
B. when choosing which information you want to enter into a letter
C. when choosing which information you want to insert in a merged letter
D. when creating a document
Answer:
Once you have a data source connected to your document, adding merge fields is a way to personalize a document with information from the data source.
How can you enter Task Manager in Windows? Select 3 options. right-click the taskbar and choose Start Task Manager right-click the taskbar and choose Manage Tasks press Ctrl + Shift + Tab press Ctrl+Alt+Delete and then click Task Manager press Ctrl + Alt + Esc
Answer:
Press [Ctrl]+[Shift]+[Esc] and Windows Task Manager will launch instantly
Explanation:
Answer:
1. Press Ctrl+Alt+Delete and then click Task Manager
2. right-click the taskbar and choose Start Task Manager
3. Press Ctrl+Alt+Esc
Explanation:
Took the test. If you are on a windows computer you can also test the answers to see what works and what does not.
how has the Internet of Things affected business
Answer:
Business equipment can be continually adjusted based on analysis of data
Explanation:
A P E X
If a network card is configured to "obtain IP automatically," from where does it obtain its IP address? (What is the name of the service that assigns IP addresses?)
Answer:
It obtains the up adress from a service called DHCP. The DHCP server is usually located on a Router for home networks.
The two roots of a quadratic equation, for example 2 + + = 0, can be obtained using the following formula: Two Roots: 1 = − + √ 2−4 2 and 2 = − − √ 2−4 2 2 − 4 is called the discriminant of the quadratic equation. If it is positive, the equation has two real roots. If it is zero, the equation has one root. If it is negative, the equation has no real roots. One Root: 1 = − 2 Write a program that prompts the user to enter values for a, b, and c and displays the result based on the discriminant. If the discriminant is positive, display two roots. If the discriminant is 0, display one root. Otherwise, display The equation has no real roots.
Here are some sample runs:
Enter a, b, c: 1.0, 3, 1
The roots are -0.381966 and -2.61803
Enter a, b, c: 1, 2.0, 1
The root is -1.0
Enter a, b, c: 1, 2, 3
The equation has no real roots
lst = input("Enter a,b,c: ").split(",")
a = float(lst[0])
b = float(lst[1])
c = float(lst[2])
root1 = (-b + ((b**2-(4*a*c))**0.5))/(2*a)
root2 = (-b - ((b**2-(4*a*c))**0.5))/(2*a)
dis = b**2 - (4*a*c)
if dis > 0:
print("The roots are {} and {}".format(root1, root2))
elif dis < 0:
print("The equation has no real roots")
else:
print("The root is {}".format(root1))
I wrote my code in python 3.8. I hope this helps!
Please help!! I’ll mark you brainly
Answer:
1. raster and vector
2. Resolution
3. Color depth
4. Forms, Shapes
5. Tone
6. Balance
7. White space
8. Aspect ratio
9. Focus
10. cropping
Hope this helped :)
Write a program in Python to sum to numbers:
Urgently needed, please.
num1 = float(input("Enter the first number: "))
num2 = float(input("Enter the second number: "))
print("{} + {} = {}".format(num1,num2,num1+num2))
Variables num1 and num2 prompt the user for a number. The print function then displays the answer and equation.
Help me! I’ll mark you brainly and give extra points!
Answer:
52 5,
Explanation:
How did Aryan religion contribute to class differences in India?
Help me! I’ll mark you brainly ! Please help me I need this now
Explanation: For number 3 I would say shade and darkness.
We study computer____to become familiar with how circuits and signals collaborate to create working computer systems.
A) architecture
B) organization
C) layers
D) systems of linear equations
Answer:
Option B (Organization) would be the correct answer.
Explanation:
It communicates about either the simple interface provided to either the compiler as well as the OS by the digital hardware to accommodate customers' requirements. Computer company struggles through computer program hardware components, including input machines, processing elements (CPU), storage, as well as main memory systems.The other options offered aren't relevant to the scenario presented. So, the solution here is just the right one.
The phrase “I suppose” helps Roosevelt create which kind of tone?
suspicious
negative
proper
humble
The phrase “I suppose” helps Roosevelt create a humble kind of tone
for better understanding, lets understand what a humble tone means
Humble kind of tone is simply a kind of tone that is said to be not proud or arrogant, modest , usually the individual feels insignificance or inferiorityExample: In the presence of so many game developers, I felt very humble. It also mean for someone to be respectful e.g. In my humble opinion your idea was wrongFrom the above, we can therefore say that the answer The phrase “I suppose” helps Roosevelt create a humble kind of tone is correct
learn more about humble tone from:
https://brainly.com/question/16589885
Answer:
it's humble
Explanation:
Write an If/else statement to check whether host is online. If it is online, then print system is online otherwise print system is unreachable.
Answer:
from socket import *
hostname = input('Enter the host to be scanned: ')
ip_add = gethostbyname(hostname)
connections = [ ]
for i in range(133, 136):
s = socket(AF_INET, SOCK_STREAM)
conn = s.connect_ex((ip_add, i))
print(conn)
connections.append(conn)
if 0 in connections:
print ('Host is online')
s.close()
else:
print ('system is unreachable')
Explanation:
The python source code above scans for all the available range of ports in the provided hostname, if any port is available, the host is online else the program print the error message "system is unreachable.
As a user of media what will you say to those people who are under of misleading use media
Answer:
search more sa google