Answer:
This tool lets users change text from one language to another.
 translation tool
This tool helps users find definitions for difficult vocabulary.
online dictionary
This tool allows users to listen to passages of text that they select.
text-to-speech tool
This tool helps users memorize vocabulary by giving them representations of words using pictures.
flash cards
Explanation:
just did the assignment on edg 2020
 
        
                    
             
        
        
        
Answer:
A keyboard, mouse, and microphone all are examples of <u>peripheral devices.</u>
Explanation:
hope this helps
 
        
                    
             
        
        
        
Answer:
The correct option is;
d. Prime
Explanation:
A prime lens is a unifocal, or fixed-focal-length lens and it is referred to as the opposite of a zoom lens
The maximum aperture of ranges from f2.8 to f1.2, which are fast and have a creamy rendering of light that are out of focus, and also provide crispy image details, by making the most use of the light available and provide distinct combination of foreground and background images in pictures that give a crisp and visually pleasing appearance.
 
        
                    
             
        
        
        
Explanation:
public class Int_List
 {
 protected int[] list;
 protected int numEle = 0;
  
 public Int_List( int size )
 {
 list = new int[size];
public void add( int value )
 {
 if ( numEle == list.length )
 {
 System.out.println( "List is full" );
 }
 else
 {
 list[numEle] = value;
 numEle++;
 }
 }
 public String toString()
 {
 String returnStr = "";
 for ( int x = 0; x < numEle; x++ )
 {
 returnStr += x + ": " + list[x] + "\n";
 }
 return returnStr;
 }
 }
public class Run_List_Test
 {
 public static void main( String[] args )
 {
  
 Int_List myList = new Int_List( 7 );
 myList.add( 102 );
 myList.add( 51 );
 myList.add( 202 );
 myList.add( 27 );
 System.out.println( myList );
 }
 }
Note: Use appropriate keyword when you override "tostring" method
 
        
             
        
        
        
Answer:
- ADSL. 
- Ethernet Home Networks. 
- Fiber Optics. 
- Cable Television. 
Explanation:
In Computer, Guided media also known as bounded media involves the use of cable such as fibre-optic cables, coaxial cable to transmit data signals from one system device to another.
Examples of systems using guided media are;
- ADSL. 
- Ethernet Home Networks. 
- Fiber Optics. 
- Cable Television.