The text between < html > and < /html > defines the _____.

a) active Web-page area
b) active code on a page
c) active text on a page
d) active image on a page

Answers

Answer 1

Answer:

active text on a page

Explanation:


Related Questions

Which of the following choices BEST explains the purpose of developing a research plan?
A.
Research plans are ONLY used by teachers to plan their daily classroom activities.
B.
Research plans are ONLY used by experts who have to write articles for scholarly journals in various fields.
C.
Research plans are used by any person who is critically evaluating a topic; since research papers involve multiple stages and multiple sources, the writer uses the plan for time management.
D.
A research plan is the term to describe the research paper and the bibliography.



Please select the best answer from the choices provided


A
B
C
D

Answers

Answer:

C

Explanation:

Because the research is for everybody

Would you agree that intelligent machines take the place of human beings in no time? explain

Answers

Answer:

I think that they are smarter than humans themselves, but we have to remember all A.I. has to be programmed and created by a man, therefore it has to be just as imperfect as one.

Explanation:

hope this helps. have a nice day!

fill in the black
................. is concerned with recording, arranging filing, processor retrieving and disseminating of information. ​

Answers

Answer:

information processing is concerned with recording arranging processing retrieving and disseminating of information

Please help not to sure if I’m right ?

Answers

Answer:

Explanation:

b

Answer:

A) When setting up the e-mail program for each employee’s computer, the IT professional has the employee enter his or her e-mail password to protect privacy.

Explanation:

Password access should be protected as much as possible by IT specialists. Rather than asking clients or workers for their password information, have them input it themselves.

Maintain the secrecy of all password information. Do not make it available to the public in any form.

Without their knowledge and permission, do not access clients' or employees' computers for any purpose. It is a breach of privacy to view another person's browser history without their agreement.

OAmalOHopeO

Write a program that computes an integer's checksum. To compute the checksum, break the integer into its constituent digits and, working from right to left, doubling every second digit. If the product results in a number with two digits, treat those two digits independently. Then, sum all the digits for the final checksum.

Answers

Following are the C++ program to the given question:

#include <iostream>//header file

using namespace std;

int findCheckSum(int n)//defining a method findCheckSum that takes integer parameter

{

bool c = false;//defining bool variable

int S= 0,d;//defining integer variable

while(n)//defining while loop that seprates digits

{

d = n%10; // get the digit.

n=n/10; // remove the last digit.

if(c)//use if to check the even position value

{  

d=d*2;//multiplying d with 2  

while(d)//use if to check digit value

{

S=S+(d%10);//adding value

d=d/10;// remove the last digit.

}

}  

else//defining else block  

{  

S=S+d;// checking the odd position

}

c= c^true;//holding bool value

}

return S;//return S

}

int main() //defining main method

{

cout << findCheckSum(1984);//calling method  

}

Output:

22

Program Explanation:

Including header file.Defining a method, "findCheckSum" that takes an integer parameter "n".Inside the method, a bool variable "c" and two integer variable "S, d" is declared that defines a while loop.Inside the loop, a conditional statement is defined that separates digits and adds them into the "S" variable, and returns its values.Outside the method, the main method is declared that calls the "findCheckSum" method, and print its value.

Learn more:

brainly.com/question/14788459

7. In order to check your following distance, use a fixed object and count seconds.
True
False

Answers

Answer:

False

Explanation:

It is true that distance can be checked by counting seconds from a fixed object

How to determine the true statement?

The given highlights are:

Using a fixed objectCounting seconds

When seconds from a fixed object (such as a pole) are counted, the quantity that is being measured is time.

The time recorded can be used along the average speed to determine the distance traveled.

Hence, the given statement is true

Read more about distance and time at

https://brainly.com/question/4931057

#SPJ2

In a personal computer, the term computer identifies only the

which is the part of a desktop computer system that processes data into information.

Answers

Answer:Central Processing Unit is the electronic circuiting within a Computer that carries out the instructions of a Computer by preforming the basic ...

Explanation:

একটা ছবি কতটি কথার সমান?

Answers

Answer:

একটি ছবির মূল্য 84.1 শব্দের

Explanation:

What are the core skills necessary for communicating diplomatically?

Answers

Answer:

Just like approaching situations with empathy is important, the ability to approach and resolve conflict is essential when relying on your diplomatic skills. Diplomatically handling conflict in the workplace can be challenging, and the way you perceive and help resolve issues can often be a big factor in the outcome.

A social media website shares data about its users’ shopping habits with another company without the permission of the users. This is an example of:
Group of answer choices

violating privacy rights.

violating a trademark.

violating a non-disclosure agreement.

violating fair use restrictions.

Answers

Answer:

non disclosure agreement

what is cyber security ???​

Answers

Answer:

Cyber security is the practice if defending computers,servers,mobile devices,electronic systems, networks, and data from malicious attacks

que es una red de datos

Answers

Answer:

donde se guarda information o a dode sebuca

How is a WAN different from a LAN?
O LANs and WANs together make up 2. network.
O LANs require WANs or servers.
O A WAN is made up of LANS
O A LAN is made up of WANS

Answers

A WAn ( Wide Area Network ) is made up of LANS ( Local Area Network)

What is low, high and machine level language​

Answers

Answer:

A high-level language is one that is user-oriented in that it has been designed to make it straightforward for a programmer to convert an algorithm into program code. A low-level language is machine-oriented. Low-level programs are expressed in terms of the machine operations that must be performed to carry out a task. In easy words high level languages are near to human beings and far from computer and low level languages are near to computers and far from human understandings.

Explanation:

Hope it Helps

HAPPY TO HELP

PLZ MARK AS BRAINLIEST

im going to break my monitor soon



can osmeon help me

Answers

Answer:

what do you need help with

Explanation:

mark me brainliest

Statistics are often calculated with varying amounts of data stored in a file. Write a program that takes any number of non-negative integers as input, and outputs the average, min and max. Prompt user for the input file name, open the file, read and process the numbers in the file.

Answers

Following are the program explanation, program, and output to the given question:

Program Explanation:

Import package.Defining a class Main.Defining the main method.Defining a string variable "str" and define a Scanner class object to input the"str" value.After input, the string value of a Scanner class object is created that takes the "str"  value in the parameter.In the next step, the "ArrayList" class object is declared that uses a while loop to add value to the list.In the condition statement an if block is defined that check ArrayList value equal to 0, and print the message.In the else block, a float variable "sum" and three integer variable "ctr, min, and max " is declared that check its value and prints its value with the message.

Program:

import java.io.*;//import package

import java.util.*;//import package    

public class Statistics //defining a class Statistics

{

  public static void main (String[] asx)//defining main method  

  {

       String str;//defining a string variable str

       Scanner sob= new Scanner(System.in);//defining Scanner class object to input value

       System.out.println("Enter value: ");//print message

       str= sob.nextLine();//input value

       Scanner s = new Scanner(str);//using Scanner class to take value str in parameter

       List<Integer> val = new ArrayList<Integer>();//defining an ArrayList class

       while(s.hasNextInt())//defining a while loop in add value

       {

           val.add(s.nextInt());//using add method to add value

       }

       if(val.size() == 0)//defining if block that check ArrayList value equal to 0

           System.out.println("The File is empty");//print message

       else//else block

       {

           float sum = 0;//defining float variable

           int ctr = 0, max = Integer.MIN_VALUE, min = Integer.MAX_VALUE;//defining integer variable that hold value

           for(Integer a:val)//defining a for loop that check ArrayList

           {

               ctr = ctr + 1;//adding value in ctr variable

               sum = sum + a;//adding value sum variable

           if(min > a)//use if to check min value greater than a

               min = a;//holding value in min

           if(max < a)//use if to check max value less than a

               max = a;//holding value in max

           }

               System.out.print("Average = ");//print message

               System.out.println(sum/ctr);//print average value

               System.out.print("Minimum value = ");//print message

               System.out.println(min);//print min value

               System.out.print("Maximum value = ");//print message

               System.out.println(max);//print max value

       }

  }

}

Output:

Please find the attached file.

Learn more:

brainly.com/question/15410214

Convert the following as indicated : (120)10 = (?)2​

Answers

Answer:

1111000

Explanation:

perform the following. write from right to left:

- is the number even? then write down a 0

- is the number odd? then write down a 1 and subtract 1

- divide by 2

- repeat until you reach 0.

So for 120:

120 is even, so write down a 0 and continue with 120/2=60

60 is even,  so write down a 0 and continue with 60/2=30

30 is even,  so write down a 0 and continue with 30/2=15

15 is odd,  so write down a 1 and continue with 14/2=7

7 is odd, so write down a 1 and continue with 6/2=3

3 is odd, so write down a 1 and continue with 2/2=1

1 is odd, so write down a 1 and finish with 0

What are the three benefits of incremental development, compared to the waterfall
model?

Answers

Answer:

The cost of accommodating changing customer requirements is reduced

What enables image processing, speech recognition, and complex game play in Artificial Inteligence (AI)?

Answers

Y u no se me hace mal

Answer:

Deep Learning

Explanation:

Deep Learning

which of the following is not related to text formatting?​

Answers

Explanation:

Searching, hope that helps. its 100% correct, goodluck.

System documentation is never up to date.

True or false?

Answers

Explanation:

System documentation is never up to date is false

How many bits would be needed to count all of the students in class today? There are 16 children in the class.

Answers

Answer:

There will be 23 beats per children

what is the difference between computer hardware and computer software?

Answers

Answer:

computer Hardware:-The physical of the computer which can be seen or touched is called computer hardware☆Computer needs these hardware devices for performing basic functions like accepting data and instructions .Example(keyboard,mouse,printer etc.)

Computer software:-The collection of programs that makes computer worked is called software☆Computer needs software to instruct tge computer hardware what to do and how to do .Example(windows 7,windows 10,Microsoft paint etc.)

A network in which each node is connected to the line is called what

Answers

Answer:

A bus network is a local area network (LAN) topology in which each node -- a workstation or other device -- is connected to a main cable or link called a bus.

Explanation:

have agreat day!

Answer: A bus network is a local area network (LAN) topology in which each node

Explanation:

How has colored television impacted society in a negative way?

Answers

Answer:

Explanation:

Violence is one of the primarily negative effects of television among children. Television violence had been increasing for the past years. In the studies, it shows that an average of 32 acts per hour, a child may see on the screen (Gerber). Because of the number of violent acts a child may see, there is a result of the mental problem called “copycat phenomenon”. Copycat Phenomenon defines as imitating or copying the act or behaviour of a person from a particular show (Sparks, 2013). An example of this is if a child sees on television, a person who acts to be violent; there is a possibility to imitate its action, further, once it continues to imitate until he/she grows up, it results as to be his/her personality. Many people have experience this, even adults because it stirs up their emotions easily and somehow, they relate to that scene they watch. Further to that, it results in increasing number of crime and harm things; so that it is very alarming when a child happen to it. Violent television teaches children step-by-step; on how to commit mistakes and violent acts easily (Cline, 1989, 2B.).

Watching violence can lead to behaving aggressively. Does it really lead to behave aggressively among children? It is true that it may lead to behave them aggressively through the following factors: if a character in a particular scene performs violent acts; then that character receives a reward for their actions, and there is a possibility of increasing aggression to children, especially on boys and not on girls. And this theory he proposed is the social learning theory (Bandura, 1973). To illustrate, if a child sees a scene in a screen which has violent acts, then later the character receives reward on it, there is a chance of imitating or again “Copycat Phenomenon”. But, if the character did not receive rewards from it but receive punishment, there is a small chance of that child will refrain to do that act. But, in his further studies, it shows that this effect is not clearly depending on kind of program they watch; it is regardless of the kind of program they watch. Therefore, whatever kind of program they watch still, there is a risk of their behaviour due to prolonged expose to television and violence.

Once it changes their attitudes, it will clearly affect all their emotional aspects. Children emotions lead to anxiety, fear, trauma, and even depression (Wilson, 2008). First, there is a possibility of anxiety to them. Second, their fear increases. There is a study that many children have experiences short-term reactions to television. When they watch a scary movie, (example is Monster House), they get react easily and probably they frightened. So that, after they watch it, they feel devastated and therefore, it results to trauma. It will also intensify these effects if they watch a particular news footage that contains tragedy or violence. As a result, children are full of fears to face the real-world. It will hard for them to express themselves and they might see the real-world as a difficult, more complicated and may a victim or real violence. It is normal, but, their emotional capacity maybe more difficult to cope.

Which of the following is one of the first two levels of formatting in a Word document?

Answers

Explanation:

Paragraph Formatting.

What is your favorite photograph in the presentation? Why?

... I'm very confused about what presentation they're talking about. help

Answers

Answer:

is there a presentation in your lesson maybe?

Explanation:

Www requires a tool called a

Answers

Answer:

The World Wide Web (WWW) requires a tool (software) called a HTTP. The full form of HTTP is Hypertext Transfer Protocol.0. It is a type of internet communication software that is needed for the publication of the website or www

Explanation:

What are the Difference between turbo C++ and Java programing?

Answers

**Difference between Turbo C++ and Dev C++

Answer:

1. Turbo C++ (TC) :

It is a compiling software used for C and CPP Language. The initial release was in May 1990 but the first stable version released in September 2008. It takes more memory and time to load as compared to Dev C++. Turbo C++ is the compiler from which most of us start our coding life in school/college.

2. Dev C++ :

Dev C++ is also used for C and CPP Language. The first stable release was in April 2015. It is fast as compared to Turbo C++. Dev C++ is very much similar to Online Compilers which we used in Coding Competitions.

what separates the components of a domain name

Answers

Explanation:

period

In a domain name, the 'thing' that separates its components is a period.

Other Questions
Which below is not a process by which carbon dioxide enters theatmosphere? * how can social justice help fight social challenges Dcrivez an vieil hommeconnaissez. what reform opportunities and problem solving approaches can be identified in determining the approaches directions for improving police operations ? will give brainly !! 6x-4=3x+14Need help, Explanation/Formula as well please. Powder lighteners are recommended for lightening dark facial and body hair?O TrueO False Help me please What geometric sequence comes after25, 625,3125 Please Help thanks!Points A, B, and C are collinear and B lies between A and C. If AC = 48, AB = 2x + 2, and BC = 3x + 6, what is BC?BC=On a number line, suppose point E has a coordinate of 3,and EG=8.What are the possible coordinates of point G?The possible coordinates for G are?Please help! Which aspect do you think is most important for an entrepreneur in order to achieve venture capital? Why? Proving functions are inverses of each other: are these inverses of each other band can you explain why or why not. "Two kinds" of Cultural IdentityACTIVITY1.5Learning Target Analyze how two characters interact and develop over the course of a text toexplain how conflict is used to advance the theme.LEARNING STRATEGIESDiscussion Groups, Morkingthe Text, Brainstorminggrophic organizer,Questioning the leadPreviewIn this activity, you will read on excerpt from a novel and analyze the conflictbetween two characters,Setting a Purpose for Reading As you read Amy Ton's "Two kinds," look for evidence of conflict, Mark the textfor the reasons for the conflict and how it is resolved. Circle unknown words and phrases. Try to determine the meaning of the wordsby using context clues, word ports, or o dictionaryHost"ABOUT THE AUTHORAmy Ton was bombas Colifornia in 1952, several years after her parents lefttheir native Chine A writer from a very young age, ton experienced difficultyerty in life resulting from the untimely deaths of her father and brother,rebellious adolescence, and the expectations of others Educated at aSwitzerland boarding school as well as ot on jose State and Berkeley, Tomtimately became a writer of fiction. She has written numerous award winningnovels, including the most famous The Joy Luck Club, from which "Two kindsis an except. Ton resides in Son Francisco with her husband and twn dogs,Bubo andLiterary TermsA conflict is a struggle orproblem in a story. Thecentral conflict of a fictionalte sets the storymotion. An internal conflictoccurs when a characterstruggles betweenopposing needs or desiresor emotions within hisher own mlad. An extemulconftit occurs whesdcharacter struggles againston outside force. This forcemay be hother charactersocietal expectation, orsomething in the physicalworldlude variosphrases theMy NotesNovel ExcerptTwo Kindsby Any TanChunkiMy mother believed you could be anything you want to be to America. Youcould open a res. You could work for the power and preteVoday house with almost no money down. You could become the couldem only Camcoyou can be prodigy, to my mother told me whalineanything What Auntie Lindo nowfitades sily bestU 1. Oltural Conversations 2 ELA highschool question and answer . What can you tell about Squeaky from her interactions with the girls? It's A. She takes her responsibility to look out for Raymond seriously. Plus hopes this help TvT"' 6 + 2 4 3 - 7 + 6 + 5 3 - 1 1 Yes or no on each one How do you think the formalseparation of the Roman CatholicChurch and the Eastern OrthodoxChurch would affect the futuredevelopment of Europe? length and width of a field are in the ratio 5.3 If the wilth of the field is 42m, then its length is pa help po pls thank you Who was the first scientist to provide documentation and evidence to show a heliocentric model of the universe?A. Tycho BraheB. Hipparchus of NicaeaC. Aristarchus of SamosD. Eudoxus of Cnidus