We found 93 results that contain "906"
Posted on: #iteachmsu
DISCIPLINARY CONTENT
What is Lorem Ipsum?
What is Lorem Ipsum?
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
Why do we use it?
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.
Why do we use it?
It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like).
Authored by:
Article 3

Posted on: #iteachmsu

What is Lorem Ipsum?
What is Lorem Ipsum?
Lorem Ipsum is simply dummy text of the p...
Lorem Ipsum is simply dummy text of the p...
Authored by:
DISCIPLINARY CONTENT
Thursday, Nov 23, 2023
Posted on: #iteachmsu
Beyond space missions, this approachable design allows Laika to integrate into domestic contexts.
In the intersection of space travel and robotics, Jihee Kim introduces Laika — a concept design for a life-like, AI robot pet that can interact with humans. Laika has been designed for upcoming space projects such as NASA’s Artemis and Moon to Mars missions set for 2025-2030, envisioned as the ultimate companion for space explorers as it caters to both their physical and emotional well-being while they are away from home. Unlike the aggressive robotic dogs currently available on the market, Jihee Kim has designed Laika with a friendly and organic finish that enables it to connect to its human counterpart on an emotional level when in use while monitoring their health conditions and assisting them in emergencies. Beyond space missions, this approachable design allows Laika to integrate into domestic contexts.
Image :
video link : Embedded URL test :
Table :
Sr NO
Assignee
Task
Cat 1
Rohit
Test 1
Cat 2
Shweta
Test 2
Numbering :
Number 1
Number 2
Bullets :
Bullets 1
Bullets 2
Bullets 3
URL : https://www.designboom.com/technology/life-like-ai-robot-dog-laika-space-travelers-jihee-kim-11-19-2023/
Image :
video link : Embedded URL test :
Table :
Sr NO
Assignee
Task
Cat 1
Rohit
Test 1
Cat 2
Shweta
Test 2
Numbering :
Number 1
Number 2
Bullets :
Bullets 1
Bullets 2
Bullets 3
URL : https://www.designboom.com/technology/life-like-ai-robot-dog-laika-space-travelers-jihee-kim-11-19-2023/
Authored by:
vijayalaxmi vishwanath mali

Posted on: #iteachmsu
ASSESSING LEARNING
Eating a wide variety of nutritious foods, including fruit, vegetables, nuts, seeds, and lean protei
Eating a wide variety of nutritious foods, including fruit, vegetables, nuts, seeds, and lean protein can help support your overall health.
Many foods are both healthy and tasty. By filling your plate with fruits, vegetables, quality protein sources, and other whole foods, you’ll have meals that are colorful, versatile, and good for you.
Here are 50 healthy and delicious to include in your diet.
Col 1
Col 2
Col 3
Row 1
Row 2
Row 3
Many foods are both healthy and tasty. By filling your plate with fruits, vegetables, quality protein sources, and other whole foods, you’ll have meals that are colorful, versatile, and good for you.
Here are 50 healthy and delicious to include in your diet.
Col 1
Col 2
Col 3
Row 1
Row 2
Row 3
Authored by:
Vijaya

Posted on: #iteachmsu

Eating a wide variety of nutritious foods, including fruit, vegetables, nuts, seeds, and lean protei
Eating a wide variety of nutritious foods, including fruit, vegetab...
Authored by:
ASSESSING LEARNING
Friday, Nov 24, 2023
Posted on: QA groups
Data communications
Data communications refers to the transmission of this digital data between two or more computers and a computer network or data network is a telecommunications network that allows computers to exchange data. The physical connection between networked computing devices is established using either cable media or wireless media. The best-known computer network is the Internet.
Posted by:
Super Admin

Posted on: QA groups

Data communications
Data communications refers to the transmission of this digital data...
Posted by:
Wednesday, May 31, 2023
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
Python Remove a Trailing New Line.
1. Quick Examples of Removing Trailing New Line
These examples will give a high-level overview of methods for removing trailing new lines. We will go through each method in more detail along with examples.
2. rstrip() Remove Trailing New Line in Python
One of the simplest and most commonly used methods in Python to remove trailing new lines is to use the rstrip() method. This method removes any whitespace characters from the end of a string, which includes new lines. To remove a trailing newline from a string, simply call the rstrip() method on that string.
3. String Slicing – Remove Trailing New Lines Characters
Another simple way to remove trailing new lines in Python is to use string slicing. String slicing allows you to extract a portion of a string by specifying a range of indices. By specifying the start and end indices of the string, you can easily remove the trailing newline character.
4. strip() – Strip New Line Character
The strip() method is a more general-purpose method for removing characters from the beginning and end of a string. It can be used to remove not only trailing new lines, but also any other specified characters.
5. splitlines() – Split Newline and Join
Though the splitlines() method is used for splitting a string into a list of lines. It can also be used to remove trailing new lines by splitting a string into lines and then rejoining them without the newline character.
So basically we will first split the string by new lines and then we will use the join() method to join the string. So this new string will contain no new lines character.
These examples will give a high-level overview of methods for removing trailing new lines. We will go through each method in more detail along with examples.
2. rstrip() Remove Trailing New Line in Python
One of the simplest and most commonly used methods in Python to remove trailing new lines is to use the rstrip() method. This method removes any whitespace characters from the end of a string, which includes new lines. To remove a trailing newline from a string, simply call the rstrip() method on that string.
3. String Slicing – Remove Trailing New Lines Characters
Another simple way to remove trailing new lines in Python is to use string slicing. String slicing allows you to extract a portion of a string by specifying a range of indices. By specifying the start and end indices of the string, you can easily remove the trailing newline character.
4. strip() – Strip New Line Character
The strip() method is a more general-purpose method for removing characters from the beginning and end of a string. It can be used to remove not only trailing new lines, but also any other specified characters.
5. splitlines() – Split Newline and Join
Though the splitlines() method is used for splitting a string into a list of lines. It can also be used to remove trailing new lines by splitting a string into lines and then rejoining them without the newline character.
So basically we will first split the string by new lines and then we will use the join() method to join the string. So this new string will contain no new lines character.
Authored by:
Vijaya
Posted on: #iteachmsu
Python Remove a Trailing New Line.
1. Quick Examples of Removing Trailing New Line
T...
T...
Authored by:
Tuesday, Sep 26, 2023
Posted on: #iteachmsu
robot pet that can interact with humans.
In the intersection of space travel and robotics, Jihee Kim introduces Laika — a concept design for a life-like, AI robot pet that can interact with humans. Laika has been designed for upcoming space projects such as NASA’s Artemis and Moon to Mars missions set for 2025-2030, envisioned as the ultimate companion for space explorers as it caters to both their physical and emotional well-being while they are away from home. Unlike the aggressive robotic dogs currently available on the market, Jihee Kim has designed Laika with a friendly and organic finish that enables it to connect to its human counterpart on an emotional level when in use while monitoring their health conditions and assisting them in emergencies. Beyond space missions, this approachable design allows Laika to integrate into domestic contexts.
Image :
video link : Embedded URL test :
Table :
Sr NO
Assignee
Task
Cat 1
Rohit
Test 1
Cat 2
Shweta
Test 2
Numbering :
Number 1
Number 2
Bullets :
Bullets 1
Bullets 2
Bullets 3
URL : https://www.designboom.com/technology/life-like-ai-robot-dog-laika-space-travelers-jihee-kim-11-19-2023/
Image :
video link : Embedded URL test :
Table :
Sr NO
Assignee
Task
Cat 1
Rohit
Test 1
Cat 2
Shweta
Test 2
Numbering :
Number 1
Number 2
Bullets :
Bullets 1
Bullets 2
Bullets 3
URL : https://www.designboom.com/technology/life-like-ai-robot-dog-laika-space-travelers-jihee-kim-11-19-2023/
Authored by:
Vijayalaxmi vishwanath mali

Posted on: #iteachmsu

robot pet that can interact with humans.
In the intersection of space travel and robotics, Jihee Kim in...
Authored by:
Wednesday, Nov 22, 2023
Posted on: #iteachmsu
Organizational Supports for ADHD Students
Primer text from the College of William & Mary.https://education.wm.edu/centers/ttac/documents/packets/adhd.pdfMany students with ADHD have significant difficulties with organization.
They are more likely to respond positively when teachers establish class routines and set procedures and maintain a well-organized learning environment. Clear rules and advanced planning are keys to success for teachers of students with ADHD.The following organizational supports are particularly useful. Students should be taught to use these tools through teacher modeling and guided practice with feedback before being expected to use them more independently.Assignment Notebook: Provide the student with an assignment notebook to helporganize homework and seatwork.Color-Coded Folders: Provide the student with color-coded folders to helporganize assignments for different academic subjects.Homework Partners: Assign the student a partner who can help record
They are more likely to respond positively when teachers establish class routines and set procedures and maintain a well-organized learning environment. Clear rules and advanced planning are keys to success for teachers of students with ADHD.The following organizational supports are particularly useful. Students should be taught to use these tools through teacher modeling and guided practice with feedback before being expected to use them more independently.Assignment Notebook: Provide the student with an assignment notebook to helporganize homework and seatwork.Color-Coded Folders: Provide the student with color-coded folders to helporganize assignments for different academic subjects.Homework Partners: Assign the student a partner who can help record
Posted by:
Super Admin

Posted on: #iteachmsu

Organizational Supports for ADHD Students
Primer text from the College of William & Mary.https://educatio...
Posted by:
Wednesday, Aug 23, 2023