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
Trava [24]
3 years ago
8

Users of an extranet can access a company or organization’s entire intranet

Computers and Technology
2 answers:
Tasya [4]3 years ago
4 0

Answer:

yes

Explanation:

yes

bixtya [17]3 years ago
4 0

Answer:

yes    they    can

i hope this helps you :)

You might be interested in
What does advance mean​
maw [93]

Answer:

Hey there, there are many meanings for advance here are some answers

VERB

advance (verb) · advances (third person present) · advanced (past tense) · advanced (past participle) · advancing (present participle)

move forward in a purposeful way.

"the troops advanced on the capital" · "she stood up and advanced toward him"

synonyms:

move forward · proceed · move along · press on · push on · push forward · make progress · make headway · forge on · forge ahead · gain ground · approach · come closer · move closer · move nearer · draw nearer · near · draw nigh

antonyms:

retreat

cause (an event) to occur at an earlier date than planned.

"I advanced the date of the meeting by several weeks"

synonyms:

bring forward · put forward · move forward · make earlier

antonyms:

postpone

make or cause to make progress.

"our knowledge is advancing all the time" · "it was a chance to advance his own interests"

synonyms:

promote · further · forward · help · aid · assist · facilitate · boost · strengthen · improve · make better · benefit · foster · cultivate · encourage · support · back · progress · make progress · make headway · develop · become better · thrive · flourish · prosper · mature · evolve · make strides · move forward (in leaps and bounds) · move ahead · get ahead · go places · get somewhere

antonyms:

impede · hinder

(especially of shares of stock) increase in price.

"two stocks advanced for every one that fell"

put forward (a theory or suggestion).

"the hypothesis I wish to advance in this article"

synonyms:

put forward · present · come up with · submit · suggest · propose · introduce · put up · offer · proffer · adduce · moot

antonyms:

retract

lend (money) to (someone).

"the bank advanced them a loan"

synonyms:

lend · loan · credit · pay in advance · supply on credit · pay out · put up · come up with · contribute · give · donate · hand over · dish out · shell out · fork out · cough up · sub

antonyms:

borrow

pay (money) to (someone) before it is due.

"he advanced me a month's salary"

synonyms:

spend · expend · pay · lay out · put up · part with · hand over · remit · furnish · supply · disburse · contribute · give · donate · invest · pledge · dish out · shell out · fork out/up · cough up

NOUN

advance (noun) · advances (plural noun)

a forward movement.

"the rebels' advance on Madrid was well under way" · "the advance of civilization"

synonyms:

progress · headway · moving forward · forward movement · approach · nearing · coming · arrival

a development or improvement.

"genuine advances in engineering techniques" · "decades of great scientific advance"

synonyms:

breakthrough · development · step forward · step in the right direction · leap · quantum leap · find · finding · discovery · invention · success · headway · progress · advancement · evolution · improvement · betterment · furtherance

an increase or rise in amount, value, or price.

"bond prices posted vigorous advances"

synonyms:

increase · rise · upturn · upsurge · upswing · growth · boom · boost · elevation · escalation · augmentation · hike

an amount of money paid before it is due or for work only partly completed.

"the author was paid a $250,000 advance" · "I asked for an advance on next month's salary"

synonyms:

down payment · advance against royalty · deposit · retainer · prepayment · front money · money up front

a loan.

"an advance from the bank"

synonyms:

credit · mortgage · overdraft · debenture · lending · moneylending · advancing · sub

(advances)

an approach made to someone, typically with the aim of initiating a sexual encounter.

"women accused him of making improper advances"

synonyms:

sexual approaches · overtures · moves · a pass · proposal · proposition · offer · suggestion · appeal · come-on

ADJECTIVE

advance (adjective)

done, sent, or supplied beforehand.

"advance notice" · "advance payment"

synonyms:

preliminary · leading · forward · foremost · at the fore · sent (on) ahead · first · exploratory · explorative · pilot · vanguard · test · trial · early · previous · prior · beforehand

ORIGIN

Middle English: from Old French avance (noun), avancer (verb), from late Latin abante ‘in front’, from ab ‘from’ + ante ‘before’. The initial a- was erroneously assimilated to ad- in the 16th century.

Explanation:

Those are every single definition for advance!

7 0
3 years ago
Which branch of science helps avoid or minimize stress-related injuries at workplace?
Ilya [14]

Answer:

Psychology, because psychology is the study of how the mind works, and therefor what causes stress.

Have a great night/day

6 0
3 years ago
Read 2 more answers
Number Array Class
UNO [17]

Answer:

Here is the Array class named Number:

#include <iostream>

#include <iomanip>

using namespace std;

class Number {

private:                            

   int size;                      

   float *ptr;                

   float num;                

   

public:                                          

   Number(){

       cout<<"Enter size of array: ";

        cin>>size;                            

   ptr = new float[size];  

   cout<<"Enter elements"<<endl;

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

       cin>>ptr[i];     }     }

   

   void getNumbers(){

        cout << "{ ";                    

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

       cout <<ptr[i] <<setprecision(2)<< " ";             }

   cout << "}";            }

   

   Number(int s){

       ptr = new float[s];          

       size = s;      

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

       cout << "Enter elements : ";    

       cin >> num;                          

       ptr[i] = num;         }  }

   

   ~Number(){

        delete [] ptr;    }

   void storeNumber(int input, float num){

        while (input < 0 || input > size-1)  {

       cout << "array size exceeded! Enter an element again " << endl;    

       cin >> input;    

       if (input >= 0 && input < size)  {

           ptr[input] = num;  

           break;       }   }

     if (input >= 0 && input < size)  {

       ptr[input] = num;   }  }

   

   void retrieveNumber(int position){

        while (position < 0 || position > size-1)  {

       cout << "array size exceeded! Enter an element again " << endl;    

       cin >> position;      

        if (position >= 0 && position < size)  {

           cout << "The number at "<<position<<"is: " << ptr[position];  

           break;           }     }      

   if (position >= 0 && position < size)     {

      cout << "The number at "<<position<<" is: " << ptr[position];     }   }    

 

   float HighestNumber(){

       float highest = ptr[0];      

   for (int i = 1; i < size; i++)     {

       if (ptr[i] > highest)         {

           highest = ptr[i];              }     }      

   return highest;      }

   

   float LowestNumber(){

       float lowest = ptr[0];      

   for (int i = 1; i < size; i++)     {

       if (ptr[i] < lowest)         {

           lowest = ptr[i];              }     }      

   return lowest;      }

   

   float AverageNumber(){

       float avg = 0.0;        

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

       avg += ptr[i];         }      

   return avg/size;     }    

};

int main() {

   Number array;    

   array.getNumbers();    

   cout << endl;    

   int pos;        

   float no;    

   cout << "Choose an element to replace: ";  

   cin >> pos;    

   cout << "What number do you want to replace element with?" << endl;  

   cin >> no;    

   array.storeNumber(pos, no);

   array.getNumbers();  

   cout << endl;    

   int pos1;  

   cout << "Enter an element to retrieve the number: ";  

   cin >> pos1;    

   cout << endl;  

   array.retrieveNumber(pos1);  

   cout << endl;    

   cout << endl;    

   cout << "The highest number is: " << array.HighestNumber() << endl;    

   cout << "The lowest number is : " << array.LowestNumber() << endl;      

   cout << "Average of all numbers is : " << array.AverageNumber() << endl;    

    cout << endl;    

   return 0;        }

Explanation:

The program is well explained in the comments mentioned with each line of code in the attached document.

The screenshot of the program along with its output is attached.

4 0
3 years ago
Who is good with Introduction to photography? I don’t know nothing about cameras if you do please contact me ASAP
son4ous [18]

ok i can help you with your questions

5 0
3 years ago
You run an automobile selling company that has a popular online store on AWS. The application sits behind an Auto Scaling group
vredina [299]

Answer:

We can achieve this by using cURL command and GET command.

Explanation:

<u>cURL command: </u>

  • cURL command is the command of the command line tools which are available on the following platforms such as Linux, Windows, Mac OS, and many other Operating Systems.
  • From the servers, cURL transfer the following data by using any of the protocol which are supported such as SFTP, HTTPS, HTTP, FTPS or many of the other protocols.

<u> </u>

<u>GET command: </u>

GET command is the function by which from the particular URL we can retrieve the resources.

8 0
3 years ago
Other questions:
  • When a cache block has been modified since being read from main memory?
    10·2 answers
  • What is a slide master ?
    8·2 answers
  • Benching system are prohibited in
    5·1 answer
  • Google Glass, glasses that allow you to take pictures and search online by speaking commands, are introduced at a technology tra
    8·1 answer
  • Audiovisual means that a presentation combines film and photos.<br> true or false?
    6·2 answers
  • Which tool will select the lines of a sketch in digital software?
    7·1 answer
  • Which of the following statements are true concerning abstraction and refinement? Select 3 options:
    14·1 answer
  • Which of the following are acceptable to share? Check all of the boxes that apply.
    13·1 answer
  • David plays racing games on his way to work. He uses the analog stick to navigate his vehicle through other artificial intellige
    7·2 answers
  • A network technician attempts to ping www.example.net from a customer computer, but the ping fails. access to mapped network dri
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!