Answer:
Such three ways to include the work of other writers in your own writing differ depending on whether you are close to the source.
Explanation:
Quotations must be the same as the original, using a narrow source segment. We must be word for word on the source document and the original author must be credited.
Paraphrasing means putting your own words into a line from the source material. The original source should also be assigned a paraphrase. Paraphrased material usually is shorter than the original one, which takes and slightly condenses a somewhat broader part of the source.
In summary, you have to put the main idea(s), including only the main point(s), in your own words. Again, summarized ideas must be attributed to the source. Summaries are much shorter than the original and give a broad overview of the source documents.
Answer:
Option b = "is stored in ROM to ensure to avoid any infection from viruses. "
Explanation:
In order to to understand the fundamentals of an Operating system in computer one needs to know what the bootstrap program is.
The BOOTSTRAP PROGRAM is first program that will run when the computer is switched on, thus the program( the BOOTSTRAP PROGRAM) will be the program to open the OPERATING SYSTEM.
The device in laptops and personal computers known as ROM is an acronym that stands for Read-Only Memory and it is a storage medium. Because of ROM inability to get Virus it is used in the storage of Bootstrap program.
Answer:
The function written in C++
int str(string word)
{
int count = 1;
for(int i =0; i<word.length();i++)
{
if(word[i] == ' ')
{
count++;
}
}
return count;
}
Explanation:
This line defines the function
int str(string word)
{
This line initializes count to 1
int count = 1;
This line iterates through the input string
for(int i =0; i<word.length();i++)
{
This line checks for blank space
if(word[i] == ' ')
{
Variable count is incremented to indicate a word count
count++;
}
}
return count;
}
<em>See attachment for full program</em>
Answer:
For designing a database suitable for a University registrar, the following information is included which are Information about Students, Information about Departments, Information about Professors, Information about courses, Student Grades,TA's for a course, Department offering different courses.
In creating the database registrar system the following values are defined such as Entity, Attributes of entities,The relationship among entities.
Explanation:
Solution
The following requirements are for designing of database for a University registrar.
The Database Schema includes the following:
- Information about Students
- Information about Departments.
- Information about Professors.
- Information about courses.
- Student Grades.
- TA's for a course.
- Department offering different courses.
Now,
For the design of Database for Registrar System we need to define the following:
(1)Entity: Student, Course, Instructor, Course offering.
(2) Attributes of Entities:
- Student entity has Sid, name, program as its attributes
- Course has Course_n, title, credits, and syllabus as its attributes
- Instructor has iid ,name ,dept, title as its attributes
- Course offering has section_no ,time, room, year,semester as its attributes
(3) Relationship among various entities:
- Enrolls
- Teaches
- © is offered
Note: kindly find an attached copy of the E-R Diagram for University Registrar below, and his diagram shows student entity enrolls various courses which can be having teaches relationship with instructor. Course is being offered by relationship is offered by course offering.