I would like to be friends! I’m down!
c language.
I have to display the highest average amongst 10 students + if there are 2+ students who both have the max average I need to display them both. How can I do that?
Answer:
The program in C is as follows:
#include <stdio.h>
int main(){
int scores[10];
for(int i = 0; i<10;i++){
scanf("%d", &scores[i]); }
int max = scores[0];
for(int i = 0; i<10;i++){
if(max<scores[i]){
max = scores[i]; } }
for(int i = 0; i<10;i++){
if(max==scores[i]){
printf("%d ", scores[i]);
} }
return 0;
}
Explanation:
This declares the average scores as an integer array
int scores[10];
The following iteration gets the average score for each student
for(int i = 0; i<10;i++){
scanf("%d", &scores[i]); }
This initializes the maximum to the first index
int max = scores[0];
This iterates through the 10 elements of the array
for(int i = 0; i<10;i++){
This makes comparison to get the maximum
if(max<scores[i]){
max = scores[i]; } }
This iterates through the 10 elements of the array
for(int i = 0; i<10;i++){
This prints all maximum in the array
if(max==scores[i]){
printf("%d ", scores[i]);
} }
return 0;
}
Help helppppppppppppp
Draw a chart showing the crossing between red and white flowered pea plants till F2 generation. Find out the genotypic and phenotypic ratio of F2 generation. When the mating of black and white rats takes place, all the offspring produced in first generation are black. Why there are no white rats?
Answer:
part 1
F1 cross -
RR * rr
Rr, Rr, Rr, Rr
F2 Cross
Rr * Rr
RR, Rr, Rr, rr
Part 2
Black is dominant over white
Explanation:
Let the allele for red color trait be R and white color trait be r
Red is dominant over white
Genotype of true breeding parents
Red - RR
white - rr
F1 cross -
RR * rr
Rr, Rr, Rr, Rr
All the offspring are red and of genotype Rr
F2 Cross
Rr * Rr
RR, Rr, Rr, rr
RR: Rr: rr = 1:2:1
Phenotype ration
red (RR, Rr) : white (rr)
3:1
part 2
Black is dominant over white
hence, in first generation cross all mice become white
SOMEONE HELP I HAVE AN MISSING ASSIGNMENT
Answer:
hardware
Explanation:
hardware in something physical and software in digital
Answer:
Your correct answer is Hardware.
Explanation:
Every single computer is actually composed of these two basic components: hardware and software. hardware includes the Physical features, which are every part that you can either see or touch, for example: monitor, case, keyboard, mouse, and printer.
When multiple architects work on a construction plan, which section of a construction plan will help them keep track of when the changes are made and by whom?
A.
framing plan
B.
schedule
C.
title block
D.
bill of materials
Answer:
I believe that it is . A. framing plan
Explanation:
But I am not certain But I do know that it IS NOT B..
Answer:
the answer is schedule!!!
Explanation:
Which of the following parts apply when delivering an indirect bad news message? Select all that apply.
Question 2 options:
Opening with a buffer statement
Being direct with news
Explaining the situation
Inserting stories and important anecdotes
Keeping details to a minimum
Providing alternatives
The parts that apply when delivering an indirect bad news message are:
Opening with a buffer statement
Explaining the situation
Keeping details to a minimum
Providing alternatives.
When delivering an indirect bad news message, the following parts apply:
Opening with a buffer statement: Start the message with a neutral or positive statement that prepares the recipient for the upcoming news. This helps soften the impact and reduces defensiveness.Explaining the situation: Provide a clear and concise explanation of the circumstances or reasons behind the bad news. This helps the recipient understand the context and rationale.Keeping details to a minimum: While it is important to provide necessary information, it is also crucial to avoid overwhelming the recipient with excessive details. Focus on the key points to maintain clarity and avoid confusion.Providing alternatives: Offer alternative solutions or options to mitigate the impact of the bad news. This shows empathy and provides the recipient with potential avenues for resolution or improvement.The parts that do not apply in delivering an indirect bad news message are:
Being direct with news: Indirect bad news messages typically involve delivering the news subtly rather than being direct.Inserting stories and important anecdotes: Including stories or anecdotes may not be suitable for an indirect bad news message as it can distract from the main message and dilute its impact.Therefore, the applicable parts for delivering an indirect bad news message are opening with a buffer statement, explaining the situation, keeping details to a minimum, and providing alternatives.
For more such question on bad news message
https://brainly.com/question/22473511
#SPJ8
Computer industries and organizations also face issues related to health, safety, and environmental issues. In this task, you will examine these
sues related to an industry organization that deals with technology, specifically computers. Write a short essay on these issues.
User asks you to develop a program that calculates and then prints interest earned on a bank
balance. Program should print interest earned for the same balance when interest is accumulated
annually, semiannually and quarterly.
Interest earned yearly-balance * rate /100
Interest earned semiannually balance*rate/2/100
Interest earned quarterly= balance*rate/4/100
for annual
for semi annual
for quarterly
00 is Current (1) times resistance (R)
The program that calculates and then prints interest earned on a bank balance is given below:
The Program#include <bits/stdc++.h>
using namespace std;
int main()
{
double principle = 10000, rate = 5, time = 2;
/* Calculate compound interest */
double A = principle * (pow((1 + rate / 100), time));
double CI = A- principle;
cout << "Compound interest is " << CI;
return 0;
}
Read more about programming here:
https://brainly.com/question/23275071
#SPJ1
Identify the correct characteristics of Python lists. Check all that apply. Python lists are enclosed in curly braces { }. Python lists contain items separated by commas. Python lists are versatile Python data types. Python lists may use single quotes, double quotes, or no quotes.
Answer:
Python lists contain items separated by commas.
Python lists are versatile Python data types.
Python lists may uses single quotes, double quotes, or no quotes.
Explanation:
Python Lists are enclosed in regular brackets [ ], not curly brackets { }, so this is not a correct characteristic.
Answer:
a c d
Explanation:
what is time ,?????????????????????????
Answer:
The time is 2:47
Explanation:
What are the two common types of networks? Which do you think is better and why?
IN AT LEAST 3 SENTENCES
Answer:
LAN, WAN, PAN. none are "better" really. each one serves a best purpose when/where needed
Answer:
The two common types of networks are :
Local Area Network (LAN)Wide Area Network (WAN)LAN is best for particular situation means where speed, cost of installation as ease of setup is concerned as LAN covers limited area. ex school, labs etc.,
And WAN is best for particular situation means where area to be covered more, and fault tolerance is less in WAN.
So it totally depend on situation.
Which access control method relies on access being defined in advance by system administrators?
public abstract class people { private int age; private string name; public abstract void printinfo(); } public class student extends people { private int grade; public void printinfo(){...}; } public class teacher extends people { private int experience; public void printinfo(){...}; }
The UML diagram that best represents the relationship depicted in the following code is:
People <--Teachers <---- Students
What is UML diagram?Unified Modeling Language, or UML, is a tool for representing the architecture, design, and implementation of complicated software systems visually.
When writing code, it can be challenging to remember the relationships and hierarchies within a software system because there are often thousands of lines in an application. That software system is broken down into components and subcomponents using UML diagrams.
Most software developers will be able to understand and use UML because it is a standardized modeling language that can be used with a variety of programming languages and development methodologies.
Learn more about UML diagrams
https://brainly.com/question/13838828
#SPJ1
Complete the sentence.
If you wanted the best performance for a game that requires a powerful graphics processor and lots of memory, you
would run it on a
tablet
desktop
smartphone
Michael starts a website for people in his town to share news and photos. Before launching the website, he has his friends and family sign up. Then, he uses the equation shown to estimate the number of users, y, who will have signed up x weeks after he officially launches the website.
Which of the following statements about the function is TRUE?
A Michael can expect an 82% increase in users each week.
B Michael should expect to have about 98 users after four weeks.
C Michael should expect to have about 86 users after four weeks.
D Michael’s website started with 1,045 users.
Michael starts a website for people in his town to share news and photos. Before launching the website, he has his friends and family sign up. Then, he uses the equation (y = 82(1.045)ˣ to estimate the number of users, y, who will have signed up x weeks after he officially launches the website. The following statements about the function which is TRUE is: "Option B).
What is the calculation justifying the above answer?Recall that we have the following expression:
(y = 82(1.045)ˣ; where:
The number of users is y; and
The number of weeks is x.
Since x = 4
therefore
y= 82 (1.045)⁴
y = 82 * 1.19251860062
Hence,
y = 97.7865252508; Hence
Number of users y \(\approx\) 98
This confirms that Michael should anticipate having about 98 users after four weeks.
Learn more about equations:
https://brainly.com/question/10413253
#SPJ1
to have the full protection of the law, copyrights, patients, and ______ should be registered with the government.
A. Trade secrets
B. Public domain works
C. Trademarks
D. Fixed forms
Answer:
Option C, Trademarks.
Please note: The word from the question is "patents" not "patients". Please, correct that.
IMPORTANCIAS de las ticc
Las TIC permiten a las empresas comunicarse, compartir informacion y recopilar datos de manera mas rapida, barata y eficiente. Esto reduce los costos operativos, mejora la productividad y aumenta la competitividad en el mercado.
What is comunicarse ?Comunicarse is the Spanish verb meaning "to communicate." It is used to describe the act of exchanging ideas, thoughts, information, or feelings between two or more people. Communication can be verbal or nonverbal, or a combination of both. It is an important part of interpersonal relationships and can be used to build trust and understanding.
Communication also helps us to connect with other people and create meaningful relationships. Through communication, we can learn about each other and develop meaningful connections. By communicating effectively, we can resolve conflicts, share ideas, and make decisions. Comunicarse is an important tool for fostering healthy relationships and better understanding.
To learn more about comunicarse
https://brainly.com/question/24540334
#SPJ1
what is super computer ? List out application area of super computer.
Explanation:
Common applications for supercomputers include testing mathematical models for complex physical phenomena or designs, such as climate and weather, the evolution of the cosmos, nuclear weapons and reactors, new chemical compounds (especially for pharmaceutical purposes), and cryptology.
OR
A supercomputer is a computer that performs at or near the highest operational rate for computers. Traditionally, supercomputers have been used for scientific and engineering applications that must handle massive databases, do a great amount of computation, or both.
In java Please
3.28 LAB: Name format
Many documents use a specific format for a person's name. Write a program whose input is:
firstName middleName lastName
and whose output is:
lastName, firstInitial.middleInitial.
Ex: If the input is:
Pat Silly Doe
the output is:
Doe, P.S.
If the input has the form:
firstName lastName
the output is:
lastName, firstInitial.
Ex: If the input is:
Julia Clark
the output is:
Clark, J.
Answer:
Explanation:
import java.util.Scanner;
public class NameFormat {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
System.out.print("Enter a name: ");
String firstName = input.next();
String middleName = input.next();
String lastName = input.next();
if (middleName.equals("")) {
System.out.println(lastName + ", " + firstName.charAt(0) + ".");
} else {
System.out.println(lastName + ", " + firstName.charAt(0) + "." + middleName.charAt(0) + ".");
}
}
}
In this program, we use Scanner to read the input name consisting of the first name, middle name, and last name. Based on the presence or absence of the middle name, we format the output accordingly using if-else statements and string concatenation.
Make sure to save the program with the filename "NameFormat.java" and compile and run it using a Java compiler or IDE.
what does the term byte usually mean?
Answer:
this what it said
Explanation:
a group of binary digits or bits (usually eight) operated on as a unit.
a byte considered as a unit of memory size.
Answer:
In this form of spelling, byte is a unit of measurement regarding data and is made up of 8 bits, which is smaller than a byte.
Explanation:
Technology and Communications Quiz Active 1 Which of the following inventions has had the greatest impact on sound technology? A. the extension cord
B. the tape recorder
c. the telegraph
d. the microphone
Answer:
B the tape recorder bec half century later made sonorities not only reproducible but also alterable.
_________________ schedules the processor giving preference to the job with the shortest execution time.
Answer:
SJF
Explanation:
SJF is an acronym for the word, Shortest Job First. It is a scheduling algorithm that dies exactly what the question asked i.e, scheduling the processors by giving a much higher preference to jobs that posses the most little, or the shortest time of execution. It also brings down the usual waiting time for other processes that are for whatever reasons, yet to be executed.
PLEASE HELP I REALLY NEED IT ASAP
Select the correct answer. Layla and her team have installed a fire alarm system in an office. The alarm system connects to a wireless network, so it can be monitored using smartphones and computers connected to the same network. Which wireless technology does the fire alarm system use?
OA satellite
OB. Bluetooth
O C. infrared
OD. WI-FI
Answer:
wifi
Explanation:
if it's running on the same network that's wifi
Answer:
The correct answer is D. Wi-Fi.
Explanation:
I got it right on the Edmentum test.
Which of the following is the only way to know exactly what your website will look like and whether it will work when published?
Question 2 options:
viewing it in dual view
publishing it
viewing it in source view
viewing it in wysiwyg
Answer:
Viewing it in dual view or source view can help you see the HTML and CSS code that makes up your website, but it may not give you a complete picture of what the website will look like and how it will function when published. Similarly, publishing your website may give you an idea of how it looks and works, but it may not be the only way to know exactly how it will appear.
The option that is most likely to provide an accurate representation of how your website will look and work when published is viewing it in WYSIWYG (What You See Is What You Get) mode. This mode allows you to create and edit your website in a visual editor, where you can see how the website will appear to users as you work on it. However, it's still important to test your website on different devices and browsers to ensure that it works correctly for all users.
52 is same as 5x5 or 25
Answer:
25
Explanation:
Answer:
i would say none of them
bc 5 time 5 is 25 so they both dont equal to 52
What is the output?
>>>import time
>>>time.localtime()
a. the number of seconds since the epoch
b. the user's time zone
c. the date
d. the time
e. the time-zone offset
It is a select all that apply type of question
Answer:
a. the number of seconds since the epoch
Explanation:
time.localtime(), returns the number of seconds since the epoch if no argument is passed oyherwise it return struct_time in local time if you pass in seconds since epoch
The system board contains the logic circuitry that performs the instructions of a computer's applications.a. Trueb. False
Answer:
TRUE
Explanation:
As computer programs can be complex and difficult to write, they, A Web browser is an example of applications software. process, as well as programs, or instructions specifying the steps necessary to complete.
The statement "The system board contains the logic circuitry that performs the instructions of a computer's applications" is true.
What is a logical symbol?In Boolean algebra, the conjunction between two propositions is denoted by the logical AND symbol.
It is given that:
The statement is:
The system board contains the logic circuitry that performs the instructions of a computer's applications.
As we know,
An idealized or actual device called a logic gate implements a Boolean function, which is a logical operation on one or more binary inputs that results in a single binary output.
Because writing computer programs can be challenging and complex, An illustration of applications software is a web browser. programs or instructions that outline the steps required to perform a process
Thus, the statement "The system board contains the logic circuitry that performs the instructions of a computer's applications" is true.
Learn more about the logical symbol here:
brainly.com/question/11359207
#SPJ2
What precipitated the on-demand economy? In information technology
Answer:
The on-demand economy was precipitated by several factors in information technology:
a). Advancements in mobile technology and the widespread adoption of smartphones.
b). The development of reliable, high-speed internet connectivity.
c). The emergence of cloud computing and data storage, which made it possible to store and process vast amounts of data.
d). The growth of social media and online marketplaces, which facilitated the exchange of goods and services between individuals and businesses.
e). The increasing availability of APIs, which made it easier for software developers to build new applications that leveraged existing platforms and data.
how does the internet bring people farther apart
use a paragraph to answer the question
Answer:
First of all you may not be able to see your friend in person and it gets very sad. Sometimes you call them but they don't answer you because they don't have enough time to talk or they have something else to do. They won't always want to be on the internet you know, they want to go outside and get a life and not be like the FRE-KIN T-I-K T-O-K-E-R-S WHO ARE CHILDREN AND BEING VERY STU-PID AND ARE TOTAL IDIOTS AND SAY STUFF THAT MAKE NO SENSE AND TRY TO GET ATTENTION. OH DON'T BRING TOWARDS THE GA-CHA IT SO TRASH. I still hate gacha :) and I am happy. Another thing is what some people post, you see you meet friends in real life and sometimes you get to know them but you don't know what they might be doing on the internet and another thing is that they post stuff that makes you feel uncomfortable and disgusted.
PLEASE HELP
what are some benefits of using graphic on web page?
Images help tell a story where describing with words is either too lengthy, or practically impossible. For instance, you could have a map of a location and various arrows and other markings to describe movements of troops during a battle of the civil war. This is one example of many that you could have as an image on a website. Describing the troop movements with words only may be really difficult to do. Plus many people are visually oriented learners, so they benefit with images every now and then. Of course, it's best not to overdo things and overload the site with too many images. A nice balance is needed.