Answer:
The above given statement is a fact.
Explanation:
A fact is nothing but a real statement which can never be false or imaginary or told in a future perspective. Let us analyze other options
Option 2: Opinion => An opinion can be anything and it can differ. A opinion is the way one people understand or perceive and give a statement according to that. An opinion always differs.
Option 3: Graphic => This is computer generated file, which can be true or false or imaginary. So this option is invalid
Option 4: Text => A text is nothing but words written together to convey a meaning. Though we feel like it suits the question, since the question speaks about the place, then it must definitely be fact and not just text.
 
        
             
        
        
        
Answer:
The invention of the toothbrush made a huge impact of society and people for many reasons. You should always brush your teeth and keep your mouth clean so you will have nice, white teeth, healthy gums, good breath, and just a clean mouth! Without the toothbrush, your mouth would be smelly, gross, and full of bacteria.Some of the different impact categories included acidification, climate change, eutrophication, human health, land use, resource use and water scarcity. The results concluded that the electric toothbrush had the greatest environmental impact in 15 out of the 16 categories with water scarcity being the exception.Using the electric toothbrush as an example, this article examines the growing acceptability of domestic health technologies that blur the traditional boundaries between health, aesthetics and consumption. By using empirical material from individual and household interviews about people's oral health practices, this research explores the relationships between an everyday artefact, its users and their environments. It investigates the ways in which oral health technologies do, or do not, become domesticated in the home environment. We conclude that the domestication of oral health technologies is not inevitable, with the electric toothbrush often becoming an ‘unstable object' in the domestic setting.
Explanation:
 
        
                    
             
        
        
        
This subject is a sub-topic in Computer Science and is related to how computers process tasks using Modern Processing Architectures. Modern Processor Architecture is an offshoot of computer architecture.
<h3>
What is Modern Processing  Architecture?</h3>
Please note that the information is incomplete hence the general answer. The complete question should provide figures for items 1 to 3. 
Modern Processor Architecture is the name given to computer processors with highly advanced capabilities.
In simple language, processors with modern architectures are those that have been built with the ability to complete many instructions or tasks at the same time. 
It can also perform or execute these instructions in random order. When a processor is able to do this, it is called Asynchronous performance.
Learn more about Computer Architecture at:
brainly.com/question/18185805
 
        
             
        
        
        
Answer:
sorry there are no options available 
 
        
             
        
        
        
Answer:
#include <iostream>
using namespace std;
class Digits
{
    public:
    int num;
    int read()       //method to read num from user
    {
        cout<<"Enter number(>0)\n";
        cin>>num;
        return num;
    }
    int digit_count(int num)  //method to count number of digits of num
    {
        int count=0;
        while(num>0)    //loop till num>0
        {
            num/=10;
            count++;   //counter which counts number of digits
        }
        return count;
    }
    int countDigits(int num)   //method to return remainder
    {
        int c=digit_count(num); //calls method inside method
        return num%c;   
    }
};
int main()
{
    Digits d;    //object of class Digits is created
    int number=d.read();   //num is read from user
    cout<<"\nRemainder is : "<<d.countDigits(number);  //used to find remainder
    return 0;
}
Output :
Enter number(>0)
343
Remainder is : 1
Explanation:
As program is missing to find errors , a logically write program is written to find the remainder when a number is divided by its number of digits. A class  Digits is constructed which has public variable num and methods read(), digit_count(), countDigits().
- read() - This method reads value of num from the user and return num.
- digit_count() - This method takes a integer as parameter and counts the number of digits of a number passed as argument. while loop is used to increement the counter until num<0. This returns the value of count.
- countDigits() - This method takes a integer as a parameter and returns remainder when the argument is divided by number of  digits of argument. Number of digits is calculated by using method digit_count().
At last in main method , object of Digits class is created and its methods are used to find the output.