<span>I would advise her to press the fn keyboard key
along with the function key with a monitor connected on it. She should ensure
that she has the correct cable to connect the laptop to the projector. Most
laptops require a manual switch by pressing these combination keys but for
some, they will automatically detect the external display and switch to video
output</span>
For example, if I was foong a bar graph about the amounts of what was in different jars, the x-axis would have the items in the jars, and the y-axis woukd have the amount of items in the jars
The correct answer is B: ls -l.
Further Explanation:
In Linux there is a specific command needed to look at the files in a directory. In addition to using the command ls -l, you will need to use < > after the command and insert the name of the file that is being looked for. For example: ls -l <root root 2356 0600 Oct 22 lanyard>.
Each word and character has their own meaning and access information stored in the database. This will also show the users accesses permission to see the file and if needed to write over the file.
Learn more about computer commands at brainly.com/question/13338803
#LearnwithBrainly
Answer:
Check where the file originates from, and if it is a trusted source or his own workbook, click Enable Content.
Explanation:
Answer:
The following code is in C++.
#include <iostream>
using namespace std;
int main() {
int a[10],sum=0;//declaring an array and initialized variable sum with value 0.
cout<<"Enter the numbers"<<endl;
for(int i=0;i<10;i++)
{
cin>>a[i]; //taking input of 10 integers.
}
for(int i=0;i<10;i++)
{
sum=sum+a[i];//finding the sum..
}
cout<<"The sum is : "<<sum<<endl<<"The numbers entered are "<<endl;
for(int i=0;i<10;i++)
{
cout<<a[i]<<" ";//displaying the elements.
}
return 0;
}
Output:-
Enter the numbers
1 2 3 4 5 6 7 8 9 10
The sum is : 55
The numbers entered are
1 2 3 4 5 6 7 8 9 10
Explanation:
I have taken an array of size 10 so that no more than 10 integers could fit in it.After that taking the input from the user prompting 10 integers using the for loop.After that finding the sum.Then printing the sum and the numbers entered.