1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
dimulka [17.4K]
3 years ago
11

An intranet is a restricted network that relies on Internet technologies to provide an Internet-like environment within the comp

any for information sharing, communications, collaboration, Web publishing, and the support of business processes.
True/False
Engineering
1 answer:
lukranit [14]3 years ago
5 0

Answer:

TRUE.

Explanation:

An intranet is a private enterprise network designed to support an organization's employees to communicate, collaborate and perform their roles.

Just as an organization sets up websites to provide global access to informations about their business, they also set up internal web pages to provide information about the organization to the employees, this internal set of web pages is called an INTRANET.

An intranet is a restricted version of the internet, and the one that doesn't allow access to anyone outside its network (consists of all its employees and senior level, partners, investors and shareholders). Intranets, typically use a local-only network, which restricts access.

An intranet depends on the use of internet technologies to world wide web. They use the transmission control protocol/ internet protocol (TCP/IP), web pages and web browsers for access. Intranet operates similarly to the internet, making a transition to these networks very easy.

Therefore, it is TRUE that the intranet is a restricted network that relies on internet technologies to provide an internet-like environment within the company for information sharing, communications collaboration, web publishing, and the support of business processes.

You might be interested in
Can I get an answer to this question please
crimeas [40]

Answer:

  (i) 12 V in series with 18 Ω.

  (ii) 0.4 A; 1.92 W

  (iii) 1,152 J

  (iv) 18Ω — maximum power transfer theorem

Explanation:

<h3>(i)</h3>

As seen by the load, the equivalent source impedance is ...

  10 Ω + (24 Ω || 12 Ω) = (10 +(24·12)/(24+12)) Ω = 18 Ω

The open-circuit voltage seen by the load is ...

  (36 V)(12/(24 +12)) = 12 V

The Thevenin's equivalent source seen by the load is 12 V in series with 18 Ω.

__

<h3>(ii)</h3>

The load current is ...

  (12 V)/(18 Ω +12 Ω) = 12/30 A = 0.4 A . . . . load current

The load power is ...

  P = I^2·R = (0.4 A)^2·(12 Ω) = 1.92 W . . . . load power

__

<h3>(iii)</h3>

10 minutes is 600 seconds. At the rate of 1.92 J/s, the electrical energy delivered is ...

  (600 s)(1.92 J/s) = 1,152 J

__

<h3>(iv)</h3>

The load resistance that will draw maximum power is equal to the source resistance: 18 Ω. This is the conclusion of the Maximum Power Transfer theorem.

The power transferred to 18 Ω is ...

  ((12 V)/(18 Ω +18 Ω))^2·(18 Ω) = 144/72 W = 2 W

7 0
2 years ago
In order to protect yourself if you have a dispute with another drivers insurance company you should:
klio [65]

Answer:

  C. Get the names and addresses of witness to the crash

Explanation:

The best approach is to let your insurance company handle the dispute. Since that is not an option here, the best thing you can do is make sure you know who the witnesses are, so your insurance company can call upon them as needed.

8 0
3 years ago
Give five general principles involved in the process of sewage filtration?​
aleksandr82 [10.1K]

Answer:

Some general principles are given below in the explanation segment.

Explanation:

Sewage treatment seems to be a method to extract pollutants from untreated sewage, consisting primarily of domestic sewage including some solid wastes.

<u>The principles are given below:</u>

  • Unless the components throughout the flow stream become greater than the ports or even the gaps throughout the filter layer, those holes would be filled as either a result of economic detection.
  • The much more common element of filtration would be the use of gravity to extract a combination.
  • Broadcast interception or interference.  
  • Inertial influence.
  • Sieving seems to be an excellent method to distinguish particulates.

8 0
3 years ago
The underground cafe has an operating cash flow of $187,000 and a cash flow to creditors of $71,400 for the past year. During th
Serggg [28]

Answer:

cash flow to stockholders = $39,700

Explanation:

Operating cash flow = $187,000

cash flow to creditors = $71,400

Net working capital = $28,000

Net capital spending =  $47,900

Cash flow to stockholders = ?

CFF = operating cash flow - net working capital - net capital spending

CFF = $187,000 - $28,000 - $47,900 = $111,100

CFF = cash flow to creditors + cash flow to stockholders

cash flow to stockholders = CFF - cash flow to creditors

cash flow to stockholders = $111,100 - $71,400 = $39,700

Hence $39,700 is the amount of the cash flow to stockholders for the last year.

3 0
3 years ago
computer language C++ (Connect 4 game)( this is all the info that was givin no input or solution) I used the most recent version
Mariana [72]

Answer:

C++ code explained below

Explanation:

#include "hw6.h"

//---------------------------------------------------

// Constructor function

//---------------------------------------------------

Connect4::Connect4()

{

ClearBoard();

}

//---------------------------------------------------

// Destructor function

//---------------------------------------------------

Connect4::~Connect4()

{

// Intentionally empty

}

//---------------------------------------------------

// Clear the Connect4 board

//---------------------------------------------------

void Connect4::ClearBoard()

{

// Initialize Connect4 board

for (int c = 0; c < COLS; c++)

for (int r = 0; r < ROWS; r++)

board[r][c] = ' ';

// Initialize column counters

for (int c = 0; c < COLS; c++)

count[c] = 0;

}

//---------------------------------------------------

// Add player's piece to specified column in board

//---------------------------------------------------

bool Connect4::MakeMove(int col, char player)

{

// Error checking

if ((col < 0) || (col >= COLS) || (count[col] >= ROWS))

return false;

// Make move

int row = count[col];

board[row][col] = player;

count[col]++;

return true;

}

//---------------------------------------------------

// Check to see if player has won the game

//---------------------------------------------------

bool Connect4::CheckWin(char player)

{

// Loop over all starting positions

for (int c = 0; c < COLS; c++)

for (int r = 0; r < ROWS; r++)

if (board[r][c] == player)

{

// Check row

int count = 0;

for (int d = 0; d < WIN; d++)

if ((r+d < ROWS) &&

(board[r+d][c] == player)) count++;

if (count == WIN) return true;

 

// Check column

count = 0;

for (int d = 0; d < WIN; d++)

if ((c+d < COLS) &&

(board[r][c+d] == player)) count++;

if (count == WIN) return true;

 

// Check first diagonal

count = 0;

for (int d = 0; d < WIN; d++)

if ((r+d < ROWS) && (c+d < COLS) &&

(board[r+d][c+d] == player)) count++;

if (count == WIN) return true;

 

// Check second diagonal

count = 0;

for (int d = 0; d < WIN; d++)

if ((r-d >= 0) && (c+d < COLS) &&

(board[r-d][c+d] == player)) count++;

if (count == WIN) return true;

}

return false;

}

//---------------------------------------------------

// Print the Connect4 board

//---------------------------------------------------

void Connect4::PrintBoard()

{

// Print the Connect4 board

for (int r = ROWS-1; r >= 0; r--)

{

// Draw dashed line

cout << "+";

for (int c = 0; c < COLS; c++)

cout << "---+";

cout << "\n";

// Draw board contents

cout << "| ";

for (int c = 0; c < COLS; c++)

cout << board[r][c] << " | ";

cout << "\n";

}

// Draw dashed line

cout << "+";

for (int c = 0; c < COLS; c++)

cout << "---+";

cout << "\n";

// Draw column numbers

cout << " ";

for (int c = 0; c < COLS; c++)

cout << c << " ";

cout << "\n\n";

}

//---------------------------------------------------

// Main program to play Connect4 game

//---------------------------------------------------

int main()

{

  int choice;

  int counter = 0;

  srand (time(NULL));

  Connect4 board;

  cout << "Welcome to Connect 4!" << endl << "Your Pieces will be labeled 'H' for human. While the computer's will be labeled 'C'" << endl;

  board.PrintBoard();

  cout << "Where would you like to make your first move? (0-6)";

  cin >> choice;

  while (board.MakeMove(choice,'H') == false){

  cin >> choice;

  }

  counter++;

  while (board.CheckWin('C') == false && board.CheckWin('H') == false && counter != 21){

  while (board.MakeMove(rand() % 7, 'C') == false){}

  board.PrintBoard();

  cout << "Where would you like to make your next move?" << endl;

  cin >> choice;

  board.MakeMove(choice,'H');

  while (board.MakeMove(choice,'H') == false){

  cin >> choice;

  }

  counter++;

  }

 

  if (board.CheckWin('C')){

  cout << "Computer Wins!" << endl;}

  else if (counter == 21){cout << "Tie Game!" << endl;}

  else {cout << "Human Wins!" << endl;}

  board.PrintBoard();

}

4 0
3 years ago
Other questions:
  • Explain the use of the Kanban system in a production line?
    7·1 answer
  • What is the name of the model/shape below?
    5·2 answers
  • When it comes to making a good impression in a work setting, it does not apply to an initial contact, since both people are meet
    9·1 answer
  • A long corridor has a single light bulb and two doors with light switch at each door.
    12·1 answer
  • Helium gas expands in a piston-cylinder in a polytropic process with n=1.67. Is the work positive, negative or zero?
    8·1 answer
  • Steam in a heating system flows through tubes whose outer diameter is 5 cm and whose walls are maintained at a temperature of 19
    13·1 answer
  • Dalton needs to prepare a close-out report for his project. Which part of the close-out report would describe
    6·1 answer
  • Trapezoidal screw press project
    6·1 answer
  • Using the following data, determine the percentage retained, cumulative percentage retained, and percent passing for each sieve.
    6·1 answer
  • How can you contribute to achieved the mission of NSTP during pandemic in your society?
    7·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!