Network Adress Translations

Answers

Answer 1
Uhhh what ????? What’s this supposed to mean

Related Questions

The___ allows you quickly access features such as formatting, charting, tables, and totals

Answers

Answer:

Quick Analysis toolbar

Explanation:

it appears with the options formatting, chart, total, table, sparklines

You are configuring NIC teaming on a server with two network adapters. You chose Switch Independent Mode. You now must choose between the two modes determining if one adapter is left offline or both adapters are functional. You require a mode for the highest throughput. What mode do you choose?

Answers

Answer:

The appropriate answer is "Active/Active mode".

Explanation:

Now just after the customers or clients respond to the traditional standards, the board is comprised the information rapport with the cloud service, which would be considered as Active mode.The car glides primarily somewhere at a specified constantly controlled rate of the conductor. Currently entering the grounding connection boosts the flow of electrons further into the receiver as well as the transmitter.

Thus the above is the correct solution.

An IT systems engineer creates a new Domain Name System (DNS) zone that contains a pointer (PTR) resource records. Which zone type has been created?

Answers

Answer: Reverse DNS zone

Explo: a reverse DNS zone needs a PTR record since it is in charge of resolving the IP address to a domain or a hostname.

Can you help me in this question

Answers

Answer:

count = arry[0];

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

          {

              if (count>5);

              {

                  count;

              }

          }

       

       cout << "Total Count of the numbers greater than or equal to 5 : " <<count ;

Explanation:

count = arry[0];

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

          {

              if (count>5);

              {

                  count;

              }

          }

       

       cout << "Total Count of the numbers greater than or equal to 5 : " <<count ;

Learning Task 1: In a short bond paper, copy and answer the task. Identify the
materials, tools and equipment used in the following fashion accessories.
Materials
Tools
Equipment​

Answers

Answer:

im solving now

Explanation:

what is the best sites for excel learning?

Answers

Explanation:

Microsoft Excel Help Center

GCF learner free

Excel Central

Chandoo

Excel Hero

Contextures

Coursera

#Carryonlearning

Udemy.com is the best site for excel learning. And it’s very simple just going the website and type in what your looking for and all the sites will pop up that have what your looking for.

Write a complete program that asks the user to input the height and radius of a cone (both of type double) and calls two individual functions to calculate the total area of the cone and the volume of the cone. The main function then prints these values with appropriate messages.

Answers

Answer:

The program in C++ is as follows:

#include <iostream>

#include <math.h>

using namespace std;

double area(double r, double h){

   double A = 3.14 * r * (r + sqrt(h*h + r*r));

   return A;}

double volume(double r, double h){

   double V = (1.0/3) * 3.14 * r*r * h;

   return V;}

int main(){

   double radius, height;

   cout<<"Radius: "; cin>>radius;

   cout<<"Height: "; cin>>height;

   cout<<"Area: "<<area(radius,height)<<endl;

   cout<<"Volume: "<<volume(radius,height);

   return 0;

}

Explanation:

This declares the area function

double area(double r, double h){

Calculate area

   double A = 3.14 * r * (r + sqrt(h*h + r*r));

Return the calculated area

   return A;}

This declares the volume method

double volume(double r, double h){

Calculate volume

   double V = (1.0/3) * 3.14 * r*r * h;

Return the calculated volume

   return V;}

The main begins here

int main(){

Declare radius and height

   double radius, height;

Get input for radius

   cout<<"Radius: "; cin>>radius;

Get input for height

   cout<<"Height: "; cin>>height;

Call the area function and print the returned value for area

   cout<<"Area: "<<area(radius,height)<<endl;

Call the volume function and print the returned value for volume

   cout<<"Volume: "<<volume(radius,height);

   return 0;

}

Write three uses and applications of computer, people that use it,and use of computer in those areas.​

Answers

Answer:

Medical Field.

Entertainment.

Industry.

Education.

Government.

Banking.

Business.

Write a function that takes, as an argument, a list, identified by the variable aList. If the list only contains elements containing digits (either as strings as non-negative integers), return the string formed by concatenating all of the elements in the list (see the example that follows).

Answers

Answer:

The function is as follows:

def concList(aList):

   retList = ""

   for i in aList:

       if(str(i).isdigit()):

           retList+=str(i)

       else:

           retList = "Not digits"

           break;

   return retList

Explanation:

This defines the function

def concList(aList):

This initializes the return string to an empty string

   retList = ""

This iterates through aList

   for i in aList:

This converts each element of the list to an empty list and checks if the string is digit

       if(str(i).isdigit()):

If yes, the element is concatenated

           retList+=str(i)

If otherwise

       else:

The return string is set to "No digits"

           retList = "Not digits"

And the loop is exited

           break;

This returns the return string

   return retList

pleassssseee help
what is High Level programming
Language ​

Answers

Answer:

High level programming language is a language that simplifies computer programming.

Examples are python, visual basic,java,JavaScript .It is a language with abstraction from details of the computer.

#include <stdio.h>
void foo(int n, int sum)
{
int k = 0, j = 0;
if (n == 0) return;
k= n % 10;
j = n/10;
k = sum *k;
sum = sum *k + 1;
foo (j, sum);
printf ("%d", k%10);
}
int main()
{
int a = 5179, sum = 2;
foo (j, sum);
printf("%d",k%10);
}
int main()
{
int a =5179,sum=2;
foo(a,sum);
printf("%d",sum);
getchar();
}​

Answers

what’s ur questions tho

Code tạo cây nhị phân tìm kiếm trong C#

Answers

What language is this

TRUE or FALSE: CSS is used to style web pages.

Answers

Answer:

true

Explanation:

HTML is the structure and CSS is the design

Which of the following expressions yields an integer between 0 and 100, inclusive? Question 5 options: (int)(Math.random() * 100 + 1) (int)(Math.random() * 101) (int)(Math.random() * 100) (int)(Math.random() * 100) + 1

Answers

Answer:

(b) (int)(Math.random() * 101)

Explanation:

Given

[tex]min = 0[/tex] --- minimum

[tex]max =100[/tex] --- maximum

Required

Java expression to generate random integer between the above interval

The syntax to do this is:

(int)(Math.random((max - min) + 1) + min)

Substitute the values of max and min

(int)(Math.random((100 - 0) + 1) + 0)

Simplify the expression

(int)(Math.random(100 + 1) + 0)

(int)(Math.random(101) + 0)

(int)(Math.random(101))

Hence, the right option is:

(b) (int)(Math.random() * 101)

One tool of Lean that is a container, card, or visual limit that signals when work needs to be done or replenishment needs to be initiated is called a:

Answers

Answer:

Kanban System

Explanation:

Kanban can be regarded as one of Lean tools which is been designed to carry out reduction of the idle time in a production process. The idea or concept behind this Kanban system, is to make delivery of needs of the process needs at exactly the it needs it. Kanban can be reffered to as visual cards. Kanban can as well be explained as scheduling system that is used for lean manufacturing as well as just-in-time manufacturing. Taiichi Ohno, who was an industrial engineer at Toyota carried out development of kanban so that there could be an improved manufacturing efficiency. Kanban is considered as one method used to achieve JIT.

It should be noted that Kanban System is One tool of Lean that is a container, card, or visual limit that signals when work needs to be done or replenishment needs to be initiated .

A container, card, or visual limit that signals when work needs to be done or replenishment needs to be initiated is called a Kanban system.

Kanban is gotten from a Japanese word meaning 'signboard' but it has been used recently as a means of scheduling.

The Kanban system is a method of using cards or visual signals for triggering or controlling the flow of materials when work needs to be done. It is useful because it makes work processes more efficient.

A container, card, or visual limit that signals when work needs to be done or replenishment needs to be initiated is called a Kanban system.

Find out more at: https://brainly.com/question/22616012

List the invoice number and invoice date for each invoice that was created for James Gonzalez but that does not contain an invoice line for Wild Bird Food (25lb).

Answers

Answer:

Derive FROM invoice_transaction, invoice_details, item_details

and JOIN customer_details  ON (invoice_transaction.CUST_ID = customer_details.CUST_ID  AND customer_details.FIRST_NAME = 'James'   AND customer_details.LAST_NAME  = 'Gonzalez')

Explanation:

The following details will be there in the invoice

item_details rep_details invoice_details customer_details invoice_transaction

 Derive FROM invoice_transaction, invoice_details, item_details

and JOIN customer_details  ON (invoice_transaction.CUST_ID = customer_details.CUST_ID  AND customer_details.FIRST_NAME = 'James'   AND customer_details.LAST_NAME  = 'Gonzalez')

QUESTION 2
1 poin
A document contains a list of items that appear in no particular order. Which of the following is the best way to format the list?

Answers

Group of answer choices.

A. Apply numbering to the list.

B. Apply bullets to the list.

C. Apply multilevel numbering to the list.

D. Manually enter a ">" character at the beginning of each item in the list.

Answer:

B. Apply bullets to the list.

Explanation:

Formatting is a feature found in a lot of word processing software applications such as Microsoft Word, Notepad, etc., which is designed to avail end users the ability to apply specific formatting options such as cut, bold, italics, underline, list, etc., to texts based on certain criteria defined by an end user.

Microsoft Word refers to a word processing software application or program developed by Microsoft Inc. to enable its users type, format and save text-based documents.

In Microsoft Word, a list can be formatted using a numbered or bulleted arrangement style. A numbered style (1, 2, 3, 4, etc) is typically used for an ordered list while a bullet is designed to be used for an unordered list.

Hence, the best way to format a document containing a list of items that appear in no particular order is to apply bullets to the list.

For example, a bulleted list of my favorite subjects arranged in no particular order would appear as this;

English languageMathematicsGeographyBiologyChemistryPhysicsComputer technology

Joe has just started the Security Module. He wants to get through it as quickly as possible and take the Quiz. As he clicks through the unit, he sees a bunch of text with some activities sprinkled throughout, and is trying to decide how to proceed.

Required:
Which strategies would likely be most effective and efficient for Joe?

Answers

Answer:

Joe should read the explanatory text and complete the learning activities.

Explanation:

Given

See attachment for options

Required

Best strategy to get through the module

First off, rushing through the activities and taking guess for each question (as suggested by (a)) will not help him;

He may complete the activities but sure, he won't learn from the module.

Also, reading through the units without completing the activities is not an appropriate method because Joe will not be able to test his knowledge at the end of the module.

The best strategy to employ is to read through the units and complete the activities, afterwards (option (b)).

) Define a goal for software product quality and an associated metric for that attribute. (b) Explain how you could show that the goal is validatable. (c) Explain how you could show that the goal is verifiable.

Answers

Answer:

Following are the response to the given point:

Explanation:

For point A:

The objective for software development is indeed the testing process to ensure that minimum test of the highest quality product. For some of these goals, QA as well as the evaluation procedure are accountable.

For point B:

Testing experts and QA assessors verify the goal.

For point C:

Testing processes can assess the situation. Whenever the process operates effectively and then all the testing processes have passed correctly and all the development standards were complied with, so we can conclude that the objective was verified.

Write a Java application that allows a user to enter student data that consists of a Student number, First name, Surname, and average assignment mark. Depending on whether the students average assignment mark is at least 40, output each record either to a file of students who passed (call it pass.txt) or students qualifying for supplementary (call it supp.txt).​

Answers

Answer:

Following are the given code to the given question:

import java.io.*;//import package

import java.util.*;//import package

public class Main //defining a class Main

{

public static void main(String[] args) throws IOException//defining main method

{

Scanner obx = new Scanner(System.in);//creating Scanner class object

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

long studentNumber = obx.nextLong();//defining a studentNumber that input value

obx.nextLine();//use  for next line

System.out.println("Enter Your First Name:");//print message

String name = obx.nextLine();//input value

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

String surName = obx.nextLine();//input value

System.out.println("Enter Your Average Assisgnment Marks:");//print message

int avgAssignMarks = obx.nextInt();//input value

if(avgAssignMarks>=50)//use if to check Average value greater than equal to 50  

{

FileWriter fw = new FileWriter("pass.txt", true);//creating FileWriter object

PrintWriter out = new PrintWriter(fw);//creating PrintWriter object

out.println("Student Number: "+studentNumber);//print message with value

out.println("Student Name: "+name);//print message with value

out.println("Student Surname: "+surName);//print message with value

out.println("Student Average Assignmet Marks: "+avgAssignMarks);//print message with value

out.println("=================================================");

out.close();

}

else//else block  

{

FileWriter fw = new FileWriter("supp.txt", true);//creating FileWriter object

PrintWriter out = new PrintWriter(fw);//creating PrintWriter object

out.println("Student Number: "+studentNumber);//print message with value

out.println("Student Name: "+name);//print message with value

out.println("Student Surname: "+surName);//print message with value

out.println("Student Average Assignmet Marks: "+avgAssignMarks);//print message with value

out.println("=================================================");

out.close();

}

}

}

Output:

Please find the attached file.

Explanation:

In this code, a class "Main" is declared inside the class main method is declared inside the main method a scanner class, FileWriter, and PrintWriter object is creating that defines the string and long variable which is used to input value from the user-end, and store the value into the pass.txt file.

Select the true statement about a scanner.

a. It is a device that outputs digital images and text onto a screen.
b. It is a device that enables users to output digital images or text as hard copies.
c. It is an input device that enables users to convert hard copies to digital images or text.
d. It is a device that enables users to input photographs as digital images.

Answers

Answer:

c. It is an input device that enables users to convert hard copies to digital images or text.

Explanation:

An input device can be defined as any device that is typically used for sending data to a computer system.

A scanner can be defined as an input device designed for transferring informations and images from hardcopy (physical) documents to digital computer files. Thus, it's simply an electronic input device that is used to digitally scan or copy data (informations) from a hardcopy document such as photographs, paper files, printed texts etc and then converted to a digital computer file in formats such as png, or jpeg. The scanner is a device which avail users the ability and opportunity to view, edit and transfer hardcopy document on a computer system in soft-copy.

Majority of the scanners used around the world are flatbed scanners and as such have a flat glass surface for scanning documents.

Basically, all scanners are to be used with a device driver software pre-installed on the computer before the configuration of the scanner.

Other types of scanners are drum scanners, contact image sensor (CIS) scanner, CCD scanner, planetary scanner, 3D scanner, Roller scanner etc.

9. Which is an example of a function?
(1 Point)
=A1 +A2
=SUM(A1:A3)
=ADD(A1:A3)​

Answers

Answer: i'd make a guess, not answer probably, but A1 +A2?

Explanation: it has plus sign?

Answer: SUM(A1:A3)

Explanation:

Exercise : Randomizer In this exercise, we are going to create a static class Randomizer that will allow users to get random integer values from the method nextInt() and nextInt(int min, int max). Remember that we can get random integers using the formula int randInteger = (int)(Math.random() * (range + 1) + startingNum). nextInt() should return a random value from 1 - 10, and nextInt(int min, int max) should return a random value from min to max. For instance, if min is 3 and max is 12, then the range of numbers should be from 3 - 12, including 3 and 12.

Answers

Answer:

Here the code is by using java.

Explanation:

//Randomizer.java

public class Randomizer {

public static int nextInt() {

//get random number from 1-10

int randInteger = (int) (Math.random() * (11) + 1);

//if number is greater than 10 or less than 1

while (randInteger > 10 || randInteger < 1) {

randInteger = (int) (Math.random() * (11) + 1);

}

return randInteger;

}

public static int nextInt(int min, int max) {

//formula to get random number from min-max

int randInteger = (int) (Math.random() * (max + 1) + min);

while (randInteger > max || randInteger < min) {

randInteger = (int) (Math.random() * (max + 1) + min);

}

return randInteger;

}

}

//RandomizerTester.java

public class RandomizerTester {

public static void main(String[] args) {

System.out.println("Results of Randommizer.nextInt()");

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

System.out.println(Randomizer.nextInt());

}

int min = 5;

int max = 10;

System.out.println("\n Results of Randomizer.nextInt(5,10)");

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

System.out.println(Randomizer.nextInt(min, max));

}

}

}

OUTPUT:

Results of Randommizer.nextInt()

9

2

3

8

5

9

4

1

9

2

Results of Randomizer.nextInt(5,10)

9

8

9

7

5

10

5

10

7

7

2) Phát biểu nào sau đây là sai khi gán hiệu ứng cho các đối tượng trên slide?
a) Một đối tượng trên slide chỉ được gán một hiệu ứng
b) Một đối tượng có thể gán nhiều hiệu ứng
c) Nhiều đối tượng có thể gán cùng một loại hiệu ứng
d) Có thể gán âm thanh kèm theo hiệu ứng
3) Thao tác nào sau đây dùng để chọn một hyperlink trong slide khi dang trình chiếu
a) Ctrl +K
b) Ctrl +H
c) Tab
d) Ctrl +L
4) Hiệu ứng đặc biệt được sử dụng để giới thiệu các slide trong một bài thuyết trình này được gọi là
a) Effects
b) Custom animations
c) Transitions
d) Present animations

Answers

Pls translate into english

Write a program whose input is two integers, and whose output is the first integer and subsequent increments of 5 as long as the value is less than or equal to the second integer. Ex: If the input is: "-15" 10 the output is: "-15" "-10" "-5" 0 5 10 Ex: If the second integer is less than the first as in: 20 5 the output is: Second integer can't be less than the first.

Answers

Answer:

The program in Python is as follows:

num1 = int(input())

num2 = int(input())

if num2 < num1:

   print("Second integer can't be less than the first.")

else:

   for i in range(num1,num2+1,5):

       print(i,end=" ")

Explanation:

This gets the first integer from the user

num1 = int(input())

This gets the second integer from the user

num2 = int(input())

If the second is less than the first, the following prompt is printed

if num2 < num1:

   print("Second integer can't be less than the first.")

If otherwise, the number between the intervals is printed with an increment of 5

else:

   for i in range(num1,num2+1,5):

       print(i,end=" ")

Where would you find the function to add a totals row to a Database in Access?

Answer: Home tab, Records group

Answers

Answer:

Add a Totals row

On the Home tab, in the Records group, click Totals. For each cell in the Total row where you want a total to appear, click in the cell and select the kind of total you want.

Explanation:

HOPE ITS HELP

#BRAINLEST

Answer:

B

Explanation:

Which of the following techniques can you not use to make the members of the std namespace available to your code? a. Code a using directive for the namespace b. Code an include preprocessor directives for the members c. Identify the members using fully qualified names d. Code a using declaration for each member

Answers

Answer:

b. Code an include preprocessor directives for the members

Explanation:

Namespace in programming can be defined as the declarative region which provides scope for the identifiers such as the functions, name of the types, variables, etc.

The namespaces are [tex]$\text{used to organize}$[/tex] the code into the logical groups and also used to prevent the name collision.

The ways that can be used outside the namespace [tex]$\text{can access the members}$[/tex] as :

-- the code used the fully qualifies name

-- by using the declaration to bring one of the identifier into the scope

-- by using the directive to bring all the things in the newspaper into the scope.

Thus the correct option is (b).

what are the different types of biometric method used in artificial intelligence?​

Answers

Answer:

Different types of biometric method used in AI are

Explanation:

Face Recognition.

Speaker (Voice) Recognition.

Fingerprint Recognition.

Behavioral Biometrics.

Crossmatch – 'Composite' Biometric Authentication.

Tygart Technology – Facial Recognition from Videos.

Onfido – Facial Biometrics.

EyeLock – Iris Recognition.

Explain the steps that are needed to remove the data items from linked list

Answers

Explanation:

Iterative Method:

To delete a node from the linked list, we need to do the following steps.

1) Find the previous node of the node to be deleted.

2) Change the next of the previous node.

3) Free memory for the node to be deleted.

List and explain the factors to consider when buying a computer


Answers

Answer:

what it's main use is going to be

Explanation:

The main factor when considering buying a PC is what it's main use is going to be. This will determine what components you will need to look for. For example, if you are going to use the computer for video editing and work then you will need one with a high end CPU and lots of RAM. If you are going to use the PC for regular everyday use such as work programs (AutoCAD, Office, Photoshop, etc. ) Then you can buy a regular office computer with a mid-tier CPU, and 8GB of RAM, and no graphic card. A PC for gaming at high resolutions will require all high end parts including a high end graphics card. Therefore, knowing what its main use will be will determine cost, and what tier components you will need to buy.

Other Questions
Which angle is complementary to X? help me with this math question HELP PLSS!A) The constitution had strong support but also strong opposition B) Southern states were more likely than northern states to support the constitutionC) few people paid attention to the objections of the anti-federalistD) only a few people opposed The consultation, but they were very influential which sentence belongs in the summary between sentences 1 and 2. If f(1) =4 and f(n) = -4f(n-1) + n then find the value of f(5) Suppose that 57% of all people with credit records improve their credit rating within three years. Suppose that 22% of the population at large have poor creditratings within three years. What percentage of then people who will improve their credit records within the next three years are the ones who currently have good credit ratings? ratings, and of those only 25% will improve their credit Hiiiiiii you can help me pliss Would you prefer to own a business in the German economy or British economy? Why? Consider the following three scenarios:I. ABC Lawncare performed lawn maintenance services for Drake Inc. on June 1st, and received payment of $500 for those services.II. On June 1st, Melly Corp received payment for 100 pounds of raw material to be delivered to Drake Inc. in 6 months.III. Lodo, LLC collected cash on June 1st for services rendered on May 1st.Given these scenarios, revenue cannot be recognized on June 1st for: What is the value of x in the below diagram?(2 x + 2)(x + 34) Scientists have observed that hurricanes are strongest over water, and that hurricanes lose momentum and become weak when they reach land. Which statement best explains this observation?The ocean tides provide energy to hurricanes.The ocean winds provide energy for hurricanes.The warm water provides moisture for hurricanes.The Coriolis Effect provides moisture for hurricanes. I need help please. Which phrase best completes the diagram?Roman TribunesRepresented theplebeians?Were elected byRoman citizensA. Could reject laws passed by the SenateB. were in charge of the Roman treasuryC. Decided who would become consulsD. Ruled like kings for short periods of time Economics is focused on the problem of __________, which is created by a world with limited resources and people with unlimited needs and wants. The graph shows that f(x)=(one-third) Superscript x is translated horizontally and vertically to get the function (one-third) Superscript x minus h. On a coordinate plane, 2 exponential functions are shown. f (x) decreases in quadrant 2 and approaches y = 0 in quadrant 1. It goes through (negative 1, 3), (0, 1), (1, 0.3). g (x) decreases in quadrant 1 into quadrant 4. It crosses the x-axis at (4, 0), and goes through (5, negative 2).What is the value of k?5335 If I were you, I would try to get more sleep.Identify the mood of the underlined verb in the sentence.OindicativeOimperativeOsubjunctiveThe underlined word it were. A scientist has 42.359 grams of copper. She uses 3.08 grams in an experiment. How many grams of copper are left? 1. An ion has a net charge of - 3, and 12 electrons, what is its atomic number? What element has that atomic number?2. An ion of Celsius has a net charge of -5, how many electrons does it have?3. Some atom has an atomic number of 46, how many electrons does it have if it has a net charge of +2?4. How many neutrons are in an atom of Helium, and what is its mass number?5. There are 3 neutrons in an isotope of Helium, what is its mass number?6. n isotope has 83 neutrons and a mass number of 167, what is its atomic number? What element is defined by that atomic number?7. What element has 54 neutrons and a mass number of 112?8. What element has 10 electrons, a net charge of -2? The ratio of the amount of money in David's pocket to that in Indira's pocket is 10 : 9. Indira has 27p How much does David have? A Nissan four cylinder engine has a stroke of 72mm and a bore of 81.5mm. Calculate the displacement in liters. 2.5 liters O 2.0 liters 1500 liters O 1.5 liters