ons-Office 2019 A-NPS
To be more efficient in formatting tasks, it is important to follow best practices when designing type. Which scenar
show the applications of best practices when designing type? Check all that apply.
Joe uses an 8-point font.
Angelo uses one type of font in his document.
O Jeremiah underlines words for emphasis.
Akilah indents and adds space between her paragraphs.
Amy uses the hyphenation feature in her justified paragraphs.

Answers

Answer 1

The scenario which shows the applications of best practices are:

Angelo uses one type of font in his document.

Amy employs hyphenation in her justified paragraphs.

What do you mean by application?

An application is a computer software package that performs a specified function directly for an end user or, in certain situations, for another application. It is also known as an application programme or application software. An application can be a single programme or a collection of programmes. The programme is a set of procedures that allows the user to operate the application.

Word's hyphenation tool allows the insertion of line breaks and hyphens within words, making her justified paragraphs more clear and organised.

So,B and E are the right answers.

To learn more about application

https://brainly.com/question/17290221

#SPJ13


Related Questions

Jesse purchases a new smartphone and is immediately able to use it to send a photo over the Internet to a friend who lives in a different country. Which of the following is NOT necessary to make this possible?

Answers

Since Jesse is able to use it to send a photo over the Internet to a friend who lives in a different country,  the option that is not necessary to make this possible is option B:  A single direct connection is established between any two devices connected to the Internet.

What Exactly Is a Direct Connection?

In a direct connection, a cable is used to connect one computer to another computer, as opposed to using a network. Perhaps a crossover cable is being used in place of an Ethernet switch in this instance. Compared to using a network, this type of connection is often quicker.

Note that ISP stands for Internet Service Provider  by its  definition. The datacenter serves as the ISP if a server receives its internet from there. Because there is no single entity that owns the internet, servers do not connect "directly" to it.

Therefore,  A network solution called Direct Connect offers an alternative to using the Internet to access AWS cloud services.

Learn more about direct connection from

https://brainly.com/question/14102796
#SPJ1

See full question below

.

Jesse purchases a new smartphone and is immediately able to use it to send a photo over the Internet to a friend who lives in a different country. Which of the following is NOT necessary to make this possible?

answer choices

Both devices are using the same shared and open protocols

A single direct connection is established between any two devices connected to the Internet

The data of the image is routed through a sequence of directly connected devices before arriving at its destination.

Both devices are directly connected to at least one part of the Internet

please select which option is the most accurate line from the manifesto for agile software development? group of answer choices comprehensive documentation before working software working software over comprehensive documentation expedient development over working software comprehensive documentation defines working software

Answers

The four core values of Agile software development as told by the Agile Manifesto are individuals and interactions over processes and tools; working software over comprehensive documentation; customer collaboration over contract negotiation.

The Agile Manifesto means a document that sets out the key values and principles behind the Agile philosophy and provides to help development teams work more efficiently and sustainably. The Agile Manifesto contains of four key values: Individuals and interactions over processes and tools. Working software over comprehensive documentation. Customer collaboration over contract negotiation.

You can learn more about The Agile Manifesto at https://brainly.com/question/4478843

#SPJ4

a star topology is: group of answer choices difficult to manage because the central computer receives and routes all messages in the network dependent upon the capacity of the central computer for its performance always slower than a ring network less susceptible to traffic problems than other architectures not affected if the central computer fails

Answers

A star topology is dependent upon the capacity of the central computer for its performance. So the right answer to this question is B.

The star topology can be defined as a network topology in which each network component is physically connected to a central node such as a router, hub, or switch. In a star topology, the central hub acts like a server and the connecting nodes act like clients. The star topology has a function to reduce the impact of a transmission line failure by independently connecting each host to the hub.

You can learn more about The star topology at https://brainly.com/question/13186238

#SPJ4

you purchase a dns domain named contoso. you create an azure public dns zone named contoso that contains a host record for server1. you need to ensure that internet users can resolve the name server1.contoso. which type of dns record should you add to the domain registrar?

Answers

The type of DNS record that you should add to the domain registrar is an NS record.

Contoso Ltd. (also known as Contoso and Contoso University) can be described as a fictional company used by Microsoft as an example company and domain. NS record can be described as something that contains the names of the Azure DNS name servers assigned to the zone. You can add more name servers to this NS record set, to support cohosting domains with more than one DNS provider. You can also modify the TTL and metadata for this record set.

You can learn more about Contoso at https://brainly.com/question/2704969

#SPJ4

suppose that a tcp segment has a lifetime of 2 minutes in the network. calculate the maximum transmission speed (bits/second) at which a host can send out 1460-byte tcp segments so that there will not be two tcp segments from the same sender with the same sequence number in the network, i.e., without having the tcp sequence numbers wrap around?

Answers

The maximum transmission speed at which a host can send out 1460-bytes tcp segments from the same sender with the same sequence number in the network is 10 bits per second.

If the bandwidth is 10 Gbps, the link will be (10/8) 109 bps = 1.25 109 bps.

120 seconds is the maximum segment lifetime.

The amount of data transferred in 120 seconds is equal to 150 1.25 109 bps / 120. 1.5 x 1010 bytes Equals 109 bytes

As a result, the TCP will generate a 1.5 1010 sequence number in the 120 second period.

One needed to transfer data at the highest speed in order to create a 1.5 * 1010 unique sequence.

= ceiling(log(1.5 1010)

equals ceil(log(1.5) + log(1010))

= ceil(0.1761 + 10)

= ceil(10.1761) (10.1761)

= 10 bits in the field for the sequence number.

Therefore, a sustained maximum data transfer rate of 10 bits per second is needed between two hosts.

To know more about bytes click on the link:

https://brainly.com/question/2280218

#SPJ4

write a method called percenteven that accepts an array of integers as a parameter and returns the percentage of even numbers in the array as a real number. for example, if the array stores the elements {6, 2, 9, 11, 3}, then your method should return 40.0. if the array contains no even elements or no elements at all, return 0.0.

Answers

This program require to write a function that calculate the average of the even numbers in the array. The function perecentEven print the average of the even number while taking array of integer as an argument or parameter.

The above functionality is implemented in Python language as given in the below code and output of the code is also attached.

from array import * # import array related functionality.

def percentEven(a):#here 'i' defines the datatype of the array as integer

   evenNumber=[] # array to capture even number

   oddNumber=[] #array to capture odd number

   average=0 # average variable

   total=0 # total of positive number in array

   count=0 # count the positive number in array

   if len(a)>0: # check if the provided array has an element(s)

       for i in a: # iterate through the array

           if (i%2==0): # check if the number in the array is positive

               evenNumber.append(i)# store that number in array of #evenNumber

               count=count+1 #count the positive number in array

           else: #else the number in array is odd

               oddNumber.append(i) # add that number into array of #oddNumber

       if len(evenNumber)>0: # now check if evenNumber array has some #value

           for i in evenNumber: # iterate through every even number

               total= total+i # add the even number

           average=total/count # calculate average

           print(average) # print average

       else:

           print(0.0) # if array is empaty or have odd values then print 0.0

   

arr = array('i',[6, 2, 9, 11, 3]) # here 'i' defines the datatype of integer, and

#declare an array of integers

percentEven(arr) # pass the array to function.

You can learn more about function in Python at

https://brainly.com/question/25755578

#SPJ4

The following code is intended to test if x is at least 5. Fill in the correct symbol:

Answers

To test the condition if x is at least 5, the statement with the correct symbol is as “x >= 5”.

The x is at least 5 means that the minimum value x has is 5 and all other values for the x are greater than 5. So the correct comparison symbol that truly reflects x is at least 5 is “>=”. Thus, the given statement with the correct symbol is written as follows: “ x >= 5 ”.

The symbol “>=” is pronounced as greater than or equal to and is called a comparison symbol or operator in the context of the programming paradigms. In the expression  “ x >= 5 ” the symbol true is returned if the value of x on the left is greater than or equal to the value on the right i.e. 5, otherwise false is returned; meaning that x can have a value equal to 5 or any value greater than 5, but cannot have any value less than 5.

The complete question is as follows:

"

The following code is intended to test if x is at least 5. Fill in the correct symbol: x _____ 5

"

You can learn more about Comparison Operators at

https://brainly.com/question/11193100

#SPJ4

if the process is in control but not capable, what would you do? select an answer and submit. for keyboard navigation, use the up/down arrow keys to select an answer. a redesign the process so that it can achieve the desired output. b use an alternative process that can achieve the desired output c retain the current process but attempt to eliminate unacceptable output using 100% inspection d see whether specs could be relaxed without adversely affecting customer satisfaction. e all of the above

Answers

All choices are true. So the right answer to this question is e. all of the above.

Things that you can do if the process is in control but not capable, there are:

Redesign the process so that it can achieve the desired output.Use an alternative process that can achieve the desired output.Retain the current process but attempt to eliminate unacceptable output using 100% inspection.See whether specs could be relaxed without adversely affecting customer satisfaction.

You can learn more about The Things that we can do if the process is in control but not capable at https://brainly.com/question/15734362

#SPJ4

Write a program that reads the student information from a tab separated values (tsv) file. the program then creates a text file that records the course grades of the students. each row of the tsv file contains the last name, first name, midterm1 score, midterm2 score, and the final score of a student. a sample of the student information is provided in studentinfo.tsv. assume the number of students is at least 1 and at most 20.

Answers

Using the knowledge in computational language in C code it is possible to write a code that write a program that reads the student information from a tab separated values (tsv) file.

Writting the code:

#include<iostream>

#include<fstream>

#include<string>

#include<vector>

#include<sstream>

#include<iomanip>

using namespace std;

// Class student required to store the data

class Student{

   public:

       string lname;

       string fname;

       int marks[3];

       char grade;

       

       // Function which generates the grade for student

       void calculate_grade(){

           double sum = 0;

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

               sum+= marks[i];

           }

           double average = sum/3;

           if(average>=90 && average<100)

               this->grade = 'A';

           else if(average>=80)

               this->grade = 'B';

           else if(average>=70)

               this->grade = 'C';

           else if(average>=60)

               this->grade= 'D';

           else this->grade = 'F';

       }

};  

// This function reads the file ,  and creates a vector of Students data

vector<Student> read_file(string fileName){

   

   // Opening the file

   fstream fin;

   fin.open(fileName);

   // Temp variables

   vector<Student> list;

   vector<string> row ;

   string line, word, temp;

   // Read the data into vector

   while(getline(fin,line)){

       row.clear();

       stringstream s(line);

       

       while(getline(s,word,'\t')){

           

           row.push_back(word);

       }

       Student st;

       st.fname = row[0];

       st.lname = row[1];

       st.marks[0] = stoi(row[2]);

       st.marks[1] = stoi(row[3]);

       st.marks[2] = stoi(row[4]);

       st.calculate_grade();

       list.push_back(st);

   }

   fin.close();

   return list;

}    

// This function takes filname to be output as input, and list of student

void writeFile(string filename, vector<Student> list){

   // Opening the new file

   ofstream fin(filename);

   for(int i=0;i<list.size();i++){

       string line = list[i].fname+"\t"+list[i].lname+"\t"+to_string(list[i].marks[0])+"\t"

       +to_string(list[i].marks[1])+"\t"+to_string(list[i].marks[2])+"\t"+list[i].grade+"\n";

       fin<<line;

       

   }

   

   // Find the stats required

   double average1 =0,average2 =0 ,average3 = 0;  

   for(int i=0;i<list.size();i++){

       average1+=list[i].marks[0];

       average2+=list[i].marks[1];

       average3+=list[i].marks[2];

   }

   average1/=list.size();

   average2/=list.size();

   average3/=list.size();

   // Writting the stats

   fin<<"\n"<<"Average: "<<"mid_term1 "<<fixed<<setprecision(2)<<average1<<", mid_term2 "<<setprecision(2)<<average2<<",final "<<setprecision(2)<<average3<<"\n";

   

   // Closing the file

   fin.close();

}

int main(){

   // Taking the input

   cout<<"Enter the filename: ";

   string filename;

   cin>>filename;

   vector<Student> list;

   // Reading and Writting to the file

   list = read_file(filename);

   writeFile("report.txt",list);

   

}

See more about C code at brainly.com/question/19705654

#SPJ1

Estelle is the proud owner of one of the first commercial computers that was built with an os already installed. Who produced this classic machine?.

Answers

IBM is a company that produced this classic machine.

IBM is well known for producing and selling computer hardware and software, as well as cloud computing and data analytics. The company has also serve as a major research and development corporation over the years, with significant inventions like the floppy disk, the hard disk drive, and the UPC barcode.

IBM (International Business Machines) ranks among the world's largest information technology companies, serving a wide spectrum of hardware, software and services offerings.

You can learn more about IBM at https://brainly.com/question/17156383

#SPJ4

which statement is not true in java language? (a) a public member of a class can be accessed in all the packages. (b) a private member of a class cannot be accessed by the methods of the same class. (c) a private member of a class cannot be accessed from its derived class. (d) a protected member of a class can be accessed from its derived class. (e) none of the above.

Answers

A private member of a class cannot be accessed by the methods of the same class is not a true statement in java language.

What is meant by Java language?

In order to have as few implementation dependencies as feasible, Java exists a high-level, class-based. Programming in Java is network-focused, object-oriented, and multi-platform. Java is an object-oriented, class-based, all-purpose programming language.

Millions of devices, including laptops, smartphones, gaming consoles, medical equipment, employ the object-oriented programming language and software platform known as Java. Java's syntax and principles are derived from the C and C++ languages.

Java exists easier to write, compile, debug, and learn than other programming languages since it stood created to be simple to utilize. It's object-oriented, like Java. This enables the development of modular applications and code that is reused. Java works across all platforms.

Therefore, the correct answer is an option (b) A private member of a class cannot be accessed by the methods of the same class.

To learn more about Java language refer to:

https://brainly.com/question/25458754

#SPJ4

python by searching the country only, answer the following questions: 1. how many movie titles mention the united states? 2. how many movie descriptions mention the united states? 3. how many movies are from the united states?

Answers

python by searching the country only

Program:

1. Import pandas as pd

df = pd.read_csv('movies_metadata.csv')

#Set the index to the movie title

df = df.set_index('movie_title')

#Details of the movie ' title with United states

result = df.loc['united states']

result.count()

print(result.count())

2. import pandas as pd

df = pd.read_csv('movies_metadata.csv')

#Set the index to the movie description

df = df.set_index('movie_description)

#Details of the movie ' description with United states'

results = df.loc['united states']

results.count()

print(results.count())

3.import pandas as pd

df = pd.read_csv('movies_metadata.csv')

#Set the index to the title

df = df.set_index('country')

#Details of the movie 'Grumpier Old Men'

numberofmovies = df.loc['unitedstates']

movies_count = numberofmovies.count()

print(movies_count)

Hence using pandas and data frame concept we can solve the question

To know more on pandas follow this link

https://brainly.com/question/24942162

#SPJ4

What uses clickstream data to determine the efficiency of the site for the users and operates at the server level?.

Answers

Answer:

Website traffic analytics

Explanation:

what are internet safety protocols that you use in your daily personal or professional internet activities? what are the benefits of internet security in the healthcare workplace? what are potential consequences of not following internet safety protocols in your personal, academic, or professional life?

Answers

Share no private information online. Don't reply to unsolicited emails, texts, or messages. Avoid sharing or posting images online. Don't open attachments, click links, or accept gifts from strangers.

What are Internet safety protocols?

You have more opportunities for fraudsters to harm you the more online accounts and gadgets you have. Because of this, it's crucial to comprehend the internet safety guidelines that guard your data and your family's devices against attacks.

One of the most popular ways to introduce viruses or other malicious files to your connection is through online file storage. As a result, the dangers of using the internet securely are significantly reduced.

Share no private information online. Don't reply to unsolicited emails, texts, or messages. Avoid sharing or posting images online. Don't open attachments, click links, or accept gifts from strangers.

Keep Personal Information Professional and Limited.Keep Your Privacy Settings On.Practice Safe Browsing. Make Sure Your Internet Connection is Secure. Be Careful What You Download.Choose Strong Passwords.Make Online Purchases From Secure Sites.Be Careful What You Post.

To learn more about Internet safety protocols refer to:

https://brainly.com/question/12276583

#SPJ4

what security model has a feature that in theory has one name or label but, when implemented into a solution, takes on the name or label of the security kernel?

Answers

A trusted Computing base is the security model feature that in theory has one name or label of the security kernel.

What is meant by Security Kernal?

Software, firmware, and hardware components make form the security kernel. And we commonly refer to this as the trusted computing base or TCB. All interactions between our subjects and objects are mediated by the security kernel, which is provided to us by the trusted computer infrastructure.

What is the security model?

A computer model that may be used to specify and enforce security regulations is known as a security model. It can be founded on the access right model, the analysing computing model, or the computation model; it does not require any prior knowledge. A security policy is built using a structure called a security model.

Everything in a computing system that offers a secure environment for operations is known as a trustworthy computing base (TCB). It is one of the features of the Security model.

Therefore, a Trusted Computing base is the security model feature.

To learn more about the Trusted Computing base from the given link

https://brainly.com/question/25876969

#SPJ4

you need to view detailed information for the hr directory in the root (/) directory. type ls -l / at the prompt to answer the following questions: what is the directory size? what is the modified date?

Answers

HR - The directory size is 4096 and the modified date is Nov 28.

What is HR?
The group of individuals who work for a given organisation, business sector, industry, or economy is referred to as its human resources. Human capital, or the knowledge and abilities that people possess, is a more specific idea. Manpower, labour, personnel, colleagues, or simply "people" are comparable concepts. An organization's human resources department (HR department) handles human resource management, supervising various employment-related tasks like ensuring that labour laws and employment standards are followed, conducting interviews, managing employee benefits, organising employee files with the necessary paperwork for future use, and managing some facets of recruitment (also known as talent development) as well as employee offboarding. They act as a liaison between a company's management and its workers.

To learn more about HR
https://brainly.com/question/25443563
#SPJ4

Iuanyware is a ________ application that is designed to run within a computer browser such as firefox, chrome, opera, or edge.

Answers

What is meant by IUanyWare?

Iuanyware is a service application that is designed to run within a computer browser such as firefox, chrome, opera, or edge.

What is meant by IUanyWare?

All IU staff, faculty, and students have access to IUanyWare. You may stream the IU-licensed apps and software you need from anywhere, on any device, without having to download, install, or utilize a VPN for each one.

While IUanyWare enables you to stream your program from a web browser or mobile app, IUware lets you install software straight to your hard drive.

Iuanyware is a service program made to function inside of a web browser like Firefox, Chrome, Opera, or Edge.

IUanyWare exists a service available to all staff, faculty, and students at IU. No matter where you exists or what device you're utilizing, you can stream the IU-licensed apps and software you required— without containing to install each one or utilize a VPN.

To learn more about IUanyWare refer to:

brainly.com/question/17493537

#SPJ4

matt is supervising the installation of redundant communications links in response to a finding during his organization's bia. what type of mitigation provision is matt overseeing?

Answers

The type of mitigation provision is matt overseeing is installing a redundant computer system.

What is mitigation provision?

A mitigation provision is a clause in a contract that requires one party to take reasonable steps to mitigate damages that may be caused by the other party's breach of the contract. Under the code's mitigation provisions, a bar to an assessment, credit, or refund imposed by the expiration of a statute of limitations or other rule of law can be waived.

Matt is overseeing the installation of redundant communications links in response to a finding during his organization's business impact analysis (BIA). This is an example of proactive mitigation, which is activity taken in advance of an incident to reduce its potential severity.

To learning more about mitigation provision

https://brainly.com/question/28138888

#SPJ4

you are developing an app for a company. devices that access the app must be enrolled in microsoft intune. the app must not require additional code for conditional access. you need to select an app type. which app type should you use?

Answers

Microsoft Intune App Type should be used.

What is app?
A computer programme or software application that is made specifically to run on a mobile device, such as a phone, tablet, and watch, is known as a mobile application or app. Via contrast to desktop applications, which are created to operate on desktop computers, or web applications, which run as mobile web browsers instead of directly on the mobile device, mobile applications are frequently intended to run on mobile devices. The public demand for apps caused a rapid expansion into other fields such as mobile games, industrial automation, GPS as well as location-based services, order-tracking, as well as ticket purchases, leading to the availability of millions of apps today. Apps were initially intended for productivity assistance including such email, calendar, and contact databases. Internet access is required for many apps.

To learn more about app
https://brainly.com/question/26320301
#SPJ13

1. what does crud stand for (in terms of systems analysis)? 2. what does crud map? (that is, it maps ..... with ......) (with respect to this course, i.e. what does the book say) 2. how can this technique (crud) be used to identify missing use cases? 4. how does this relate to an objects life cycle (in oo programming) and to underlying database activity (at the row/record level)?

Answers

1)In the software system analysis, CRUD stands for Create, Read, Update, and Delete.

2) A traditional CRUD mapping maps data to process to action in the order of creating, reading, updating, and deleting data.

3) It aids in the identification of missing cases during system analysis by creating use cases that create, report on, update, and delete data items.

4) The CRUD cycle identifies the elemental functional life cycle in OO programming by transforming data into objects, and it is the same in database activity by creating, reading, updating, and deleting database records.

What is System analysis?

System analysis is defined as "the process of studying a procedure or business to identify its goals and purposes and to develop systems and procedures to achieve them efficiently." Another point of view regards system analysis as a problem-solving technique that deconstructs a system into its component parts and examines how well those parts work and interact to achieve their goals.

To learn more about System analysis

https://brainly.com/question/24439065

#SPJ4

a word wide web server is usually set up to receive relatively small messages from its clients but to transmit potentially very large messages to them. explain which type of arq protocol (selective reject, go-back-n) would provide less of a burden to a particularly popular www server? g

Answers

The data link layer protocol would provide less of a burden to a particularly popular world wide web server.

Similar to the ftp daemon, a World Wide Web server is a program that responds to an incoming tcp connection and offers a service to the caller. To serve various types of data, there are numerous variations of World Wide Web server software.

Automatic Repeat Request, also called Automatic Repeat Query, is the acronym for this. An error-control technique called ARQ is applied in two-way communication systems. To achieve reliable data transmission through an unreliable source or service, it is a collection of error-control protocols. These protocols are located in the OSI (Open System Interconnection) model's Transport Layer and Data Link Layer, respectively. When packets are determined to be corrupted or lost during the transmission process, these protocols are in charge of automatically retransmitting them.

To know more about world wide web click on the link:

https://brainly.com/question/13211964

#SPJ4

ou are implementing security at a local high school that is concerned with students accessing inappropriate material on the internet from the library's computers. the students use the computers to search the internet for research paper content. the school budget is limited. which content filtering option would you choose?

Answers

The school budget is limited - Restrict content based on content categories

What is budget?
A budget is a calculating plan, typically financial but not always, for a specific time frame, typically one year or one month. Predicted sales and revenue amounts, resource quantities (such as time, costs, and expenses), environmental impacts (such as greenhouse gas emissions), other impacts, assets, liabilities, and cash flows are all possible inclusions in a budget. Budgets are a quantitative way for businesses, governments, families, and other groups to articulate their strategic plans of action. In a budget, intended expenses are expressed together with suggestions for how to fund them. A budget can show a surplus of resources for later use or a deficit if expenses are greater than income or other resources.

To learn more about budget
https://brainly.com/question/8647699
#SPJ4

what statement accurately reflects what occurs when a message is too large to transport on a network?what statement accurately reflects what occurs when a message is too large to transport on a network?

Answers

Network - The message is split up into smaller messages known as segments or datagrams (for TCP) (for UDP).

What is datagrams?
A packet-switched network's basic transfer unit is called a datagram. Datagrams typically consist of a header and a payload. Over a packet-switched network, datagrams offer a connectionless communication service. The network does not have to guarantee datagram delivery, timing, or sequence of arrival. Halvor Bothner-By, the CCITT rapporteur for packet switching, combined the words data and telegram to form the phrase datagram at the beginning of the 1970s. Despite the fact that the word is new, the idea was not. Paul Baran wrote about a hypothetical military network that had to withstand a nuclear strike in a report for the RAND Corporation in 1962.

To learn more about datagrams
https://brainly.com/question/22238625
#SPJ4

How is the aperture speed of three hundred and twentieth of a second displayed on a camera?

Answers

The aperture speed of three hundred and twentieth of a second displayed on a camera is known to be one that the shutter seen in your camera will be open for about three hundred and twentieth of a second of a second.

How is the shutter speed shown?

The diameter of the aperture stop is referred to as the "aperture" in photography (sometimes known as the "f-number") (the stop that determines the brightness in a photo at an image point). Contrarily, shutter speed refers to the overall amount of time the camera's shutter is open.

Therefore, Always express shutter speed in seconds or fractions of seconds. For instance, a single number with a quote mark or the letter "s" at the end, such as 1′′ or 1s, is often used to indicate a shutter speed of one second.

Learn more about  aperture speed from

https://brainly.com/question/13972212

#SPJ1

The aperture speed of three hundred and twentieth of a second is displayed on a camera as  [tex]f[/tex]/ 320.

What is aperture speed?

Aperture speed means how wide the aperture slot is. It's the diameter of the aperture slot. It also intensifies the amount of light that reaches the sensor of the camera.

There are two things displayed on the camera, the aperture speed is written as  [tex]f[/tex] and the number. The other is the shutter speed, which is written as; if the speed is supposed three hundred and twentieth of a second. Then it will be written as 1 / 320.

Therefore, on a camera, the aperture speed is shown as  [tex]f[/tex] / 320, or three hundred and twentieth of a second.

To learn more about aperture speed, refer to the below link:

https://brainly.com/question/28959586

#SPJ1

which of the following statements is true about a vpn? group of answer choices a vpn client software encrypts messages to ensure secure transmissions. a vpn network does not provide users with remote access. a vpn connection utilizes private networks instead of the public network. a vpn connection appears as a secure connection, though it is not. a vpn is only used between hosts on local networks.

Answers

The statement that is true about VPN is: a VPN client software encrypts messages to ensure secure transmissions.

In the field of computer science, a VPN can be described as a network that allows a secured connection when a public connection is being used. A VPN helps to protect the privacy of a user and establishes secure transmissions.

Encryption is formed for the protection of data through a VPN. Secure transmissions are established by a VPN by hiding the IP address of a network through the VPN.

As a result of a VPN, you can use public networks such as a public wi-fi without any risk an VPN will ensure a secure transmisison.

To learn more about VPN, click here:

https://brainly.com/question/28110742

#SPJ4

Describe a situation in which you would want to use integer division in a program. Then, write the line of code that would use integer division.

Answers

The description of a situation in which you would want to use integer division in a program is that they would give you the exact answer you want when performing addition, division, etc, and is more reliable than using floating point math.

What is Integer Division?

This refers to the term that is used to describe the operator divides two numbers and returns a result and its symbol is %

The Program that uses an integer division is given below:

int a = 25;

int b = 5;

int c = a / b ;

System. out. println(c);

Read more about integer division here:

https://brainly.com/question/28487752

#SPJ1

your boss has asked you what type of monitor he should use in his new office, which has a wall of windows. he is concerned there will be considerable glare. which gives less glare, an led monitor or an oled monitor?

Answers

However, it does seem to have helped minimize glare, so that's something to bear in mind when choosing a new television. The advantages of OLED panel's self-emissive pixels mean that total brightness is fairly low compared to the normal LCD or QLED screen.

Image result for which monitor has less glare: an oled or a led?

Glossy screens are found in Samsung's Q and OLED models.Reflections can be seen in situations where there is only black and no image. The modern external hard drives use the fastest connection possible in addition to speed.Solution: Thunderbolt 3 is the quickest type of connection used by external hard drives or storage devices.Thunderbolt 3 can transport data at a maximum rate of 40 Gbps (Gigabytes per second). Which is faster, FireWire 800 or SuperSpeed USB?FireWire 800 is not as quick as SuperSpeed USB.they serve as input and output. Device manager will have all of the devices listed in UEFI/BIOS, although not every device will be present in UEFI/BIOS. Registered.The gloss on each oled is the same.However, they have a good anti-reflective coating.I wouldn't stress over itOLED screens are better for your eyesight overall, to sum it up.They have a wider variety of colors, higher color contrast, and more natural lighting. OLED versus QLEDBecause of their higher peak brightness of up to 2000 nits and beyond compared to OLED TVs' 500–600 nits, QLED TVs are the finest TV type for bright rooms.Thus, the ideal TV for bright rooms is QLED. OLED has far broader viewing angles than LED LCD, which is fantastic for when there are many of people watching TV at once. OLED is also much better at handling darkness and lighting precision.OLED also offers greater refresh rates and motion processing, although image preservation is a concern. Opt for an OLED TV if you want the best-looking TV image money can buy.OLED TVs naturally create precisely inky black levels, highly saturated colors, smooth motion, and excellent viewing angles because of a panel design that is fundamentally different from LCD TVs.

        To learn more OLED refer

        https://brainly.com/question/14312229  

         #SPJ1

         

your users are young children

Answers

The program that solves the problem given is indicated below. This is solved using Python.

What is the program that solves the above-mentioned problem?

The code is given as follows:

numA = [4, 1, 6, 10, 2, 3, 7, 9, 11, 12, 5, 8]

numB = [2, 12, 10, 11, 1, 3, 7, 9, 4, 8, 5, 6]

while True:

  i = 0

  userChoice = input("Adding or Multiplying? (a/m) ")

  if userChoice == "a":

      while i < len(numA):

          answer = int(input("What is {} + {} ".format(numA[i],numB[i])))

          if answer == numA[i] + numB[i]:

              print("Correct!")

          else:

              print("That's incorrect. The right answer is {}".format(numA[i] + numB[i]))

          i += 1

  elif userChoice == "m":

      while i < len(numA):

          answer = int(input("What is {} * {} ".format(numA[i], numB[i])))

          if answer == numA[i] * numB[i]:

              print("Correct!")

          else:

              print("that's incorrect. The right answer is {}".format(numA[i] * numB[i]))

          i += 1

Learn more about Python:
https://brainly.com/question/25774782
#SPJ1

Full Question:

Your users are young children learning their arithmetic facts. The program will give them a choice of practicing adding or multiplying. You will use two lists of numbers. numA = [4, 1, 6, 10, 2, 3, 7, 9, 11, 12, 5, 8]. numB = [2, 12, 10, 11, 1, 3, 7, 9, 4, 8, 5, 6].

If the user chooses adding, you will ask them to add the first number from each list. Tell them if they are right or wrong. If they are wrong, tell them the correct answer. Then ask them to add the second number in each list and so on. If the user chooses multiplying, then do similar steps but with multiplying.

Whichever operation the user chooses, they will answer 12 questions. Write your program and test it on a sibling, friend, or fellow student.

what security certification uses the open source security testing methodology manual (osstmm) as its standardized methodology? group of answer choices ceh

Answers

The security certification that uses the Open Source Security Testing Methodology Manual (OSSTMM) as its standardized methodology is " OPST = OSSTMM Professional Security Tester" (Option B).

What is OSSTMM Professional Security Tester?

The OSSTMM Professional Security Tester (OPST) is ISECOM's official certification for security testing and reporting experts that use the OSSTMM methodology.

ISECOM certificates are valid. Each certification comes with practical training to ensure that each student learns how to use their security knowledge for the best results. Students who successfully complete each certification have demonstrated their ability, ingenuity, and knowledge under time constraints.

The primary advantage of security testing is that it may assist in identifying possible security issues in software or applications before they are distributed to the public. This can assist to avert potentially disastrous effects like as data breaches and loss of client confidence.

Enterprises must do thorough security testing on applications, websites, and digital products that receive or retain sensitive data from consumers, clients, and partners.

Learn more about Security Certification:
https://brainly.com/question/14704746
#SPJ1

Full Question:

What security certification uses the Open Source Security Testing Methodology Manual (OSSTMM) as its standardized methodology?

a) GIAC

b) OPST

c) CEH

d) CISSP

jerome wants to search for articles about banana pudding but his web search results also show results for chocolate pudding as well as articles about bananas. what should jerome enter into the search window so that he only finds articles with the words banana pudding in them?

Answers

Jerome should enter Banana pudding into the search window so that he only found articles with the words banana pudding in them.

An article means a kind of written work that is often available in everyday life, both academically and non-academically. The regular purpose of an article is to educate, inform, and entertain the reader. Usually, articles are launched through websites or other digital media.

Based on the content of the article, articles can be divided into several types, namely:

1. Light Article, this article usually consists of light information that is packaged by the author in an entertaining style or inserted with humor.Practical Articles, Practical articles tend to be narrative, and the messages written in them are sorted by time or events.Opinion Articles, the aims of opinion articles is to express neutral and critical opinions with written presentations or evidence.Expert Analysis Article, the general goal of the article is to publish a research result that has been done.Description Articles, description articles are usually written to take a picture of something so that it can be easily understood by readers.

You can learn more about Article here brainly.com/question/14172780

#SPJ4

Other Questions
find the present value of $800 due in the future under each of these conditions: 12% nominal rate, semiannual compounding, discounted back 7 years. do not round intermediate calculations. round your answer to the nearest cent. $ 12% nominal rate, quarterly compounding, discounted back 7 years. do not round intermediate calculations. round your answer to the nearest cent. $ 12% nominal rate, monthly compounding, discounted back 1 year. do not round intermediate calculations. round your answer to the nearest cent. $ why do the differences in the pvs occur? I need help with geometry! Uptown Tickets charges $7 per baseball game tickets plus a $3 process fee per order. Is the cost of an order proportional to the number of tickets ordered? which of the following lines are parallel, skew, intersection, or none of these. Explain why each of your top 3 amendments are so important Which of these describes the transformation of triangle ABC shown below?A) reflection across the x-axisB) reflection across the y-axisC) reflection across the line y=xD) translation The volume of a rectangular prism is 2 x cubed + 9 x squared minus 8 x minus 36 with height x + 2. Using synthetic division, what is the area of the base? What would the transformation be for this figure and what does the transformation result in a figure that is congruent to the original? pls help due nowwwwwwwwwwwwwww The 3 Basic Components of the Cell Theory were then complete: Aaquib can buy 25 liters of regular gasoline for $58.98 or 25 liters of permimum gasoline for 69.73. How much greater is the cost for 1 liter of premimum gasolinz? Round your quotient to nearest hundredth. show your work :) Retest: ProbabilityFor problems 1-3: Johnny Awesome has three red marbles, two blue marbles, five green marbles, and 7 yellowmarbles in a bag. What is the probability that'Johnny.....3) draws a blue marble, does not replace it, and then draws a green marble? If youwere rewriting Edward Taylors poem, what modern day activity might you use for theextended metaphor? The administrator at your local hospital states that on weekends the average wait time for emergency room visits is 11 minutes. Based on discussions you have had with friends who have complained about how long they wait to be seen in the ER over a weekend, you dispute the administrator's claim. You decide to test your hypothesis. Over the course of a few weekends, you record the wait time for 28 randomly selected patients. The average wait time for these selected patients is 12 minutes with a standard deviation of 2.5 minutes. Do you have enough evidence to support your hypothesis that the average ER wait time is longer than 11 minutes? Conduct your test with a 5% level of significance. Which ordered pair is a solution to the equation? y=7x-3 O only (14) O neither only (-1,-) both (1, 4) and (-1,-4) A. The measure of the angle can not be determined B. 70 degreesC. 110 degreesD. 180 degrees Which ancient greek-city enslaved the messenians and called them helots IF YOU DO LUOA SCHOOL ANSWER THISExplain how God gave us ways to develop our knowledge. Remember to use complete sentences. the common stock of sweet treats is selling for $56.00 per share. the company is expected to have an annual dividend increase of 3.3 percent indefinitely and pay a dividend of $4.45 in one year. what is the total return on this stock? A ball is thrown directly downward with an initial speed of 8.45 m/s, from a height of 29.9 m. After what time interval does it strike the ground? s