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
irina [24]
2 years ago
5

Write long answer to the following question. a. Define microcomputer. Explain the types of microcomputers in detail.​

Computers and Technology
2 answers:
Dafna11 [192]2 years ago
7 0

Answer:

Microcomputer, an electronic device with a microprocessor as its central processing unit.

Explanation:

There are three types of microprocessors namely, CISC, RISC, and EPIC. ... A microprocessor is basically the brain of the computer. We can also call it simply a processor or CPU. Furthermore, a microprocessor is basically a computer processor that is mounted on a single IC (Integrated Circuit).

Uses transistors for more registers: Transistors are used for storing the complex instr...

RISC: CISC

Fewer registers are used: It requires more number of registers

lys-0071 [83]2 years ago
6 0

Answer:

A microcomputer is defined as a small PC having a microprocessor that works as a central processor. A small handheld device that looks like a smartphone with a central microprocessor is an example of a microcomputer.

Types of microcomputers

  • Desktop Computer
  • Mini Tower Microcomputer
  • Full Tower Microcomputer
  • Laptop
  • Notebook
  • Smartphone
  • Tablet
  • PDAs
  • Servers

Desktop Computer:

A desktop computer is a personal computer that handles complex operations and fit easily on your desk. This computer is heavyweight having components such as a separate screen, CPU, Keyboard & Mouse connected to the main unit via wires having USB connectors. The size of Desktop computers is larger than notebooks and laptops. Desktop microcomputers are cheaper and more reliable than notebooks or laptops and can be repaired easily.

Laptop

A laptop microcomputer is a laptop that is much smaller than a desktop computer powered by a battery and designed for low power consumption. A laptop looks like a briefcase and can easily fit on your desk or your lap.

Although laptops and desktop computers have the same functionality there is a great difference between them.

A laptop comes in one unit, with a thin display screen, keyboard touch, and touchpad used for navigation. Speakers are mounted into the unit.  A laptop is a multi-tasking computer that is able to perform complex operations just like a desktop computer.

Notebook Computer

Notebook computer just like a physical notebook having ultra-mobile3 inches thick screen with 3.5 pounds weight. This microcomputer can be great for commuters as they are powerful and lightweight. It is easy to carry a notebook computer from one place to another place as it fits easily into your briefcase. You can connect Notebook to the Internet by using a cable or Wi-Fi.

Smartphone

A smartphone is a cell phone that works like a computer and enables you to do much more than just making phone calls and send text . The smartphones are built up with very advanced technology that allows you to browse the Internet and run software programs like a computer.

A smartphone is a Multi-purpose phone that uses a touch screen for input. It is a Multi-tasking phone that can run thousands of smartphone apps including games, personal-use, and business-use programs.

The New generation Smartphone is used to send E-mails, Listening Music, take pictures, and use  social media  

Tablet

A tablet is a wireless, portable personal computer just like a Mobile Device with a touchscreen interface. The tablet is smaller than a notebook computer but bigger than a Smartphone.

A tablet has the same features as a smartphone such as a Touch screen display, a power full Battery as well as run apps, snipping pictures, and much more.

PDAs

PDAs stands for Personal Digital Assistants, are very small networked computers that can easily fit inside the palm of your hand. The PDAs are much powerful as they are often used as a replacement for desktop or laptop computers. Most of the PDAs have converged into smartphones such as Apple iPhone and Blackberry smartphone.

Mini Tower Microcomputer

The main unit of a mini-tower microcomputer is designed like a small tower. Its elegant design allows you to place it on your desk with less space consumption than a desktop computer. Similar to a desktop computer, wires are the source of connection to peripheral components.

Full Tower Microcomputer

A full tower is a bigger version of the mini-tower microcomputer, wider and higher in size. The basic components of the full tower model include the motherboard, storage device, graphics card, and power supply mounted into a cabinet design.

It also allows you to add additional parts such as drive bays to enhance the speed and functionality of the computer. You can easily fix it underneath your desk or place it on the floor.

<em />

<em>Hope you got it </em>

<em>If you have any question just ask me</em>

<em>If you think this is the best answer please mark me as BRAINLIEST</em>

You might be interested in
If an Administrator performs a clean install of Windows Server 2012 R2 on a new server, and then moves critical domain services
gayaneshka [121]

Answer:

The correct answer to the following question will be "Server role migration".

Explanation:

  • A process of moving data from one data to the next. Security concerns are the causes behind the system relocation, the hardware is also being changed and several other influences.
  • With this, you are setting up a new server, either virtual or physical, running a new version of Windows (Windows Server) and then moving your positions and facilities to the newly constructed Windows Server Virtual Machine/Physical.

Therefore, it's the right answer.

3 0
3 years ago
Build three classes that conform to the following interfaces. Use arrays in creating your classes (e.g., do not use the built-in
daser333 [38]

Explanation:

public class ArrayList {

private Object[] array = new Object[1];

/**

 * Places new element at location

 * @param c, element to be inserted

 * @param i, location it is to be placed

 */

public void insert(char c, int i) {

 if(i>this.size()){

  System.out.println("Index "+i +" outside of list size; max: " +this.size());

  System.exit(0);

 }

 int count = 0;

 try {

  Object[] other = new Object[this.array.length+1];

  switch(i){

     case 0:{

      other[0] = c;

      for(int j=1;j<this.array.length;j++)

       other[j] = this.array[j-1];

       

      this.array = other;

      break;

     }

     default: {

      for(int j=0;j<i;j++)

       other[j] = this.array[j];

      other[i] = c;

      for(int k=i+1;k<this.array.length;k++)

       other[k] = this.array[k-1];

      this.array = other;

      break;

     }

     }

 }

 catch(ArrayIndexOutOfBoundsException exception) {

     largerArray();

     if(++count == 2){

      System.out.println("Something went wrong.");

      System.exit(0);

     }  

 }

}

 

/**

 * Places new element at location

 * @param object, element to be inserted

 * @param index, location it is to be placed

 */

void insert(Object object, int index){

 if(index>this.size()){

  System.out.println("Index "+index +" outside of list size; max: " +this.size());

  System.exit(0);

 }

 int count = 0;

 try {

  Object[] other = new Object[this.array.length+1];

  switch(index){

     case 0:{

      other[0] = object;

      for(int j=1;j<this.array.length;j++)

       other[j] = this.array[j-1];

       

      this.array = other;

      break;

     }

     default: {

      for(int j=0;j<index;j++)

       other[j] = this.array[j];

      other[index] = object;

      for(int k=index+1;k<this.array.length;k++)

       other[k] = this.array[k];

      this.array = other;

      break;

     }

     }

 }

 catch(ArrayIndexOutOfBoundsException exception) {

     largerArray();

     if(++count == 2){

      System.out.println("Something went wrong.");

      System.exit(0);

     }  

 }

}

 

/**

 * Removes element at index

 * @param index, location to remove

 * @return temp, object removed

 */

Object remove(int index){

 if(index>this.size()){

  System.out.println("Index "+index +" outside of list size; max: " +this.size());

  System.exit(0);

 }

 Object temp = this.array[index];

 int count = 0;

 try {

  Object[] other = new Object[this.array.length-1];

  switch(index){

     case 0:{

      other[0] = this.array[1];

      for(int j=1;j<this.size();j++)

       other[j] = this.array[j+1];

       

      this.array = other;

      break;

     }

     default: {

      for(int j=0;j<index;j++)

       other[j] = this.array[j];

      for(int k=index;k<this.size();k++)

       other[k] = this.array[k+1];

      this.array = other;

      break;

     }

     }

 }

 catch(ArrayIndexOutOfBoundsException exception) {

     largerArray();

     if(++count == 2){

      System.out.println("Something went wrong.");

      System.exit(0);

     }  

 }

 return temp;

}

 

/**

 * Copies the array to a new array twice the size.

 */

public void largerArray(){

 Object[] other = new Object[this.array.length*2];

 System.arraycopy(this.array, 0, other, 0, this.array.length);

 this.array = other;

}

 

/**

 * @return true if there are null elements

 */

public boolean isEmpty() {

 boolean bool = true;

 for (Object element : this.array) {

  if(element!=null){

   bool = false;

   break;

  }

  else{

   bool = true;

   break;

 }

 }

 return bool;

}

 

/**

 * Determines the real length of the array

 * @return length of non-null elements

 */

public int size(){

 int count = 0;

 for(int i=0;i<this.array.length;i++){

  if(this.array[i]==null)

   continue;

  else

   count++;

 }

 return count;

}

 

/**

 * Converts array to string.

 * @return the Array as a string

 */

public String toString(){

 String string = "";

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

  if(i<this.size()-1)

   string += this.array[i]+", ";

  else

   string += this.array[i];

 }

 return string;

}

 

/**

 * Similar to get, imput the character, retrieve index.

 * @param object, what we're looking for

 * @return index

 */

int indexOf(Object object){

 int index = -1;

 for(int i=0;i<this.array.length;i++){

  if(this.array[i]==(object))

   index = i;

  else continue;

 }

 return index;

}

 

/**

 * @param object, Arraylist tyoe

 * @return true, if the elements of the arrays are equivalent.

 */

public boolean equals(ArrayList object){

 boolean bool = false;

 int thisLength = this.array.length;

 int objectLength = object.array.length;

 if(thisLength > objectLength){

  for(int i=0;i<this.array.length;i++)

   if(this.array[i] == object.array[i])

    bool = true;

   else{

    bool = false;

    break;

   }

 }

 else{

  for(int i=0;i<object.array.length;i++)

   if(this.array[i] == object.array[i])

    bool = true;

   else{

    bool = false;

    break;

   }

 }

 return bool;

}

 

/**

 * Getter to check what is at an index

 * @param index, location

 * @return the character at this position

 */

Object get(int index){

 return this.array[index];

}

}

6 0
2 years ago
What do work places allow a company to do
anygoal [31]
D. They provide a platform for collaboration
8 0
3 years ago
¿Cuál es la influencia de las redes sociales en casa?
Natalka [10]
La influencia de las redes sociales en la casa puede variar. Primero puede ser bueno porque podemos usar las redes sociales para ver recetas de cocina para hacer en casa. Segundo puede ser malo porque las personas de la casa podrían sufrir acoso cibernético .
3 0
3 years ago
After the following code runs, what will be the value of result? var x = 30; function get () { return x; } function set (value)
PilotLPTM [1.2K]

Answer:

Null

Explanation:

It entirely depends on the language you are using to implement this.

But generally by the rule of scope, "result" will return null since get() was not defined to accept any argument, and it neither know the global "x" not defined it's own x in the function.

5 0
3 years ago
Other questions:
  • All of the following statements correctly describe an advantage or disadvantage associated with the use of Monte Carlo Analysis
    9·1 answer
  • true /falseCompression of entries in the term-document matrix can be used to reduce run-time storage and execution-time requirem
    10·1 answer
  • Write a script which: Uses the input function to get any number and store it in a variable named my_number Create a new variable
    8·1 answer
  • Which is the correct formula to add the values in cells A1 and B1?
    11·2 answers
  • A friend is having a problem with keeping a fish tank at the right temperature so the fish stay healthy. Describe how you could
    9·1 answer
  • The level of competition is an important factor for many people when selecting a physical activity.
    7·2 answers
  • A 'array palindrome' is an array which, when its elements are reversed, remains the same (i.e., the elements of the array are sa
    6·1 answer
  • We already know that we can create a lunar lander application of the pipe-and-filter architecture style from three independent J
    6·1 answer
  • Arrays of structures ________. Group of answer choices None of the above. are automatically passed by reference cannot be passed
    6·1 answer
  • Refer to the exhibit. Host B on subnet Teachers transmits a packet to host D on subnet Students. Which Layer 2 and Layer 3 addre
    11·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!