A _____ is the viewing area for a web page, which is much smaller on a phone than on a traditional desktop.

Answers

Answer 1
A viewport is the viewing area for a web page, which is much smaller on a phone than on a traditional desktop .

Related Questions

Molly needs to access a setting in microsoft windows group policy to change the type of a network to which a computer is attached. Which setting must molly change?.

Answers

A computer is made up of different network. The setting that molly must change is network type.

A computer network is known to be a group of computers that are linked to each other so as to help the computer to communicate with another computer and share their resources, data, and applications.

A computer network can be classified based on their sizes. A computer network is of four types. They are:

LAN(Local Area Network)

PAN(Personal Area Network)

MAN(Metropolitan Area Network)

WAN(Wide Area Network)

Learn more from

https://brainly.com/question/14200752

________ is a group meeting-based process for requirements collection. a. Reverse engineering b. Joint application design c. Human-computer interface d. Computer-aided design e. Total ownership

Answers

Answer:

a) reverse engineering

One of the difficult things about working in game design is that while there are many different roles, most of them only match one specific personality type.
True
False

Answers

Answer:

it's false

Explanation:

they don't match to personalities

The Internet provides access to Internet information through documents including text, graphics, audio, and video files that use a special formatting language called HTML.

Answers

Answer:world wide wev

Explanation:

Most general-purpose applications use a(n) ________ that displays graphical elements called icons to represent familiar objects.

Answers

A general purpose application is often called a 'off-the-shelf'. It is a kind of software that one can use at home and school. Most general-purpose applications use a graphical user interface that displays graphical elements called icons to represent familiar objects.

The graphical user interface is simply defined as a type of user interface that gives users permission to interact with electronic devices via the aid of graphical icons and audio indicator such as primary notation.

General purpose application software is simply defined as a type of application that is used for different kind of tasks.

It is not known to be able to perform more than one function. For example, a word processor.

Learn more from

https://brainly.com/question/2919813

Project: On Assignment as a Web Developer
Assignment Directions:

Create a web page for a fictitious company: Widgets Inc. has hired you to make a mock-up for their new website. They are on a budget and only want to have a presence on the Internet. They do not need any fancy bells and whistles. They have sent you an email message with the basic parameters of the site.

The site should have at least three pages. They should include the landing page (commonly named index.htm), a contact page, and a "Meet the Company" page.
Each page should have an identical header containing the company name and motto: "We make widgets fun!"
Each page must include navigation back to the home page (without needing to use the Back button on the browser).
All font styles and alignment must be performed with inline CSS.
The company mascot is a dog, but there is no logo provided in this project. Any picture of a dog will do. Make sure it is prominently displayed on each page.
Each page should display in a web browser with a title.
All employees on the "Meet the Company" page can be random people's photos from the Internet. Please include Jack Sprat, President, Tom Thumb, Vice President, Sally Flag, Treasurer, and Monty Fuller, Secretary.
All text for these pages can be fake. See this website to create filler paragraphs.
Make up email addresses, but use the mail to: command as a hyperlink and display the person's name and not the actual address.
Each page should have a link to the other pages.
Link to at least three remote web pages. One of these should be formatted in an iframe.
The main page should have a sample product table including the following information:
Name Size Color Lead time Price Discount (for 10)
W-1 1X1 Blue 1 week $200.00 10%
R-2 2X2 Green 1 week $1,200.00 15%
D-2 2X3 Red 2 weeks $12,000.00 20%
Assignment Guidelines:

Projects will be assessed on following the requirements and style. Use color (creatively), at least two typefaces, headings, bold and italics, images, background colors, and so on to make your pages.

Submission Requirements:

Standard HTML

Question # 1

File Upload

Ensure that you fulfill all requirements, then upload your final web page project.

Answers

Answer:

It is not possible to upload files .html files here

​A(n) ________ is an excellent tool for representing a​ system's component processes and the flow of data among them.

Answers

A(n) DFD is an excellent tool for representing a system's component processes and the flow of data among them.

Which animation category provides custom animations for objects on the slide?

*it's d. motion paths

Answers

Answer:

d. Motion Paths

Explanation: is correct. post protected

poob bn vbyfcfgxfc jghjg jhgh

Answers

Answer:

Ploob was a monster employed at Horville's Hut of Horrors. He looked like a small green ball with a long tube-like nose and hair along his spine.

Explanation:

5. The Shape Fill drop-down menu is used to

A b or c or d

Answers

Answer:

Change the color of the shape.

Explanation:

In the sentence, you must look at keywords, like "Fill" and "Shape".

The fact that it said shape fill means the tool would fill the inside of a shape.

Make sure to look at the definition of keywords to figure out what they mean.

Therefore, "Change the color of the shape" would be the correct answer.

-kiniwih426

Can you make a phone app with angular?.

Answers

Answer:

yes

Explanation:

Tamara is writing a program to organize students in a class and needs to use operators to organize student grades, then compare the results of that to each other. What kinds of operators does Tamara need to use for each step?
Tamara needs to use
operators to organize the students' grades, then
operators to compare the results.

Answers

Answer:   you said "Tamara needs to use

operators to organize the students' grades, then

operators to compare the results."

i think your right

Explanation:

sounds right.

Read what is in the commets.

Answers

Answer:

I'm a little confused on what you are asking, could you please explain.

1.Write a C++ program that allows the user to enter the phrase "I am smart". Output the first letter and last letter of the phrase using string properties.

2.Write a C++ program to output the following values after they are loaded into an array: 67, 45, 12, 89, 46, 88 and 43.
PLS Help they are different questions

Answers

Answer:

1)

string value;

cout << "type I am smart";

cin >> value; // get user input from the keyboard

2)

int num1 = 67;

int num2 = 45;

int num3 = 12;

int num4 = 89;

int num5 = 46;

int num6 = 89;

int num7 = 46;

int num8 = 88;

int num9 = 43;

int numbers [ ] = {num1,num2,num3,num4,num5,num7,num8,num9} ;

//to load it as a function

int main ()

{

for ( n=0 ; n<5 ; n++ )

{

result += numbers[n];

}

cout << result;

return 0;

}

The C++ programs are illustrations of arrays and strings

The program 1

The program written in C++ is as follows:

#include<iostream>

using namespace std;

int main(){

   //This declares the string

   string myStr;

   //This gets the input

   cin>>myStr;

   //This prints the first and the last index elements

   cout<<myStr[0]<<" "<<myStr[myStr.length()-1];

   return 0;

}

The program 2

The program written in C++ is as follows:

#include<iostream>

using namespace std;

int main(){

   //This initializes the array

   int myArr [] = {67, 45, 12, 89, 46, 88, 43};

   //This prints the array elements

   for(int i = 0; i<7;i++){

       cout<<myArr[i]<<" ";

   }

   return 0;

}

Read more about arrays and strings at:

https://brainly.com/question/15683939

#SPJ2

A programmer wants to write code that directly accesses the computer’s hardware. Which is the best type of language for the programmer to use?.

Answers

Answer:

Assembly is the programming language that directly accesses the computer’s hardware.

Write a program to output 3 lines of text with the following information:
Student's first and last name:
Class:
Born in:
Answer

Answers

Answer:

C LANG

#include <stdio.h>

// function main begins program execution

int main( void )

{

printf( "student's first name" );

} // end function main

PYTHON

student's name=''

born_date=''

class=''

print ('')

Explanation:

create an sql database rows and Columns then use sql commands to call any specific data if so :

(you have a complet database of students data)

SELECT born_date

FROM students

//(Call all students born_date )

//you can specify

********,*********

to create an sql table

CREATE TABLE students (

name char,

born_date int,

class int,

);

Help please match them if you just put a link or say “I don’t know but thanks for the points” I’ll report your answer and you won’t get the brainliest

Answers

Answer:

Input: The user clicks a button

Output: A song is played

User interface: A screen with buttons, images, and text

Explanation:

What is the difference between the dom api and the html dom api.

Answers

The DOM-core is the object model that is common for all XML documents (including HTML) with elements and attributes. The HTML-DOM is an extension of the core DOM with more specific interfaces for the various HTML elements.

Can I get help with making this code and no importing please

Answers

Use code #cam2! For more reassurance o your code

PLEASE HELP ME

(b) When a computer systems RAM becomes full it can use virtual memory.
Explain what happens if the computer does not have any virtual memory.

Answers

Answer:

it won't be able to run

Explanation:

because computer runs on physical memory

If a computer does not have any virtual memory, the consequences of running out of physical RAM can be quite problematic.

When the RAM becomes full, the operating system relies on virtual memory as a way to supplement the physical memory shortage. Without virtual memory, the system would have no way to manage or accommodate the excess data that needs to be stored temporarily.

As a result, the computer would likely start experiencing severe slowdowns, freezing, or crashing when attempting to run applications that require more memory than is available.

In extreme cases, the system might even become unresponsive or display error messages indicating a lack of memory. Virtual memory acts as a safety net, allowing the computer to continue functioning by utilizing a portion of the hard drive as temporary memory storage when physical RAM is exhausted.

Without this essential feature, the computer's ability to multitask and handle memory-intensive tasks would be severely hindered.

Learn more about virtual memory, click;

https://brainly.com/question/30756270

#SPJ3

it is possible to be logged into a wi-fi network that does not have internet access.

Answers

Answer:

yes it is possible. it'll take some work tho

Explanation:

you would have to bypass the security and disable the proxy and go through the firewall and do some other things to access it

How to turn robot voice like real human voice.

Answers

Go in front of the mirror and act like robot and talk ,there you have a robot voice like real human voice

How to emit from jquery in angular 8.

Answers

Answer:

idek what you just said

W]hen a cryptographic system is used to protect data confidentiality, what actually takes place?

Answers

Answer: the Engine

Explanation:

once the engine take place its moves and goes faster

the pathway through which an electric signal moved between devices is known as what?

Answers

The answer would be electric Circuit or just circuit!

Which process refers to the process of translating between a set of private addresses inside a network and a set of public address outside the network

Answers

Answer:

The process of translating between a set of private addresses inside a network and a set of public addresses outside the network is called

IP pulling through use of a subnet mask bypass

As a game designer, your goal in game design is to get your players to fell like your game is the whole world. You want your players to obtain a state of deep engagement with the game that allows them to fully invest their imagination in the game's artificial world. If you successfully accomplish this, what have you mastered?

roguelike state

second person perspective

player immersion

seamless movement

Answers

My Answer:

Player Immersion

Explanation:

I love video games, so this is something I am also looking for. Player Immersion will successfully draw the player into the game, seamlessly hooked to it. In order to make this possible, focus on the big details, like the setting, the music, and the plot.

Setting: Must be immersive, big, and beautiful.

Music: Must be beautiful, grand, and can possibly get stuck in your head.

Plot: Must be plausible. Don't make a plot that doesn't tie into the game.

These are things that will definitely draw in your player, hence, the answer is player immersion.

Hope this helps!

Player immersion because it tells u right there

If the disaster requires actions offsite from the primary infrastructure, it is under the jurisdiction of__________.

Answers

Answer:

Business continuity

Explanation:

The disaster is affecting business functions and needs to be urgently remedied.

a ________ uses electronic memory and has no motors or moving parts.

Answers

Answer:

a to uses electronic memory and has no motors or moving parts.

Explanation:

brainliest me and follow ty

alannah just purchased a smart lock for her front door. how can she connect her lock to the internet so she can control the lock when she’s away from home?

Answers

Answer: cellular connection

She can connect her lock to the internet so she can control the lock when she’s away from home by Bluetooth connection. The correct option is D.

What is a Bluetooth connection?

Bluetooth technology enables devices to communicate with one another without the use of cables or wires.

Bluetooth operates on a short-range radio frequency, and any device equipped with the technology can communicate as long as it is within the required distance.

Some devices can be connected to your phone via Bluetooth without the use of a cord.

After the first time you pair a Bluetooth device, your devices may pair automatically. If your phone is connected to something via Bluetooth, a Bluetooth icon will appear at the top of the screen.

Alannah can connect her lock to the internet and control it via Bluetooth while she is away from home.

Thus, the correct option is D.

For more details regarding Bluetooth connection, visit:

https://brainly.com/question/28258590

#SPJ2

Your question seems incomplete, the missing options are:

A. network cable

B. cellular connection

C. power cable

D. Bluetooth connection

Other Questions
A 36 year old woman on chronic cyclosporine treatment for bilateral lung transplantation visits the emergency department complaining of extreme headache, nausea and vomiting. Her exam is notable for BP 239/165, normal cardiac exam, bibasilar pulmonary rales, and 1 lower extremity edema. EKG showed asymmetric inverted T-waves in I, aVL, and V4-6. In an effort to acutely control her blood pressure, which of the following is TRUE?a. Discharge her home with prochlorperazine and close instructions to return if her symptoms worsen.b. Observe for 6 hours, administer acetaminophen and normal saline, and discharge home if she feels better.c. Perform a lumbar puncture to rule out the possibility of subarachnoid hemorrhage.d. Consult a neurologist for evaluation of atypical migraines.e. Observe for 6 hours and then obtain a repeat CT scan; if normal, discharge home. This drawing of the field lines between these two charged plates is correct.True or false RiddleA man spits in a empty swimming pool and eventually it fills to the top with saliva. how? Is it 1,2,6,10,14 Please explain Increase 80 by 12.5% please help me calculation completing square?x+2x-24=0? Discuss a contemporary artist (in any genre) who you think has been influenced by what might be considered an unusual source of inspiration P = y + 2z find the value of P if y = 3 and z = -4 Mindy can a drive a total of 375 miles on a full tank of gas, which is 25 gallons. Based on this information, what is the constant of proportionality?251537510 How did slavery develop in america in your own words. 5-10 sentences What are the solutions to the quadratic function. f(x) = x^2+4x-12 14. Write a statement that makes a claim about arrangements of electrons and propertieswithin a family of elements. 2/3x + 7 = -1/5x + 3 2x-4>-14 or 2x-4\leq10 sunog na nagsulong sa pagtatag ng pamahalaang sibil sa pilipinas(G O S U S N O P O S E R)pasagutan po agadThank you po what is the difference between family and other social groups? Expand the function.f(x) = (2x + 3)4 Paetan pays $10.73 for 3.7 pounds of cherries. What is the cost for 1 pound of cherries? make a 5 minutes story on memory Ree to get the money for the tickets