Hey this code was made in java if you have any issues let me know
package nametest;
public class Nametest {
public static void main(String[] args) {
System.out.println("namehere");
System.out.println("namehere");
System.out.println("namehere");
System.out.println("namehere");
System.out.println("namehere");
System.out.println("namehere");
System.out.println("namehere");
System.out.println("namehere");
System.out.println("namehere");
System.out.println("namehere");
}
}
Hope it helps
-scav
The technical terms for the statement "The repeatedly working capacity of computer" is known to be "diligence.
<h3>Why is the working capacity of computer" known to be "diligence."?</h3>
The capacity of a computer is known to be one that carry out or performs a lot of task in a repetitive manner without getting tired and as such, one can say the computer is diligent.
Note therefore that The technical terms for the statement "The repeatedly working capacity of computer" is known to be "diligence.
Learn more about computer from
brainly.com/question/24540334
#SPJ1
Answer:
C++ code:
#include<iostream>
using namespace std;
void sort(int al[30], int l)
{
//we use insertion sort to sort the array.
int p,q,k;
for(q=1;q<l;q++) //starting from the 2nd item of the array.
{
k= al[q]; //taking qth item as key value.
p=q-1;
while(p>=0 && al[p]>k)
{
al[p+1]=al[p]; //all items those are greaer than al[q] are shifted //to right.
p=p-1;
}
al[p+1]=k;
}
}
int main()
{
int p,l, arrl[30];
cout<<"Enter the number of items in your array: ";
cin>>l;
cout<<endl;
cout<<"Enter your "<<l<<" items"<<endl;
for(p=0;p<l;p++)
{
cin>>arrl[p];
}
sort(arrl, l); //call function sort() to sort the array.
cout<<"The array after sorting: ";
for(p=0;p<l;p++)
{
cout<<arrl[p]<<" ";
}
cout<<endl;
cout<<"The smallest item is: ";
cout<<arrl[0]<<endl;
cout<<"The middle item is: ";
cout<<arrl[l/2]<<endl;
cout<<"The biggest item is: ";
cout<<arrl[l-1]<<endl;
}
Output is given as image.
Answer:
well you could have more options of careers and more possibilities, online jobs can pay more and give more experience to the employees