HELP PLEASE!!

which of the following is document content that displays at the top of every page?

Answers

Answer 1

Explanation:

that is a trick question if you need help ask your teacher

Answer 2

Answer:

Title

Explanation:


Related Questions

Which string method returns true if the character is a numeric character?
letter = input("Enter a letter: ")

A. isDigit(letter)
B. isdigit(letter)
C. letter.isDigit()
D. letter.isdigit()

Answers

Answer:

It is D. letter.isdigit()

Explanation:

reason being is that there is only very few scenarions that require a capital letter in them and most of those that have scenarions are to input a operation into the program.

In the given options, the method that will return true when an input charater is a numeric is optionC. letter.isDigit()

Methods In Programming

Basically what this function does it to check whether the input variable letter is a numeric character, if true then the function returns true.

Hence, the functions input parameter is a string and it returns and boolean

it should be noted that there is a sligth difference between and method and a function in programming.

Learn more about programming here:

https://brainly.com/question/1538272

Computers were originally developed to accomplish various tasks in relative isolation, very different from the collaboration and communication we see today.

A.
True

B.
False

Answers

The answer is A, they were built for work.

I'm confused as to if subclasses can call the supers without any implementation and what the right answer is

Answers

Answer:

E

Explanation:

Since Example1 and Example2 inherit from Example0, all classes have the method doNothing() at their disposal, so you can call it from e0, e1 and e2.

However, the arguments of this method are Example1 and Example2, so you cannot pass Example0 as a first argument, and you cannot pass Example0 or 1 as a second argument. That only leaves answer E.

You can call the inheritance relation an "is a kind of" relation. So Example1 is a kind of Example0, and Example2 is a kind of Example1, but also Example2 is a kind of Example0.

Now you can understand why e2 can be passed as an argument for Example1, because e2 is a kind of Example1.

Describe the function of memory and
processing unit of Computer system​

Answers

Answer:

Computer memory is a temporary storage area. It holds the data and instructions that the Central Processing Unit (CPU) needs. ... This allows the CPU direct access to the computer program. Memory is needed in all computers.

Explanation:

hope it help

????????????helpppp please

Answers

Answer:

I lab u pre haha jok

ano ka gold

Which of the following described a global network connecting billions of computers and other
devices?
A) WiFi
B
ISP
C
World Wide Web
D
Internet

Answers

pretty sure its wifi
A that pretty much it! Lol

Can you help me to write a code with functions,arrays,and pointers in c++?
It can be a basic game or an interesting program.
But a little bit complicated :)
Please I need help :(((​​

Answers

Answer:

Your search for complete and error-free projects in C and C++ ends here! Here, we’ve enlisted all the mini-projects, projects, games, software and applications built using C and C++ programming language — these are the projects published in our site or available with us at the moment. You can download all these projects (with source code) for free; make sure to check their individual post description as well.

First thing, most students learn C and C++ as their first programming language. They quickly become able to write programs that include functions, arrays and pointers, file handling and data structure, etc. But, when it comes to building a mini-game, an application, or a small project, incorporating all these features in one compact program becomes difficult.

In such case, reference projects always come in handy. The C and C++ projects published in our site will teach you how to get started, give you ideas and topics regarding your project, and sharpen your programming skills in C and C++. Here, you’ll find short and simple as well as long and complicated projects.

in addition to good design sense, what else do web designers need to be proficient in?

Answers

Web designers need to be proficient in Front-end coding languages in addition to good design sense.

Web designers build or redesign websites. They understand what it takes to make a website functional and easy to use, but also understand what is needed to make it aesthetically appealing to the user.

Web designers need to be proficient in Front-end coding languages in addition to good design sense.

Find out more on web design at: https://brainly.com/question/8391970

Jacob is preparing a presentation on the health and social advantages of taking up a sport at an early age. Most of the slides in his PowerPoint presentation provide information using colorful graphics and charts. He plans to give notes to his audience to help them follow along.

Jacob is preparing a presentation on the health and social advantages of taking up a sport at an early age. Most of the slides in his PowerPoint presentation provide information using colorful graphics and charts. He plans to give notes to his audience to help them follow along.

How should Jacob format the Notes Master so it will be most helpful to his audience?

Do not include a slide image, leaving the maximum room to take notes.
Do not include a notes pane because graphics do not need to be annotated.
*Make the slide image large so the charts can be seen clearly.
Make the text pane large so the audience can draw their own charts.

Answers

Answer:

C. Make the slide image large so the charts can be seen clearly.

Explanation: Edg

what are quantum computers and it uses​

Answers

Answer: Quantum computers are machines that use the properties of quantum physics to store data and perform computations

A healthcare crisis where millions of patient medication records were tampered with is an example of what type of breach?

A.
integrity breachc.

B.
codependency breach

C.
authentication breach

D.
AIC Triad breach

Answers

A healthcare crisis where millions of patient medication records were tampered with is an example of; A: Integrity Breach.

To answer this question, let us access each of the options;

A) Integrity breach; This is a breach that occurs when where there is an unauthorised or accidental alteration of the personal data of individuals or a group.

B) Codependency breach; This is not really a breach in this context as it happens when there is an imbalanced relationship between two or more people.

C) Authentication breach; This is a type of breach that is more common with a breach of passwords and login details.

D) AIC Triad breach; AIC is Availability, Integrity and confidentiality. So it combines Availabilty breach, integrity breach and confidentiality breach.

In this question, the patient medication records were tampered with which means that they were altered and from our definitions above, this is an example of integrity breach.

Read more about security breach at; https://brainly.com/question/15957125

Very few games have any sort of narrative, not even a simple one that involves setting the mood through color, sound, environment, and game mechanics.

A.
True
B.
False

Answers

Answer:

B. False

Explanation:

Numerous amount of games have narrative, there is an entire genres built around narratives. Any RPG game has a narrative and even bog standard FPS games have some sort of backstory and effects setting a mood.

Write a program to print sum on first 10 natural numbers.
#include
int main()
{
int i, sum;
for(i=1;i<=10;++i);
{
sum =sum + i;
}
printf("The sum is = %d",sum);
}

Answers

A program that prints the sum on the first 10 natural numbers is:

int sum=0;int i=1;for(i=1; i <= 10 ; i++) // the value of i will be from 1 to 10{sum=sum+i; //each number will get added to the variable ‘sum’}System.out.println(sum); //

What is a program?

A computer program in a programming language is a set of instructions and commands written in a language that a computer can execute or understand. 

Using the For Loop program, the variables of the first 10 natural numbers can be written as:

int sum=0;int i=1;for(i=1; i <= 10 ; i++) // the value of i will be from 1 to 10{sum=sum+i; //each number will get added to the variable ‘sum’}System.out.println(sum); //

Learn more about writing a program here:

https://brainly.com/question/23275071

Alex needs to create a function capable of counting item reference numbers that he is inserting into a spread sheet. The purpose of this function will be to keep track of inventory. How would Alex go about finding a function to do this? Click the Home tab and use the Find.

Answers

Alex can find a function to do this by entering the item reference numbers into the worksheet, and click the Sort button to count the items.

A spreadsheet can be defined as a document or file which comprises cells in a tabulated format (rows and columns), that are typically used for formatting, arranging, analyzing, storing, calculating, counting, and sorting data on computer systems through the use of a spreadsheet application such as Microsoft Excel.

In this scenario, Alex wants to keep track of inventory by creating a function that is capable of counting item reference numbers as he is inserting into a spread sheet. Thus, he should enter the reference numbers of each item into the worksheet, and click the Sort button to count the items.

Read more: https://brainly.com/question/14299634

Answer:

It’s C

Explanation:

edge

write 10 place where computer use and it uses​

Answers

Answer:

dynamite ohohoh

Explanation:

nânnananananananann eh

house store school park

In Super Mario Bros., you become Mario and your friend is Mario’s younger brother Luigi. Your job is to race through Mushroom Kingdom to save Princess Toadstool and avoid the enemy, Bowser. You can jump from and to different objects, picking up coins and other items to help you on your journey through the levels. What game genre (or combination of genres) best describes this game?

A.
strategy simulation
B.
action adventure
C.
RPG
D.
sports action

Answers

B action adventure ——————

how many pages is 1500 words double spaced 12pt font?

Answers

Answer:

6 pages

Explanation:

Write a program Election that computes the tally in a write-in election, and announces the winner. Since the votes are write-in, there is no pre-determined set of candidates. Whoever appears the most in the votes is the winner. The user enters the individual votes, one vote per line, and ends entering with typing -1 or an empty line. To compute the tally, the program uses two arrays, a String [ ] variable (names), and an int [ ] variable (count). Upon receiving a single vote, the program checks if the name on the vote appears in names, and if it does, the program adds 1 to the value of the element in count. If the name does not appear in names, the program extends both arrays by one element, stores the name in names at the last position and store 1 in count at the last position. In this manner, the two arrays will have the same lengths. The initial length is 0 for both arrays. Below is an example of how the program may runplease I need to demonstrate the code,I need some comments next to every single line

Answers

The election program illustrates the use of ArrayLists, loops and conditional statements.

ArrayLists are resizable arrays, while loops and conditional statements are used to perform repetitions and make decisions, respectively.

The election program written in Java, where comments are used to explain each line is as follows:

import java.util.*;

public class Main {

 public static void main(String[] args) {

     //This creates a Scanner object

   Scanner input = new Scanner(System.in);

   //This creates a string ArrayList for the names of the candidates

   ArrayList<String> names = new ArrayList<String>();

   //This creates an Integer ArrayList for the vote count of the candidates

   ArrayList<Integer> votes = new ArrayList<Integer>();

   //This declares name as string

   String name;

   //This gets input for the name of the candidates

   name = input.nextLine();

   //This is repeated until the user enters "-1"

   while (!"-1".equals(name)){

       //If name is in the list,

       if(names.contains(name)){

             //This gets the index of the name  

             int pos =names.indexOf(name);

             //This calculates the number of votes

             Integer value = votes.get(pos)+1;  

             //This adds the vote to the vote ArrayList

             votes.set(pos, value);

       }

       //If otherwise

       else{

           //This adds the candidate name to the name ArrayList

           names.add(name);

           //This adds 1 as the vote of the candidate to the vote ArrayList

           votes.add(1);

       }

       //This gets input for the name of another candidates

       name = input.nextLine();

   }

   //This prints the name of the election winner

   System.out.println("Winner : " +names.get(votes.indexOf(Collections.max(votes))));

 }

}

Read more about ArrayLists, loops and conditional statements at:

https://brainly.com/question/19504703

What's the technique of drawing a 3D object with one vanishing point?​

Answers

I don’t no it brother n I was searching for this answer can u plz tell me
A one-point perspective drawing means that the drawing has a single vanishing point, usually (though not necessarily) directly opposite the viewer's eye and usually (though not necessarily) on the horizon line. All lines parallel with the viewer's line of sight recede to the horizon towards this vanishing point.

One Point Perspective is a type of linear perspective that uses a single vanishing point to create the illusion of depth in a work of art.
Parallel – Parallel lines are lines that never touch… even if they are extended indefinitely.
Horizontal Lines – Lines drawn from side to side level with the horizon.

This program is an example of:

def factorial(x):

if x == 1:

return x

else:

return x * factorial(x-1)

Group of answer choices

a do while loop.

recursion.

a for loop.

a while loop.

Answers

The program is an example of recursion

In computer programming, recursion is a process in which a function calls itself.

In a recursive program, there is a

base case and a recursive case.

When the condition of recursion is met, the base case is returned, else, the recursive case is continued.

In the function given above,

the base case is 'return x' under the condition 'if x == 1'. The recursive case is 'return x * factorial(x - 1)'.

So, the function runs until the base case it met and then it stops.

So, the program is an example of recursion.

Learn more about recursion here:

https://brainly.com/question/25797503

In 1981, Ian Murphy broke into the AT&T online computer system and changed their clocks, allowing people to make calls during the day at a discounted rate. Based on the list of defining factors for computer crimes, what best describes Murphy's crime?

A.
intentionally disrupting, degrading, or destroying information or services on a computer

B.
disclosing any data or information obtained through illegal online activity

C.
knowingly receiving or holding onto any data or information obtained through illegal online activity

D.
intentionally or recklessly tampering with, taking, transferring, concealing, altering, or damaging physical computer equipment

Answers

a. intentionally or recklessly disrupt, degrade, or destroy information or services on the computer

What is the default folder for text file

Answers

documents or download

It depends where you install it to

Answer:

numbers are stored as characters

Explanation:

currently saved in if another folder

Please help please help

Answers

Answer:

Explanation:

je pense que la reponse est la suivante a et b puis c

PLEASE ANSWER (CODING IN PYTHON)


Ask what kind of pet the user has. If they enter cat, print “Too bad...”, if they enter

dog, print “Lucky you!" (You can change the messages if you like). Once this works,

add other pets. (Iguana, Pig, Rabbit...)

Answers

Answer:

Explanation:

a = input("what kind of pet the user has")

if a == 'cat':

  print("Too bad")

elif a == 'dog':

   print("Lucky you!")

The program based on the information is given below.

What's the program about?

def main():

   pet = input("What kind of pet do you have? ").lower()

   if pet == "cat":

       print("Too bad...")

   elif pet == "dog":

       print("Lucky you!")

   elif pet == "iguana":

       print("That's interesting!")

   elif pet == "pig":

       print("Oink oink!")

   elif pet == "rabbit":

       print("Hop hop!")

   else:

       print("I'm not familiar with that pet.")

if __name__ == "__main__":

   main()

Learn more about program

https://brainly.com/question/26642771

#SPJ2

what types of activities are ideal for a robot to perform?

Answers

The type of activities that are ideal for a robot to perform are; Repetitive tasks

Robots are machines that are programmable by a computer which have the capacity of automatically carrying out a complex series of actions.

Now, robots are used in a wide array of industries which include manufacturing, assembly and packaging, transport, earth and space exploration, e.t.c.

The most common use are found primarily in the automobile industry where they are used to carry out repetitive tasks and those that are difficult or hazardous for humans.

Read more about robots at; https://brainly.com/question/9145476

in ____ orientation, a page is taller than it is wide.

Answers

Answer:

portrait

Explanation:

list ten features of word processing packages​

Answers

Answer:

Entering text.

Editing text.

Formatting paragraph.

Formatting page style.

Importing text, graphics and images.

Entering mathematical symbols.

Checking spelling and grammar.

Header and footer and other.

To remove a specified number of characters from anywhere within a string, you should use the ____ method.

Answers

Answer:

remove

Explanation:

How can I master networking my home/business computer(s) - Tv's - iot devices and make the whole system as secure as possible?

Answers

Answer:

you can take guide from

hope this will help you....!

Janet is playing a game in which she interacts with an environment to solve a puzzle and to meet new characters. She really enjoys this game because there are no time constraints or pressure to perform with speed. What genre of game is Janet most likely playing?
A. simulation
B. action
C. adventure
D. sports

Answers

Answer:

C. adventure

Explanation:

Other Questions
Hello do you like cupcakes? The graph of the function, fx) = -2x + 6x-3, opens blank and has a blank value. .Which of the following best describes the standard regarding attorney-client confidentiality Given: Triangle ABC Prove: mA=64By the triangle sum theorem, the sum of the angles in a triangle is equal to . Therefore, mA+mB+mC=180. Using the Substitution Property, (4x)+90+(x+10)=180. To solve for x, first combine like terms to get 5x + 100 = 180. Using the Response area, 5x = 80. Then, using the division property of equality, x = 16. To find the measure of angle A, use the Response area to get mA=4(16). Finally, simplifying the expression gets mA=64. _____________ is the study of movement in athletes. A. Sports biomechanics B. Posture C. Dynamics D. Anatomy HELP ME PLEASE I NEED HELP WITH THIS NO LINKS PLEASE!Metal Mass (9) Volume (cm) Gold 77.28 4.00 Platinum 64.35 3.00 Tungsten 96.75 5.00 Silver 63.00 6.00 29) A jeweler has selected a metal with a density of 19.35 g/cm' to make a ring. Which of the metals was selected? A) GoldB) PlantinumC) Sliver D) Tungsten 23x25 = please help What is the solution set for the given inequality if the replacement set for r is {5, 6, 7, 8, 9, 10}? 16-r> 8 With what emotion does Brian struggle most in this chapter?self-pitylonelinessfearimpatience PLEASE HELP 40 POINTS PLSSSSSSSS The graph shows the relationship between pounds of dog food and total cost in dollars for the dog food.which statements about the graph is are true?A Point shows the cost is $0 for 0 pound of dog foodB Point 10.5 shows the cost is $1 for 0.5 pound of dog foodC. Point 2. 1 shows that 2 pounds of dog food cost $1.D. Point 2) shows the cost is $4 tor 2 pounds of dog foodE Point 10. shows that 10 pounds of dog food costs $5 what is _ percent of 100 is 14 Why does the narrator of the war of the worlds use such precise and scientific language? A. To show that the narrator is an average person. B. To establish the storys credibility. C. To explain the story from the Martians point of view. D. To make the reader question the narrators intelligence. Help pls Bob is a funeral director. What might be one task that Bob performs as part of his job?Question 9 options:arranging for daily care for an elderly personrunning a local food bank that delivers mealsplacing an obituary in the local newspaperorganizing a community roadside clean up Which mathematical statement represents 17 more than a number is 26?17 greater-than 26n + 17 = 2617 less-than 2626 + n = 17 The gradual increase in activity over time is called Match each Georgia Geographic Region to its description. Blue Ridge wettest region, Appalachian Mountain Range trail begins hereValley and Ridge the textile industry is the main industry in this region rich soil in between the steep mountainsAppalachian Plateau of the 5 regions, this is the smallest, Nicknamed the Tag corner, coal is a resource here.Piedmont largest population, second largest land areaCoastal Plain largest land area, home to the Okefenokee swamp, peanuts grow best here.Which impact was a result of the Spanish mission system?The Spanish missionaries forced Native American's to adopt their religion.Which factor made the diseases transmitted by Europeans so deadly for the Mississippianspopulation of North America?Native Americans had no immunity to European diseases. Which statement best describes Oglethorpe's "dream" for the Georgia colony?to give people from England a chance to start a new life. The Highland Scots played an important role in settling Georgia during the Trustee Period. Choose 3 correct descriptions about the Highland Scots belowestablished the town of Darien recruited by Oglethorpe to man Georgia's military forts well-known for their bravery and determination in battle During which period of colonial Georgia did restrictions on land ownership relax and slavery was legalized?Royal Period Which of the following did NOT make the colonists mad and want to revolt!War of 1812 Which crops were originally traded with England during the colonial period? You must select all the correct answers to earn points for this question. rice indigo cotton During the colonial period, which countries had economic interest in the Southeast? Spain EnglandFrance Due to the many weaknesses in the Articles of Confederation, the states, including Georgia, wanted to create a ______________ government. strong central The British held military occupancy in Savannah for most of the American Revolution. In which revolutionary battle did the patriots attempt to recapture the city of Savannah, but failed, leaving Savannah in the hands of the British for the remainder of the war?Siege of Savannah At the Battle of Kettle Creek, the patriots defeated the Loyalists and boosted the morale of the Georgia Patriots. At the Battle of Kettle Creek, _____________ led the charge but was wounded and lost his horse and ________ helped him and was rewarded with land after the war was over.Elijah Clarke, Austin Dabney The articles of confederation set up a weak central government and strong state governments. The Articles provided America with a very weak central government because of the American's experience with the British King. The Articles had too many limitations that did not allow government to function smoothly and they had to be replaced by the Constitution. Congress can make laws but it can't force states to obey them.Congress could not levy taxes so it couldn't pay the country's debt.Congress could not raise an army but it can't force states to obey them.Articles did not create a judicial branch so there was no national court system to decide disputes.Who are the three Georgia signers of the Declaration of Independence?Lyman Hall, Button Gwinnett, George WaltonEli Whitney's invention of the cotton gin led to a/an ________ in slavery. increase Four land speculating companies bribed Georgia legislators to sell 35 million acres of land at a very low price. This is know as theYazoo Land Fraud Who was the leader for the Creek Nation in Georgia who gave away all remaining Creek land in Georgia to the federal government?William McIntosh Which of the following is NOT true about the establishment of the University of Georgia?women were admitted in 1785 when the school opened The Yazoo land fraud occurred because land companies bribed legislators so they could buy land cheaply Which court case ruled the Cherokee Nation was an independent, sovereign nation where U.S. laws did not apply?Worcester vs. Georgia Georgia's border expanded west to the Mississippi River as a result of which event in our state's history?The French and Indian War African American men were elected to the Georgia General Assembly after the passage of which amendment?15th amendment help with question number 40 please why did chillingworth rush out of the room while talking to dimmesdale Which of the following statements correctly explains the tectonic plate activity on the west coast of the united states?.