We found 13 results that contain "parents"
Posted on: #iteachmsu
NAVIGATING CONTEXT
Warning Signs a Child Is Being Cyberbullied
Warning Signs a Child Is Being Cyberbullied or Is Cyberbullying
A child may be involved in cyberbullying in several ways. A child can be bullied, bully others, or witness bullying. Parents, teachers, and other adults may not be aware of all the social media platforms and apps that a child is using. The more digital platforms that a child uses, the more opportunities there are for being exposed to potential cyberbullying.
Many of the warning signs that cyberbullying is occurring happen around a child’s use of their device. Since children spend a lot of time on their devices, increases or decreases in use may be less noticeable. It’s important to pay attention when a child exhibits sudden changes in digital and social behavior. Some of the warning signs that a child may be involved in cyberbullying are:
Noticeable, rapid increases or decreases in device use, including texting.
A child exhibits emotional responses (laughter, anger, upset) to what is happening on their device.
A child hides their screen or device when others are near, and avoids discussion about what they are doing on their device.
Social media accounts are shut down or new ones appear.
A child starts to avoid social situations, even those that were enjoyed in the past.
A child becomes withdrawn or depressed, or loses interest in people and activities.
A child may be involved in cyberbullying in several ways. A child can be bullied, bully others, or witness bullying. Parents, teachers, and other adults may not be aware of all the social media platforms and apps that a child is using. The more digital platforms that a child uses, the more opportunities there are for being exposed to potential cyberbullying.
Many of the warning signs that cyberbullying is occurring happen around a child’s use of their device. Since children spend a lot of time on their devices, increases or decreases in use may be less noticeable. It’s important to pay attention when a child exhibits sudden changes in digital and social behavior. Some of the warning signs that a child may be involved in cyberbullying are:
Noticeable, rapid increases or decreases in device use, including texting.
A child exhibits emotional responses (laughter, anger, upset) to what is happening on their device.
A child hides their screen or device when others are near, and avoids discussion about what they are doing on their device.
Social media accounts are shut down or new ones appear.
A child starts to avoid social situations, even those that were enjoyed in the past.
A child becomes withdrawn or depressed, or loses interest in people and activities.
Posted by:
Chathuri Super admin..

Posted on: #iteachmsu

Warning Signs a Child Is Being Cyberbullied
Warning Signs a Child Is Being Cyberbullied or Is Cyberbullying
A c...
A c...
Posted by:
NAVIGATING CONTEXT
Thursday, Sep 26, 2019
Posted on: #iteachmsu
DISCIPLINARY CONTENT
Factors for good health
Regular exercise, balanced nutrition, and adequate rest all contribute to good health. People receive medical treatment to maintain the balance, when necessary. Physical well-being involves pursuing a healthful lifestyle to decrease the risk of disease.
Good health depends on a wide range of factors.
Genetic factors
A person is born with a variety of genes. In some people, an unusual genetic pattern or change can lead to a less-than-optimum level of health. People may inherit genes from their parents that increase their risk for certain health conditions.
Environmental factors
Environmental factors play a role in health. Sometimes, the environment alone is enough to impact health. Other times, an environmental trigger can cause illness in a person who has an increased genetic risk of a particular disease.
Access to healthcare plays a role, but the WHO suggests that the following factors may have a more significant impact on health than this:
where a person lives
the state of the surrounding environment
genetics
their income
their level of education
employment status
It is possible to categorize these as follows:
The social and economic environment: This may include the financial status of a family or community, as well as the social culture and quality of relationships.
The physical environment: This includes which germs exist in an area, as well as pollution levels.
A person’s characteristics and behaviors: A person’s genetic makeup and lifestyle choices can affect their overall health.
Good health depends on a wide range of factors.
Genetic factors
A person is born with a variety of genes. In some people, an unusual genetic pattern or change can lead to a less-than-optimum level of health. People may inherit genes from their parents that increase their risk for certain health conditions.
Environmental factors
Environmental factors play a role in health. Sometimes, the environment alone is enough to impact health. Other times, an environmental trigger can cause illness in a person who has an increased genetic risk of a particular disease.
Access to healthcare plays a role, but the WHO suggests that the following factors may have a more significant impact on health than this:
where a person lives
the state of the surrounding environment
genetics
their income
their level of education
employment status
It is possible to categorize these as follows:
The social and economic environment: This may include the financial status of a family or community, as well as the social culture and quality of relationships.
The physical environment: This includes which germs exist in an area, as well as pollution levels.
A person’s characteristics and behaviors: A person’s genetic makeup and lifestyle choices can affect their overall health.
Posted by:
Rupali Jagtap
Posted on: #iteachmsu
Factors for good health
Regular exercise, balanced nutrition, and adequate rest all contrib...
Posted by:
DISCIPLINARY CONTENT
Thursday, Dec 31, 2020
Posted on: #iteachmsu
DISCIPLINARY CONTENT
A class is a user-defined blueprint or prototype from which objects are created. -- Edited
A class is a user-defined blueprint or prototype from which objects are created. It represents the set of properties or methods that are common to all objects of one type. Using classes, you can create multiple objects with the same behavior instead of writing their code multiple times. This includes classes for objects occurring more than once in your code. https://www.javatpoint.com/microprocessor-introduction In general, class declarations can include these components in order:
Modifiers: A class can be public or have default access (Refer to this for details).
Class name: The class name should begin with the initial letter capitalized by convention.
Superclass (if any): The name of the class’s parent (superclass), if any, preceded by the keyword extends. A class can only extend (subclass) one parent.
Interfaces (if any): A comma-separated list of interfaces implemented by the class, if any, preceded by the keyword implements. A class can implement more than one interface.
Body: The class body is surrounded by braces, { }.
An object is a basic unit of Object-Oriented Programming that represents real-life entities. A typical Java program creates many objects, which as you know, interact by invoking methods. The objects are what perform your code, they are the part of your code visible to the viewer/user. An object mainly consists of:
State: It is represented by the attributes of an object. It also reflects the properties of an object.
Behavior: It is represented by the methods of an object. It also reflects the response of an object to other objects.
Identity: It is a unique name given to an object that enables it to interact with other objects.
Method: A method is a collection of statements that perform some specific task and return the result to the caller. A method can perform some specific task without returning anything. Methods allow us to reuse the code without retyping it, which is why they are considered time savers. In Java, every method must be part of some class, which is different from languages like C, C++, and Python.
Modifiers: A class can be public or have default access (Refer to this for details).
Class name: The class name should begin with the initial letter capitalized by convention.
Superclass (if any): The name of the class’s parent (superclass), if any, preceded by the keyword extends. A class can only extend (subclass) one parent.
Interfaces (if any): A comma-separated list of interfaces implemented by the class, if any, preceded by the keyword implements. A class can implement more than one interface.
Body: The class body is surrounded by braces, { }.
An object is a basic unit of Object-Oriented Programming that represents real-life entities. A typical Java program creates many objects, which as you know, interact by invoking methods. The objects are what perform your code, they are the part of your code visible to the viewer/user. An object mainly consists of:
State: It is represented by the attributes of an object. It also reflects the properties of an object.
Behavior: It is represented by the methods of an object. It also reflects the response of an object to other objects.
Identity: It is a unique name given to an object that enables it to interact with other objects.
Method: A method is a collection of statements that perform some specific task and return the result to the caller. A method can perform some specific task without returning anything. Methods allow us to reuse the code without retyping it, which is why they are considered time savers. In Java, every method must be part of some class, which is different from languages like C, C++, and Python.
Authored by:
Vijayalaxmi Mhetre

Posted on: #iteachmsu

A class is a user-defined blueprint or prototype from which objects are created. -- Edited
A class is a user-defined blueprint or prototype from whi...
Authored by:
DISCIPLINARY CONTENT
Monday, Mar 11, 2024
Posted on: #iteachmsu
What Is Big Data? and How Big Data Works?
Big data:Big data refers to the large, diverse sets of information that grow at ever-increasing rates. It encompasses the volume of information, the velocity or speed at which it is created and collected, and the variety or scope of the data points being covered (known as the "three v's" of big data).
Big data is a great quantity of diverse information that arrives in increasing volumes and with ever-higher velocity.
Big data can be structured (often numeric, easily formatted and stored) or unstructured (more free-form, less quantifiable).
Nearly every department in a company can utilize findings from big data analysis, but handling its clutter and noise can pose problems.
Big data can be collected from publicly shared comments on social networks and websites, voluntarily gathered from personal electronics and apps, through questionnaires, product purchases, and electronic check-ins.
Big data is most often stored in computer databases and is analyzed using software specifically designed to handle large, complex data sets.
How Big Data Works
Big data can be categorized as unstructured or structured. Structured data consists of information already managed by the organization in databases and spreadsheets; it is frequently numeric in nature. Unstructured data is information that is unorganized and does not fall into a predetermined model or format. It includes data gathered from social media sources, which help institutions gather information on customer needs.
Big data can be collected from publicly shared comments on social networks and websites, voluntarily gathered from personal electronics and apps, through questionnaires, product purchases, and electronic check-ins. The presence of sensors and other inputs in smart devices allows for data to be gathered across a broad spectrum of situations and circumstances.
Big data is a great quantity of diverse information that arrives in increasing volumes and with ever-higher velocity.
Big data can be structured (often numeric, easily formatted and stored) or unstructured (more free-form, less quantifiable).
Nearly every department in a company can utilize findings from big data analysis, but handling its clutter and noise can pose problems.
Big data can be collected from publicly shared comments on social networks and websites, voluntarily gathered from personal electronics and apps, through questionnaires, product purchases, and electronic check-ins.
Big data is most often stored in computer databases and is analyzed using software specifically designed to handle large, complex data sets.
How Big Data Works
Big data can be categorized as unstructured or structured. Structured data consists of information already managed by the organization in databases and spreadsheets; it is frequently numeric in nature. Unstructured data is information that is unorganized and does not fall into a predetermined model or format. It includes data gathered from social media sources, which help institutions gather information on customer needs.
Big data can be collected from publicly shared comments on social networks and websites, voluntarily gathered from personal electronics and apps, through questionnaires, product purchases, and electronic check-ins. The presence of sensors and other inputs in smart devices allows for data to be gathered across a broad spectrum of situations and circumstances.
Authored by:
Rupali

Posted on: #iteachmsu

What Is Big Data? and How Big Data Works?
Big data:Big data refers to the large, diverse sets of information ...
Authored by:
Thursday, Jan 14, 2021
Posted on: #iteachmsu
DISCIPLINARY CONTENT
Finibus Bonorum et Malorum", written by Cicero in 45 BC
Section 1.10.33 of "de Finibus Bonorum et Malorum", written by Cicero in 45 BC
"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat."
1914 translation by H. Rackham
"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains."
help@lipsum.comPrivacy Policy · Do Not Sell My Personal Information · Change Consent
Image:
video : Vedio linked:
link :
https://www.lipsum.com/table:
Sr No
Table 1
Table 2
numbering :
1121
13131
1313
Bullets :
Smaple 1
Sample 2
Sample 3
Special char: æ¥
"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat."
1914 translation by H. Rackham
"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains."
help@lipsum.comPrivacy Policy · Do Not Sell My Personal Information · Change Consent
Image:
video : Vedio linked:
link :
https://www.lipsum.com/table:
Sr No
Table 1
Table 2
numbering :
1121
13131
1313
Bullets :
Smaple 1
Sample 2
Sample 3
Special char: æ¥
Authored by:
Aricle

Posted on: #iteachmsu

Finibus Bonorum et Malorum", written by Cicero in 45 BC
Section 1.10.33 of "de Finibus Bonorum et Malorum", written by Cice...
Authored by:
DISCIPLINARY CONTENT
Thursday, Nov 23, 2023