<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
<channel>
<title>Questions and Answers - Recent questions and answers in Biology</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=qa&amp;qa_1=biology</link>
<description>Powered by: RG. Software Solutions</description>
<item>
<title>How is a form created for a single table?</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15145&amp;qa_1=how-is-a-form-created-for-a-single-table</link>
<description>How is a form created for a single table?</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15145&amp;qa_1=how-is-a-form-created-for-a-single-table</guid>
<pubDate>Sat, 09 Feb 2019 08:28:36 +0000</pubDate>
</item>
<item>
<title>Answered: Write the procedure to open an existing database file?</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15143&amp;qa_1=write-the-procedure-to-open-an-existing-database-file&amp;show=15144#a15144</link>
<description>Open an Access database from Windows Explorer. In Windows Explorer, navigate to the drive or folder containing the Access database file you want to open and double-click the database. Access starts and the database is opened. Open a database from within Access. If Access is already running, use the following procedure to open a database.</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15143&amp;qa_1=write-the-procedure-to-open-an-existing-database-file&amp;show=15144#a15144</guid>
<pubDate>Sat, 09 Feb 2019 08:21:40 +0000</pubDate>
</item>
<item>
<title>Answered: What are the four major components of the database systems?</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15141&amp;qa_1=what-are-the-four-major-components-of-the-database-systems&amp;show=15142#a15142</link>
<description>A database is a collection of data or information. Database Management System (DBMS) is a program that manages data in a database.&lt;br /&gt;
&lt;br /&gt;
A database could be as simple as a phone book or stock tables, or as sophisticated as a biological repository with terabytes (TB) of data. Keeping abreast with the technology trends the complexity and the effectiveness of the data management systems grew exponentially and lead to the development of advanced techniques.&lt;br /&gt;
&lt;br /&gt;
These included die relational database model wherein relations between different pieces of data were employed to ensure fast storage and retrieval of data along with the ability to handle complex data storage.&lt;br /&gt;
&lt;br /&gt;
This was followed by the development of object-oriented databases which view pieces or group of data as objects that could be directly manipulated. Generally a database system involves four major components.&lt;br /&gt;
&lt;br /&gt;
1. Data&lt;br /&gt;
&lt;br /&gt;
2. Hardware&lt;br /&gt;
&lt;br /&gt;
ADVERTISEMENTS:&lt;br /&gt;
&lt;br /&gt;
3. Software&lt;br /&gt;
&lt;br /&gt;
4. Users&lt;br /&gt;
&lt;br /&gt;
DBMS are employed by any reasonably self-contained commercial, scientific, technical or other organization (from a single individual to a large company) and may be used for many reasons. In recent years, the relational database has generally become the defect standard for database storage.&lt;br /&gt;
&lt;br /&gt;
This is due to the usability of the relational model itself, and because it provides a standard interface called Structured Query Language (SQL) that allows many different database tools and products to work together in a consistent and understandable way.</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15141&amp;qa_1=what-are-the-four-major-components-of-the-database-systems&amp;show=15142#a15142</guid>
<pubDate>Sat, 09 Feb 2019 08:17:52 +0000</pubDate>
</item>
<item>
<title>Answered: What is identifier? Explain its type in detail.</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15139&amp;qa_1=what-is-identifier-explain-its-type-in-detail&amp;show=15140#a15140</link>
<description>
&lt;p&gt;Identifiers&lt;/p&gt;&lt;p&gt;Identifiers are names for entities in a C program, such as variables, arrays, functions, structures, unions and labels. An identifier can be composed only of uppercase, lowercase letters, underscore and digits, but should start only with an alphabet or an underscore. If the identifier is not used in an external link process, then it is called as internal. Example: Local variable. If the identifier is used in an external link process, then it is called as external. Example: Global variable&lt;/p&gt;&lt;p&gt;An identifier is a string of alphanumeric characters that begins with an alphabetic character or an underscore character that are used to represent various programming elements such as variables, functions, arrays, structures, unions and so on. Actually, an identifier is a user-defined word. There are 53 characters, to represent identifiers. They are 52 alphabetic characters (i.e., both uppercase and lowercase alphabets) and the underscore character. The underscore character is considered as a letter in identifiers. The underscore character is usually used in the middle of an identifier. There are 63 alphanumeric characters, i.e., 53 alphabetic characters and 10 digits (i.e., 0-9).&lt;/p&gt;&lt;p&gt;Rules for constructing identifiers&lt;/p&gt;&lt;p&gt;1.&amp;nbsp; &amp;nbsp; &amp;nbsp;The first character in an identifier must be an alphabet or an underscore and can be followed only by any number alphabets, or digits or underscores.&lt;/p&gt;&lt;p&gt;2.&amp;nbsp; &amp;nbsp; &amp;nbsp;They must not begin with a digit.&lt;/p&gt;&lt;p&gt;3.&amp;nbsp; &amp;nbsp; &amp;nbsp;Uppercase and lowercase letters are distinct. That is, identifiers are case sensitive.&lt;/p&gt;&lt;p&gt;4.&amp;nbsp; &amp;nbsp; &amp;nbsp;Commas or blank spaces are not allowed within an identifier.&lt;/p&gt;&lt;p&gt;5.&amp;nbsp; &amp;nbsp; &amp;nbsp;Keywords cannot be used as an identifier.&lt;/p&gt;&lt;p&gt;6.&amp;nbsp; &amp;nbsp; &amp;nbsp;Identifiers should not be of length more than 31 characters.&lt;/p&gt;&lt;p&gt;7.&amp;nbsp; &amp;nbsp; &amp;nbsp;Identifiers must be meaningful, short, quickly and easily typed and easily read.&lt;/p&gt;&lt;p&gt;Valid identifiers:&amp;nbsp; &amp;nbsp; &amp;nbsp; total&amp;nbsp; &amp;nbsp; sum&amp;nbsp; &amp;nbsp; &amp;nbsp;average&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; _x&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; y_&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; mark_1&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;x1&lt;/p&gt;&lt;p&gt;Invalid identifiers&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;1x&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;-&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;begins with a digit&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; char&amp;nbsp; &amp;nbsp; -&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;reserved word&lt;/p&gt;&lt;p&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; x+y&amp;nbsp; &amp;nbsp; &amp;nbsp; -&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;special character&lt;/p&gt;&lt;p&gt;&lt;/p&gt;&lt;p&gt;Note: Underscore character is usually used as a link between two words in long identifiers.&lt;/p&gt;&lt;div&gt;&lt;/div&gt;
</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15139&amp;qa_1=what-is-identifier-explain-its-type-in-detail&amp;show=15140#a15140</guid>
<pubDate>Sat, 09 Feb 2019 08:10:21 +0000</pubDate>
</item>
<item>
<title>Answered: How is Microsoft Access started or Loaded?</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15137&amp;qa_1=how-is-microsoft-access-started-or-loaded&amp;show=15138#a15138</link>
<description>The following message pops up when I attempt to open Microsoft Access from my desktop: Microsoft Access has failed. Your database might not funtion correctly. This can occur if you do not have the necessary permissions to install Microsoft Access on this computer.&amp;quot; Is there a solution to this? I have already restarted my computer twice.</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15137&amp;qa_1=how-is-microsoft-access-started-or-loaded&amp;show=15138#a15138</guid>
<pubDate>Sat, 09 Feb 2019 08:07:52 +0000</pubDate>
</item>
<item>
<title>Answered: What elements combined, produce the physical database design? Explain it?</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15135&amp;qa_1=what-elements-combined-produce-the-physical-database-design-explain-it&amp;show=15136#a15136</link>
<description>What elements comprise a database? This article deals mainly with the objects that comprise a database. Several concepts are worthy of coverage within the scope of the database as it relates to database design. As you work with data and databases, you will see how the origination of business information and databases is formulated into database elements. The intent here is to provide a brief coverage of basic database elements to provide you with a basic understanding of the elements found in a database.&lt;br /&gt;
&lt;br /&gt;
Several topics are discussed in the following sections. These topics include:&lt;br /&gt;
&lt;br /&gt;
The database schema&lt;br /&gt;
&lt;br /&gt;
Schema objects&lt;br /&gt;
&lt;br /&gt;
Indexes&lt;br /&gt;
&lt;br /&gt;
Tables&lt;br /&gt;
&lt;br /&gt;
Fields and columns&lt;br /&gt;
&lt;br /&gt;
Records and rows&lt;br /&gt;
&lt;br /&gt;
Keys&lt;br /&gt;
&lt;br /&gt;
Relationships&lt;br /&gt;
&lt;br /&gt;
Data types&lt;br /&gt;
&lt;br /&gt;
Database Schema&lt;br /&gt;
&lt;br /&gt;
A schema is quite simply a group of related objects in a database. Within a schema, objects that are related have relationships to one another, as discussed earlier. There is one owner of a schema, who has access to manipulate the structure of any object in the schema. A schema does not represent a person, although the schema is associated with a user account that resides in the database.&lt;br /&gt;
&lt;br /&gt;
The three models associated with a schema are as follows:&lt;br /&gt;
&lt;br /&gt;
The conceptual model, also called the logical model, is the basic database model, which deals with organizational structures that are used to define database structures such as tables and constraints.&lt;br /&gt;
&lt;br /&gt;
The internal model, also called the physical model, deals with the physical storage of the database, as well as access to the data, such as through data storage in tables and the use of indexes to expedite data access. The internal model separates the physical requirements of the hardware and the operating system from the data model.&lt;br /&gt;
&lt;br /&gt;
The external model, or application interface, deals with methods through which users may access the schema, such as through the use of a data input form. The external model allows relationships to be created between the user application and the data model. Figure 1 depicts a schema in a relational database.</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15135&amp;qa_1=what-elements-combined-produce-the-physical-database-design-explain-it&amp;show=15136#a15136</guid>
<pubDate>Sat, 09 Feb 2019 08:04:52 +0000</pubDate>
</item>
<item>
<title>Answered: What is loop? Explain while loop and give example.</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15133&amp;qa_1=what-is-loop-explain-while-loop-and-give-example&amp;show=15134#a15134</link>
<description>In computer programming, a loop is a sequence of instruction s that is continually repeated until a certain condition is reached. Typically, a certain process is done, such as getting an item of data and changing it, and then some condition is checked such as whether a counter has reached a prescribed number. If it hasn&amp;#039;t, the next instruction in the sequence is an instruction to return to the first instruction in the sequence and repeat the sequence. If the condition has been reached, the next instruction &amp;quot;falls through&amp;quot; to the next sequential instruction or branches outside the loop. A loop is a fundamental programming idea that is commonly used in writing programs.&lt;br /&gt;
&lt;br /&gt;
An infinite loop is one that lacks a functioning exit routine . The result is that the loop repeats continually until the operating system senses it and terminates the program with an error or until some other event occurs (such as having the program automatically terminate after a certain duration of time).</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15133&amp;qa_1=what-is-loop-explain-while-loop-and-give-example&amp;show=15134#a15134</guid>
<pubDate>Sat, 09 Feb 2019 08:02:25 +0000</pubDate>
</item>
<item>
<title>Answered: Draw and explain ER diagram for the system or getting admission in your college?</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15131&amp;qa_1=draw-and-explain-er-diagram-for-the-system-or-getting-admission-in-your-college&amp;show=15132#a15132</link>
<description>
&lt;p&gt;MASTER OF COMPUTER APPLICATIONS&lt;/p&gt;&lt;p&gt;Course Code: MCS-014&lt;/p&gt;&lt;p&gt;Course Title: Systems Analysis and Design&lt;/p&gt;&lt;p&gt;Assignment Number: MCA (I)/014/Assignment/15-16&lt;/p&gt;&lt;p&gt;Maximum Marks: 100&lt;/p&gt;&lt;p&gt;Weightage: 25%&lt;/p&gt;&lt;p&gt;Draw ERD for Online Admission System for a University. Make necessary assumptions.&lt;/p&gt;&lt;p&gt;ER Diagram&lt;/p&gt;&lt;p&gt;Notations for the components of ERD:&lt;/p&gt;&lt;p&gt;Entities: An entity is something about which the business needs to store data. An entity is a class of persons, places, objects, events or concepts about which we need to capture and store data. An entity instance is a single occurrence of an&lt;/p&gt;&lt;p&gt;entity.&lt;/p&gt;&lt;p&gt;Attribute: An attribute is a descriptive property or characteristic of an entity. Synonyms include element, property and field.A compound attribute is one that actually consists of other attributes. It is also known as a composite attribute. An attribute &amp;ldquo;Address&amp;rdquo; is the example of compound attribute as shown in the following illustration&lt;/p&gt;&lt;p&gt;Relationships: A relationship is a natural business association that exists between one or more entities. The relationship may represent an event that links the entities.&lt;/p&gt;&lt;p&gt;Cardinality: defines the minimum and maximum number of occurrences of one entity that may be related to a single occurrence of the other entity. Because all relationships are bidirectional, cardinality must be defined in both directions for every relationship.&lt;/p&gt;&lt;div&gt;&lt;/div&gt;
</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15131&amp;qa_1=draw-and-explain-er-diagram-for-the-system-or-getting-admission-in-your-college&amp;show=15132#a15132</guid>
<pubDate>Sat, 09 Feb 2019 07:45:38 +0000</pubDate>
</item>
<item>
<title>Answered: Describe the different database models?</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15129&amp;qa_1=describe-the-different-database-models&amp;show=15130#a15130</link>
<description>There are many kinds of data models. Some of the most common ones include:&lt;br /&gt;
&lt;br /&gt;
Hierarchical database model&lt;br /&gt;
&lt;br /&gt;
Relational model&lt;br /&gt;
&lt;br /&gt;
Network model&lt;br /&gt;
&lt;br /&gt;
Object-oriented database model&lt;br /&gt;
&lt;br /&gt;
Entity-relationship model&lt;br /&gt;
&lt;br /&gt;
Document model&lt;br /&gt;
&lt;br /&gt;
Entity-attribute-value model&lt;br /&gt;
&lt;br /&gt;
Star schema&lt;br /&gt;
&lt;br /&gt;
The object-relational model, which combines the two that make up its name&lt;br /&gt;
&lt;br /&gt;
You may choose to describe a database with any one of these depending on several factors. The biggest factor is whether the database management system you are using supports a particular model. Most database management systems are built with a particular data model in mind and require their users to adopt that model, although some do support multiple models.&lt;br /&gt;
&lt;br /&gt;
In addition, different models apply to different stages of the database design process. High-level conceptual data models are best for mapping out relationships between data in ways that people perceive that data. Record-based logical models, on the other hand, more closely reflect ways that the data is stored on the server.&lt;br /&gt;
&lt;br /&gt;
Selecting a data model is also a matter of aligning your priorities for the database with the strengths of a particular model, whether those priorities include speed, cost reduction, usability, or something else.&lt;br /&gt;
&lt;br /&gt;
Let’s take a closer look at some of the most common database models.&lt;br /&gt;
&lt;br /&gt;
Relational model&lt;br /&gt;
&lt;br /&gt;
The most common model, the relational model sorts data into tables, also known as relations, each of which consists of columns and rows. Each column lists an attribute of the entity in question, such as price, zip code, or birth date. Together, the attributes in a relation are called a domain. A particular attribute or combination of attributes is chosen as a primary key that can be referred to in other tables, when it’s called a foreign key.&lt;br /&gt;
&lt;br /&gt;
Each row, also called a tuple, includes data about a specific instance of the entity in question, such as a particular employee.&lt;br /&gt;
&lt;br /&gt;
The model also accounts for the types of relationships between those tables, including one-to-one, one-to-many, and many-to-many relationships. Here’s an example:</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15129&amp;qa_1=describe-the-different-database-models&amp;show=15130#a15130</guid>
<pubDate>Sat, 09 Feb 2019 07:41:59 +0000</pubDate>
</item>
<item>
<title>Answered: Write down the properties of relations in details?</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15127&amp;qa_1=write-down-the-properties-of-relations-in-details&amp;show=15128#a15128</link>
<description>This is simply not clicking for me. I&amp;#039;m currently learning math during the summer vacation and I&amp;#039;m on the chapter for relations and functions.&lt;br /&gt;
&lt;br /&gt;
There are five properties for a relation:&lt;br /&gt;
&lt;br /&gt;
Reflexive - R→R&lt;br /&gt;
&lt;br /&gt;
Symmetrical - R→S ; S→R&lt;br /&gt;
&lt;br /&gt;
Antisymmetrical - R→S &amp;amp;&amp;amp; (R→R|| S→S)&lt;br /&gt;
&lt;br /&gt;
Asymmetrical -R→S &amp;amp;&amp;amp; !(R→R|| S→S)&lt;br /&gt;
&lt;br /&gt;
Transitive - if R→S &amp;amp;&amp;amp; S→T, then R→T&lt;br /&gt;
&lt;br /&gt;
If that&amp;#039;s not what you call the properties in English, then please let me know- I have to study it in German, unfortunately, and these are my rough translations.&lt;br /&gt;
&lt;br /&gt;
Continuing on, I just don&amp;#039;t know what to do with this information practically. The examples of the book are horrible:&lt;br /&gt;
&lt;br /&gt;
1) &amp;quot;Is the same age as&amp;quot; is apparently reflexive, symmetrical and transitive. 2) &amp;quot;Is related to&amp;quot; is also apparently reflexive, symmetrical and transitive. 3) &amp;quot;Is older than&amp;quot; is asymmetric, antisymmetric and transitive.&lt;br /&gt;
&lt;br /&gt;
There are more useless examples like this. I have no idea how it comes to these conclusions because we&amp;#039;re talking about a literal statement. I was hoping perhaps for some real mathematical examples, but the book falls short on those.&lt;br /&gt;
&lt;br /&gt;
I would greatly appreciate it if somebody could explain the above example and perhaps give me a better use for Relations other than... that. Also, how can a relation be a- and antisymmetrical at the same time? Don&amp;#039;t they cancel each other out?</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15127&amp;qa_1=write-down-the-properties-of-relations-in-details&amp;show=15128#a15128</guid>
<pubDate>Sat, 09 Feb 2019 07:36:43 +0000</pubDate>
</item>
<item>
<title>Answered: Define fputs() and fgets() functions and give example.</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15125&amp;qa_1=define-fputs-and-fgets-functions-and-give-example&amp;show=15126#a15126</link>
<description>
&lt;p&gt;fopen(), fclose(), gets() and fputs() functions are file handling functions in C programming language. Please find below the description and syntax for each above file handling functions&lt;/p&gt;&lt;p&gt;MODE OF OPERATIONS PERFORMED ON A FILE IN C LANGUAGE:&lt;/p&gt;&lt;p&gt;There are many modes in opening a file. Based on the mode of file, it can be opened for reading or writing or appending the texts. They are listed below.&lt;/p&gt;&lt;p&gt;r &amp;ndash; Opens a file in read mode and sets pointer to the first character in the file. It returns null if file does not exist.&lt;/p&gt;&lt;p&gt;w &amp;ndash; Opens a file in write mode. It returns null if file could not be opened. If file exists, data are overwritten.&lt;/p&gt;&lt;p&gt;a &amp;ndash; Opens a file in append mode.&amp;nbsp; It returns null if file couldn&amp;rsquo;t be opened.&lt;/p&gt;&lt;p&gt;r+ &amp;ndash; Opens a file for read and write mode and sets pointer to the first character in the file.&lt;/p&gt;&lt;p&gt;w+ &amp;ndash; opens a file for read and write mode and sets pointer to the first character in the file.&lt;/p&gt;&lt;p&gt;a+ &amp;ndash; Opens a file for read and write mode and sets pointer to the first character in the file. But, it can&amp;rsquo;t modify existing contents.&lt;/p&gt;&lt;p&gt;OTHER INBUILT FILE HANDLING FUNCTIONS IN C PROGRAMMING LANGUAGE:&lt;/p&gt;&lt;p&gt;C programming language offers many other inbuilt functions for handling files. They are given below. Please click on each function name below to know more details, example programs, output for the respective file handling function.&lt;/p&gt;&lt;div&gt;&lt;/div&gt;
</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15125&amp;qa_1=define-fputs-and-fgets-functions-and-give-example&amp;show=15126#a15126</guid>
<pubDate>Sat, 09 Feb 2019 07:33:21 +0000</pubDate>
</item>
<item>
<title>Answered: What is view? How do we create it?</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15123&amp;qa_1=what-is-view-how-do-we-create-it&amp;show=15124#a15124</link>
<description>432&lt;br /&gt;
&lt;br /&gt;
A view provides several benefits.&lt;br /&gt;
&lt;br /&gt;
1. Views can hide complexity&lt;br /&gt;
&lt;br /&gt;
If you have a query that requires joining several tables, or has complex logic or calculations, you can code all that logic into a view, then select from the view just like you would a table.&lt;br /&gt;
&lt;br /&gt;
2. Views can be used as a security mechanism&lt;br /&gt;
&lt;br /&gt;
A view can select certain columns and/or rows from a table, and permissions set on the view instead of the underlying tables. This allows surfacing only the data that a user needs to see.&lt;br /&gt;
&lt;br /&gt;
3. Views can simplify supporting legacy code&lt;br /&gt;
&lt;br /&gt;
If you need to refactor a table that would break a lot of code, you can replace the table with a view of the same name. The view provides the exact same schema as the original table, while the actual schema has changed. This keeps the legacy code that references the table from breaking, allowing you to change the legacy code at your leisure.&lt;br /&gt;
&lt;br /&gt;
These are just some of the many examples of how views can be useful.</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15123&amp;qa_1=what-is-view-how-do-we-create-it&amp;show=15124#a15124</guid>
<pubDate>Sat, 09 Feb 2019 07:30:21 +0000</pubDate>
</item>
<item>
<title>Answered: What is field property? Describe different field properties in detail.</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15121&amp;qa_1=what-is-field-property-describe-different-field-properties-in-detail&amp;show=15122#a15122</link>
<description>1. Data Types and Field Properties 5.01 Understand database tables used in business.&lt;br /&gt;
&lt;br /&gt;
2. It’s All in the Details 5.01 Understand database tables used in business. Side Let’s dig a little deeper into the details of how data is formatted and represented in database tables&lt;br /&gt;
&lt;br /&gt;
3. Data Types and Field Properties &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Data types and field properties are used to format data so that it can be used and managed &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;The data type defines the value of a cell and the field property defines the format of the data within the cell &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;For example: the data type for a zip code field is number and the field property is used to limit the size of the entry to 5 characters &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;5.01 Understand database tables used in business. Side&lt;br /&gt;
&lt;br /&gt;
4. Why are data types important? &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;To control data. &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;In the example on the left , the Age data was sorted in descending order, but because the data type was not set as Number, the field cannot be sorted correctly. &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;5.01 Understand database tables used in business. Side &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;In the example on the right , the Adoption data was correctly sorted in ascending order because the data type for Date was used. &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
5. Example of a Data Type &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;The data type for the adoption date field is date/time &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;5.01 Understand database tables used in business. Side&lt;br /&gt;
&lt;br /&gt;
6. What data types are available? &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Text &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Memo &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Number &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Date/time &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Currency &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;AutoNumber &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Yes/No &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Lookup Wizard &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;5.01 Understand database tables used in business. Side Note: OLE Object and Hyperlink data types are not addressed in this objective.&lt;br /&gt;
&lt;br /&gt;
7. When to use data types: &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Think of data types and field properties as tools that increase the power of the database. &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;The default format for all data types is text. &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Use a different data type if you need to control how the data in a particular field will be searched, sorted, or used in calculations. &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;5.01 Understand database tables used in business. Side&lt;br /&gt;
&lt;br /&gt;
8. Why are field properties important? &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;To control how data is entered in a field &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Requiring the same format for all of the phone numbers is a way to ensure accuracy &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;5.01 Understand database tables used in business. Side &amp;lt;ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;In this example, an Input Mask field property was used to force the user to enter the telephone number in a specific format. &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;/ul&amp;gt;&lt;br /&gt;
&lt;br /&gt;
9. Example of a Field Property &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;An input mask field property is used for the Adoption Date field to make sure the date is entered correctly &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;5.01 Understand database tables used in business. Side Actual Data&lt;br /&gt;
&lt;br /&gt;
10. Field Properties: &amp;lt;ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Field Size &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Format &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Input mask &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Caption &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;/ul&amp;gt;5.01 Understand database tables used in business. Side Note: Only 4 field properties are mentioned and addressed in this objective.&lt;br /&gt;
&lt;br /&gt;
11. When to set field properties: &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Use a field property if you want to specify how the data is entered, what data can be entered, and how the data will appear. &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;5.01 Understand database tables used in business. Side&lt;br /&gt;
&lt;br /&gt;
12. Steps in Creating a Database &amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Plan the structure of the database (sketch on paper) &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;How will the data be grouped? &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;What will the field names be? &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;What will you name the database? &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Open and save a new database &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Create a table &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Enter the field names &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Set the data types &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Set the field properties &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;/ul&amp;gt;&amp;lt;ul&amp;gt;&amp;lt;li&amp;gt;Enter the data &amp;lt;/li&amp;gt;&amp;lt;/ul&amp;gt;5.01 Understand database tables used in business. Side</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15121&amp;qa_1=what-is-field-property-describe-different-field-properties-in-detail&amp;show=15122#a15122</guid>
<pubDate>Sat, 09 Feb 2019 07:27:40 +0000</pubDate>
</item>
<item>
<title>Answered: Explain the following functions: a) getc() function b) putc() function</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15119&amp;qa_1=explain-the-following-functions-a-getc-function-b-putc-function&amp;show=15120#a15120</link>
<description>putchar() function is a file handling function in C programming language which is used to write a character on standard output/screen. getchar() function is used to get/read a character from keyboard input. Please find below the description and syntax for above file handling function.</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15119&amp;qa_1=explain-the-following-functions-a-getc-function-b-putc-function&amp;show=15120#a15120</guid>
<pubDate>Sat, 09 Feb 2019 07:21:50 +0000</pubDate>
</item>
<item>
<title>Explain the comparison of nested if and sequence of its statements. Give example of sequence of ifs.</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15118&amp;qa_1=explain-the-comparison-of-nested-if-and-sequence-of-its-statements-give-example-of-sequence-of-ifs</link>
<description>Explain the comparison of nested if and sequence of its statements. Give example of sequence of ifs.</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15118&amp;qa_1=explain-the-comparison-of-nested-if-and-sequence-of-its-statements-give-example-of-sequence-of-ifs</guid>
<pubDate>Sat, 09 Feb 2019 07:12:50 +0000</pubDate>
</item>
<item>
<title>Answered: What is the use of data type in C. Explain different types used in C language</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15116&amp;qa_1=what-is-the-use-of-data-type-in-c-explain-different-types-used-in-c-language&amp;show=15117#a15117</link>
<description>A data type determines the type and the operations that can be performed on the data. C++ provides various data types and each data type is represented differently within the computer&amp;#039;s memory. The various data types provided by C++ are built-in data types, derived data types and user-defined data types as shown in Figure.&lt;br /&gt;
&lt;br /&gt;
Built-In Data Types &lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;The basic (fundamental) data types provided by c++ are integral, floating point and void data type. Among these data types, the integral and floating-point data types can be preceded by several type modifiers. These modifiers (also known as type qualifiers) are the keywords that alter either size or range or both of the data types. The various modifiers are short, long, signed and unsigned. By default the modifier is signed.&lt;br /&gt;
&lt;br /&gt;
In addition to these basic data types, ANSI C++ has introduced two more data types namely, bool and wchar_t.&lt;br /&gt;
&lt;br /&gt;
Integral Data Type: The integral data type is used to store integers and includes char (character) and int (integer) data types.&lt;br /&gt;
&lt;br /&gt;
Char: Characters refer to the alphabet, numbers and other characters (such as {, @, #, etc.) defined in the ASCII character set. In C++, the char data type is also treated as an integer data type as the characters are internally stored as integers that range in value from -128 to 127. The char data type occupies 1 byte of memory (that is, it holds only one character at a time).&lt;br /&gt;
&lt;br /&gt;
The modifiers that can precede char are signed and unsigned. The various character data types with their size an range are listed in Table&lt;br /&gt;
&lt;br /&gt;
Int: Numbers without the fractional part represent integer data. In C++, the int data type is used to store integers such as 4, 42, 5233, -32, -745. Thus, it cannot store numbers such as 4.28, -62.533. The various integer data types with their size and range are listed in Table</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15116&amp;qa_1=what-is-the-use-of-data-type-in-c-explain-different-types-used-in-c-language&amp;show=15117#a15117</guid>
<pubDate>Sat, 09 Feb 2019 07:11:29 +0000</pubDate>
</item>
<item>
<title>Answered: What is constant? Explain different types of constants.</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15114&amp;qa_1=what-is-constant-explain-different-types-of-constants&amp;show=15115#a15115</link>
<description>Constants :- Constants in java are fixed values those are not changed during the Execution of program java supports several types of Constants &amp;nbsp;those are &amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
1) Integer Constants:- &amp;nbsp;Integer Constants refers to a Sequence of digits which Includes only negative or positive Values and many other things those are as follows&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;An Integer Constant must have at Least one Digit&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;it must not have a Decimal value&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;it could be either positive or Negative&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;if no sign is Specified then it should be treated as Positive&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;No Spaces and Commas are allowed in Name &lt;br /&gt;
&lt;br /&gt;
2) Real Constants :- &amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
A Real &amp;nbsp;Constant must have at Least one Digit&lt;br /&gt;
&lt;br /&gt;
it must &amp;nbsp;have a Decimal value&lt;br /&gt;
&lt;br /&gt;
it could be either positive or Negative&lt;br /&gt;
&lt;br /&gt;
if no sign is Specified then it should be treated as Positive&lt;br /&gt;
&lt;br /&gt;
No Spaces and Commas are allowed in Name&lt;br /&gt;
&lt;br /&gt;
Like 251, 234.890 etc are Real Constants&lt;br /&gt;
&lt;br /&gt;
In The Exponential Form of Representation the Real Constant is Represented in the two Parts The part before appearing e is called mantissa whereas the part following e is called Exponent.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;In Real Constant The Mantissa and Exponent Part should be Separated by letter e&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;The Mantissa Part have may have either positive or Negative Sign&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;Default Sign is Positive&lt;br /&gt;
&lt;br /&gt;
Single Character Constants:- &amp;nbsp;&lt;br /&gt;
&lt;br /&gt;
A Character is Single Alphabet a single digit or a Single Symbol that is enclosed within Single inverted commas.&lt;br /&gt;
&lt;br /&gt;
Like ‘S’ ,’1’ etc are Single &amp;nbsp;Character Constants&lt;br /&gt;
&lt;br /&gt;
String Constants:- &amp;nbsp;String is a Sequence of Characters Enclosed between double Quotes These Characters may be digits ,Alphabets &amp;nbsp;Like “Hello” , “1234” etc.&lt;br /&gt;
&lt;br /&gt;
Backslash Character Constants:- Java Also Supports Backslash Constants those are used in output methods For Example \n is used for new line Character These are also Called as escape Sequence or backslash character Constants For Ex:</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15114&amp;qa_1=what-is-constant-explain-different-types-of-constants&amp;show=15115#a15115</guid>
<pubDate>Sat, 09 Feb 2019 06:59:22 +0000</pubDate>
</item>
<item>
<title>Answered: Describe different steps involved in analysis while designing a database?</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15112&amp;qa_1=describe-different-steps-involved-in-analysis-while-designing-a-database&amp;show=15113#a15113</link>
<description>Database Design and Implementation applies to whatever industry you are in. Databases are increasingly critical for the medtech / life sciences sector.&lt;br /&gt;
&lt;br /&gt;
Here is a step by step approach to designing and implementing a database in your organization, using specific data from a sweet shop case study. By the end of this tutorial, you will know about databases, advantages of databases system over the regular file system, the steps of a database design process, software development lifecycle, qualities of a well-built database, relations and relationships, data integrity, and more.&lt;br /&gt;
&lt;br /&gt;
Background of Databases&lt;br /&gt;
&lt;br /&gt;
The database system approach to data management overcomes many of the shortcomings of the traditional file system approach. One of the critical features of a database system is that data is stored as a single logical unit. What this means is that although the data may be spread across multiple physical files, the database conveys the data as being located in a single data repository. Organizing data in single logical repository allows for easy manipulation and querying of the data, in contrast with traditional file systems where the programmer must specify what and how the data retrieval is done.&lt;br /&gt;
&lt;br /&gt;
With database systems, it need only be specified what must be done, the DBMS (Database Management System) does the rest. Another advantage of the database approach is that, because data is located in one single database, data in different physical locations need not be duplicated. The database software can interact with all the data in the database. Nonduplication of data is one way of maintaining the integrity of the data. When data is allowed to be duplicated, errors can happen if one instance of the data is altered and another instance remains the same. When data is allowed to be duplicated, more maintenance and system resources are required to ensure that data is always integral.&lt;br /&gt;
&lt;br /&gt;
One of the most significant benefits of databases is that data can be shared or secured among users or applications. There are more control and accountability over how the data is managed because the data all resides in one database.&lt;br /&gt;
&lt;br /&gt;
If there are shortcomings to database systems, its that much more powerful and sophisticated software is needed to control the database and designing the software and database can be extremely time-consuming. More extensive knowledge of how to use the database is required, thus making the database system less user-friendly than traditional file systems. Since the database is one logical repository, even a small error can damage the entire database and reduce the integrity of the data. One benchmark of a good database is one which is complete, integral, simple, understandable, flexible and implementable. Batini et al. say that database modeling strives for a “nonredundant, unified representation of all data managed in an organization.” By following the database/software development lifecycle methodology, and by using the data models, the database design goals are fulfilled and will minimize the disadvantages.</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15112&amp;qa_1=describe-different-steps-involved-in-analysis-while-designing-a-database&amp;show=15113#a15113</guid>
<pubDate>Sat, 09 Feb 2019 06:56:40 +0000</pubDate>
</item>
<item>
<title>Answered: How would you create, edit, compile, link and execute a C program? Discuss briefly</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15110&amp;qa_1=how-would-you-create-edit-compile-link-and-execute-a-c-program-discuss-briefly&amp;show=15111#a15111</link>
<description>
&lt;p&gt;eveloping a C program consists of several steps. These include writing, saving, compiling, linking, and executing of the program. A brief description of these steps using the Turbo C IDE it is given below;&lt;/p&gt;&lt;p&gt;Creating Source Program&lt;/p&gt;&lt;p&gt;&amp;nbsp;Creating software with the first step in developing a C program.&lt;/p&gt;&lt;p&gt;The loader in system program that plays in the executable file into the computer memory.For example, in window operating system, when the name of an executable file is double clicked, the system loader load the car into the computer memory and executes it.&lt;/p&gt;&lt;div&gt;&lt;/div&gt;
</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15110&amp;qa_1=how-would-you-create-edit-compile-link-and-execute-a-c-program-discuss-briefly&amp;show=15111#a15111</guid>
<pubDate>Sat, 09 Feb 2019 06:50:51 +0000</pubDate>
</item>
<item>
<title>Answered: What is Escape sequence? Explain different types of escape sequence character used in C language.</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15108&amp;qa_1=what-is-escape-sequence-explain-different-types-of-escape-sequence-character-used-in-c-language&amp;show=15109#a15109</link>
<description>Escape sequences are used in the programming languages C and C++, and also in many more languages (with some variations) like Java and C#. An escape sequence is a sequence of characters that does not represent itself when used inside a character or string literal, but is translated into another character or a sequence of characters that may be difficult or impossible to represent directly.&lt;br /&gt;
&lt;br /&gt;
In C, all escape sequences consist of two or more characters, the first of which is the backslash, \ (called the &amp;quot;Escape character&amp;quot;); the remaining characters determine the interpretation of the escape sequence. For example, \n is an escape sequence that denotes a newline character. The remainder of this article focuses on C; other programming languages are likely to have different syntax and semantics.</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15108&amp;qa_1=what-is-escape-sequence-explain-different-types-of-escape-sequence-character-used-in-c-language&amp;show=15109#a15109</guid>
<pubDate>Sat, 09 Feb 2019 06:39:50 +0000</pubDate>
</item>
<item>
<title>What is a form? Explain its uses and advantages?</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15107&amp;qa_1=what-is-a-form-explain-its-uses-and-advantages</link>
<description>What is a form? Explain its uses and advantages?</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15107&amp;qa_1=what-is-a-form-explain-its-uses-and-advantages</guid>
<pubDate>Sat, 09 Feb 2019 06:35:57 +0000</pubDate>
</item>
<item>
<title>Answered: Define the different layouts of forms.</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15105&amp;qa_1=define-the-different-layouts-of-forms&amp;show=15106#a15106</link>
<description>This article throws light upon the five main types of layout. The types are: 1. Plant Layout 2. Process Layout 3. Product Layout 4. Combination Layout 5. Fixed Position Layout.&lt;br /&gt;
&lt;br /&gt;
Type # 1. Plant Layout:&lt;br /&gt;
&lt;br /&gt;
Plant layout means the disposition of the various facilities (equipments, material, manpower, etc.) and services of the plant within the area of the site selected previously. Plant layout begins with the design of the factory building and goes up to the location and movement of a work table. All the facilities like equipments, raw materials, machinery, tools, futures, workers, etc. are given a proper place. In deciding the place for equipment, the supervisors and workers who have to operate them should be consulted.&lt;br /&gt;
&lt;br /&gt;
Objectives of Good Plant Layout:&lt;br /&gt;
&lt;br /&gt;
In a good plant layout:&lt;br /&gt;
&lt;br /&gt;
ADVERTISEMENTS: &lt;br /&gt;
&lt;br /&gt;
(1) Material handling and transportation is minimized and efficiently controlled.&lt;br /&gt;
&lt;br /&gt;
(2) Bottlenecks and points of congestions are eliminated (by line balancing) so that the raw material and semi-finished goods move fast from one work station to another.&lt;br /&gt;
&lt;br /&gt;
(3) Work stations are designed suitably and properly.&lt;br /&gt;
&lt;br /&gt;
(4) Suitable spaces are allocated to production centres and service centres.&lt;br /&gt;
&lt;br /&gt;
(5) The movements made by the workers are minimized.&lt;br /&gt;
&lt;br /&gt;
(6) Waiting time of the semi-finished products is minimized.&lt;br /&gt;
&lt;br /&gt;
(7) Working conditions are safer, better (well ventilated rooms, etc.) and improved.&lt;br /&gt;
&lt;br /&gt;
(8) There is increased flexibility for changes in product design and for future expansion.</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15105&amp;qa_1=define-the-different-layouts-of-forms&amp;show=15106#a15106</guid>
<pubDate>Sat, 09 Feb 2019 06:32:46 +0000</pubDate>
</item>
<item>
<title>How is a report created from two tables?</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15104&amp;qa_1=how-is-a-report-created-from-two-tables</link>
<description>How is a report created from two tables?</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15104&amp;qa_1=how-is-a-report-created-from-two-tables</guid>
<pubDate>Sat, 09 Feb 2019 06:28:19 +0000</pubDate>
</item>
<item>
<title>Answered: What is normalization? How it can be used to bring the database in a consistent state?</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15102&amp;qa_1=what-is-normalization-how-it-can-be-used-to-bring-the-database-in-a-consistent-state&amp;show=15103#a15103</link>
<description>Normalization&lt;br /&gt;
&lt;br /&gt;
Database Normalization is a technique of organizing the data in the database. It is a systematic approach of decomposing tables into atomic entities to eliminate data redundancy and undesirable characteristics like Insertion, Update and Deletion Anomalies.&lt;br /&gt;
&lt;br /&gt;
If a database design is not perfect, it may contain anomalies, which are like a bad dream for any database administrator. Managing a database with anomalies is difficult and next to impossible.&lt;br /&gt;
&lt;br /&gt;
Normalization is a method to remove all these anomalies and bring the database to a consistent state.&lt;br /&gt;
&lt;br /&gt;
It is a multi-step process that puts data into tabular form by removing duplicated data from the relation tables.&lt;br /&gt;
&lt;br /&gt;
Normalization is used or serves mainly two purposes,&lt;br /&gt;
&lt;br /&gt;
Eliminating redundant (useless or repetitive) data.&lt;br /&gt;
&lt;br /&gt;
Ensuring data dependencies make sense i.e. data is logically stored.&lt;br /&gt;
&lt;br /&gt;
Anomalies in DBMS&lt;br /&gt;
&lt;br /&gt;
There are three types of anomalies that occur when the database is not normalized. These are – Insertion, update and deletion anomaly.&lt;br /&gt;
&lt;br /&gt;
Update anomalies− If data items are scattered and are not linked to each other properly, then it could lead to strange situations. For example, when we try to update one data item having its copies scattered over several places, a few instances get updated properly while a few others are left with old values. Such instances leave the database in an inconsistent state.&lt;br /&gt;
&lt;br /&gt;
Deletion anomalies− Say we tried to delete a record, but parts of it were left undeleted because of unawareness, the data is also saved somewhere else.&lt;br /&gt;
&lt;br /&gt;
Insert anomalies– Say we tried to insert data in a record that does not exist at all.&lt;br /&gt;
&lt;br /&gt;
Let’s take an example to understand this.&lt;br /&gt;
&lt;br /&gt;
Suppose a manufacturing company stores the employee details in a table named employee that has four attributes: emp_id for storing employee’s id, emp_name for storing employee’s name, emp_address for storing employee’s address and emp_dept for storing the department details in which the employee works. At some point of time the table looks like this:</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15102&amp;qa_1=what-is-normalization-how-it-can-be-used-to-bring-the-database-in-a-consistent-state&amp;show=15103#a15103</guid>
<pubDate>Sat, 09 Feb 2019 06:22:24 +0000</pubDate>
</item>
<item>
<title>Answered: what is if-else if statement? Explain with the help of an example.</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15100&amp;qa_1=what-is-if-else-if-statement-explain-with-the-help-of-an-example&amp;show=15101#a15101</link>
<description>An if statement is a programming conditional statement that, if proved true, performs a function or displays information. Below is a general example of an if statement, not specific to any particular programming language.&lt;br /&gt;
&lt;br /&gt;
In the example above, if the value of X were equal to any number less than 10, the program would print, or display, &amp;quot;Hello John&amp;quot; on the console when the script is run. See the conditional statement definition for further information and some basic programming examples.</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15100&amp;qa_1=what-is-if-else-if-statement-explain-with-the-help-of-an-example&amp;show=15101#a15101</guid>
<pubDate>Sat, 09 Feb 2019 06:19:03 +0000</pubDate>
</item>
<item>
<title>Write a short note on functions that return a value and accept arguments and give example.</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15099&amp;qa_1=write-a-short-note-on-functions-that-return-a-value-and-accept-arguments-and-give-example</link>
<description>Write a short note on functions that return a value and accept arguments and give example.</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15099&amp;qa_1=write-a-short-note-on-functions-that-return-a-value-and-accept-arguments-and-give-example</guid>
<pubDate>Sat, 09 Feb 2019 06:10:14 +0000</pubDate>
</item>
<item>
<title>Answered: What the names of functions that are used for formatted I/O in C language and give example.</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15097&amp;qa_1=what-the-names-of-functions-that-are-used-for-formatted-i-o-in-c-language-and-give-example&amp;show=15098#a15098</link>
<description>The C Programming Language is also called the Mother of languages. The C language was developed by Dennis Ritchie between 1969 and 1973 and is a second and third generation of languages. The C language provides both low and high level features it provides both the power of low-level languages and the flexibility and simplicity of high-level languages.&lt;br /&gt;
&lt;br /&gt;
C provides standard functions scanf() and printf(), for performing formatted input and output .These functions accept, as parameters, a format specification string and a list of variables.&lt;br /&gt;
&lt;br /&gt;
The format specification string is a character string that specifies the data type of each variable to be input or output and the size or width of the input and output.&lt;br /&gt;
&lt;br /&gt;
Now to discuss formatted output in functions.&lt;br /&gt;
&lt;br /&gt;
Formatted Output&lt;br /&gt;
&lt;br /&gt;
The function printf() is used for formatted output to standard output based on a format specification. The format specification string, along with the data to be output, are the parameters to the printf() function.&lt;br /&gt;
&lt;br /&gt;
Syntax:&lt;br /&gt;
&lt;br /&gt;
printf (format, data1, data2,……..);&lt;br /&gt;
&lt;br /&gt;
In this syntax format is the format specification string. This string contains, for each variable to be output, a specification beginning with the symbol % followed by a character called the conversion character.&lt;br /&gt;
&lt;br /&gt;
Example: &lt;br /&gt;
&lt;br /&gt;
printf (“%c”, data1);&lt;br /&gt;
&lt;br /&gt;
The character specified after % is called a conversion character because it allows one data type to be converted to another type and printed.&lt;br /&gt;
&lt;br /&gt;
See the following table conversion character and their meanings.</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15097&amp;qa_1=what-the-names-of-functions-that-are-used-for-formatted-i-o-in-c-language-and-give-example&amp;show=15098#a15098</guid>
<pubDate>Sat, 09 Feb 2019 06:08:44 +0000</pubDate>
</item>
<item>
<title>Answered: Describe the objectives and features of DBMS?</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15095&amp;qa_1=describe-the-objectives-and-features-of-dbms&amp;show=15096#a15096</link>
<description>Various Objectives of Database Management System&lt;br /&gt;
&lt;br /&gt;
Mass Storage&lt;br /&gt;
&lt;br /&gt;
DBMS can store a lot of data in it. So for all the big firms, DBMS is really ideal technology to use. It can store thousands of records in it and one can fetch all that data whenever it is needed.&lt;br /&gt;
&lt;br /&gt;
Removes Duplicity&lt;br /&gt;
&lt;br /&gt;
If you have lots of data then data duplicity will occur for sure at any instance. DBMS guarantee it that there will be no data duplicity among all the records. While storing new records, DBMS makes sure that same data was&lt;br /&gt;
&lt;br /&gt;
not inserted before.&lt;br /&gt;
&lt;br /&gt;
Also See: Types of Database Users in DBMS&lt;br /&gt;
&lt;br /&gt;
Multiple Users Access&lt;br /&gt;
&lt;br /&gt;
No one handles the whole database alone. There are lots of users who are able to access database. So this situation may happen that two or more users are accessing database. They can change whatever they want, at that time DBMS makes it sure that they can work concurrently.&lt;br /&gt;
&lt;br /&gt;
Data Protection&lt;br /&gt;
&lt;br /&gt;
Information such as bank details, employee’s salary details and sale purchase details should always be kept secured. Also all the companies need their data secured from unauthorized use. DBMS gives a master level security to their data. No one can alter or modify the information without the privilege of using that data.&lt;br /&gt;
&lt;br /&gt;
Data Back up and recovery&lt;br /&gt;
&lt;br /&gt;
Sometimes database failure occurs so there is no option like one can say that all the data has been lost. There should be a backup of database so that on database failure it can be recovered. DBMS has the ability to backup and recover all the data in database.&lt;br /&gt;
&lt;br /&gt;
Everyone can work on DBMS&lt;br /&gt;
&lt;br /&gt;
There is no need to be a master of programming language if you want to work on DBMS. Any accountant who is having less technical knowledge can work on DBMS. All the definitions and descriptions are given in it so that even a non-technical background w=person can work on it.&lt;br /&gt;
&lt;br /&gt;
Integrity&lt;br /&gt;
&lt;br /&gt;
Integrity means your data is authentic and consistent. DBMS has various validity checks that make your data completely accurate and consistence.&lt;br /&gt;
&lt;br /&gt;
Platform Independent&lt;br /&gt;
&lt;br /&gt;
One can run dbms at any platform. No particular platform is required to work on database management system.&lt;br /&gt;
&lt;br /&gt;
So it was all about Various Objectives of Database Management System. If you have any question regarding this topic then please comment below</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15095&amp;qa_1=describe-the-objectives-and-features-of-dbms&amp;show=15096#a15096</guid>
<pubDate>Sat, 09 Feb 2019 05:57:14 +0000</pubDate>
</item>
<item>
<title>Answered: How is a form is created by using the form wizard?</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15093&amp;qa_1=how-is-a-form-is-created-by-using-the-form-wizard&amp;show=15094#a15094</link>
<description>Access provides several quick-create form tools on the Create tab, each of which lets you create a form with a single click. However, if you want to be more selective about what fields appear on the form, you can use the Form Wizard instead. The wizard also lets you define how the data is grouped and sorted, and you can use fields from more than one table or query (provided that you specified the relationships between the tables and queries beforehand).&lt;br /&gt;
&lt;br /&gt;
Note: This article doesn’t apply to Access web apps – the kind of database you design with Access and publish online.&lt;br /&gt;
&lt;br /&gt;
Start the Form Wizard&lt;br /&gt;
&lt;br /&gt;
On the Create tab, in the Forms group, click Form Wizard. Note, if you&amp;#039;re using Access 2007, on the Create tab, in the Forms group, click More Forms, and then click Form Wizard.&lt;br /&gt;
&lt;br /&gt;
Follow the directions on the pages of the Form Wizard.&lt;br /&gt;
&lt;br /&gt;
Note: If you want to include fields from multiple tables and queries on the form, do not click Next or Finish after you select the fields from the first table or query on the first page of the Form Wizard. Instead, repeat the steps to select a table or query, and then click any additional fields that you want to include on the form. Then click Next or Finish to continue.&lt;br /&gt;
&lt;br /&gt;
On the last page of the wizard, click Finish.&lt;br /&gt;
&lt;br /&gt;
The Form Wizard can create a variety of results depending on the options that you select. As a result, we recommend that you run the wizard several times, experimenting with different options each time, until you get the results that you want.For more information about how to create relationships, see the article Create, edit or delete a relationship.</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15093&amp;qa_1=how-is-a-form-is-created-by-using-the-form-wizard&amp;show=15094#a15094</guid>
<pubDate>Sat, 09 Feb 2019 05:48:39 +0000</pubDate>
</item>
<item>
<title>Answered: What are the conditions for a relation to be in second normal form? Give example?</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=15091&amp;qa_1=what-are-the-conditions-for-a-relation-to-be-in-second-normal-form-give-example&amp;show=15092#a15092</link>
<description>2nd Normal Form Definition&lt;br /&gt;
&lt;br /&gt;
A database is in second normal form if it satisfies the following conditions:&lt;br /&gt;
&lt;br /&gt;
It is in first normal form&lt;br /&gt;
&lt;br /&gt;
All non-key attributes are fully functional dependent on the primary key&lt;br /&gt;
&lt;br /&gt;
In a table, if attribute B is functionally dependent on A, but is not functionally dependent on a proper subset of A, then B is considered fully functional dependent on A. Hence, in a 2NF table, all non-key attributes cannot be dependent on a subset of the primary key. Note that if the primary key is not a composite key, all non-key attributes are always fully functional dependent on the primary key. A table that is in 1st normal form and contains only a single key as the primary key is automatically in 2nd normal form.&lt;br /&gt;
&lt;br /&gt;
2nd Normal Form Example&lt;br /&gt;
&lt;br /&gt;
Consider the following example:</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=15091&amp;qa_1=what-are-the-conditions-for-a-relation-to-be-in-second-normal-form-give-example&amp;show=15092#a15092</guid>
<pubDate>Sat, 09 Feb 2019 05:40:05 +0000</pubDate>
</item>
<item>
<title>Answered: How would you investigate the pathway of water in parts of plants using a suitable stain? Draw diagram of experimental setup.</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=5251&amp;qa_1=how-would-you-investigate-the-pathway-of-water-in-parts-of-plants-using-suitable-stain-draw-diagram-experimental-setup&amp;show=5256#a5256</link>
<description>
&lt;p&gt;&lt;span style=&quot;font-size:13px&quot;&gt;How would you investigate the pathway of water in parts of plants using a suitable stain? Draw diagram of experimental setup.&lt;/span&gt;&lt;/p&gt;
</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=5251&amp;qa_1=how-would-you-investigate-the-pathway-of-water-in-parts-of-plants-using-suitable-stain-draw-diagram-experimental-setup&amp;show=5256#a5256</guid>
<pubDate>Tue, 13 Nov 2018 19:59:22 +0000</pubDate>
</item>
<item>
<title>Answered: Give structure of stomach. Give process of digestion in stomach?</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=5254&amp;qa_1=give-structure-of-stomach-give-process-of-digestion-in-stomach&amp;show=5255#a5255</link>
<description>
&lt;p&gt;&lt;span style=&quot;color:#222222; font-family:arial,sans-serif; font-size:16px&quot;&gt;The&amp;nbsp;&lt;/span&gt;&lt;strong style=&quot;color:#222222; font-family:arial,sans-serif; font-size:16px&quot;&gt;stomach&lt;/strong&gt;&lt;span style=&quot;color:#222222; font-family:arial,sans-serif; font-size:16px&quot;&gt;&amp;nbsp;receives food from the esophagus. As food reaches the end of the esophagus, it enters the&lt;/span&gt;&lt;strong style=&quot;color:#222222; font-family:arial,sans-serif; font-size:16px&quot;&gt;stomach&lt;/strong&gt;&lt;span style=&quot;color:#222222; font-family:arial,sans-serif; font-size:16px&quot;&gt;&amp;nbsp;through a muscular valve called the lower esophageal sphincter. The&amp;nbsp;&lt;/span&gt;&lt;strong style=&quot;color:#222222; font-family:arial,sans-serif; font-size:16px&quot;&gt;stomach&lt;/strong&gt;&lt;span style=&quot;color:#222222; font-family:arial,sans-serif; font-size:16px&quot;&gt;&amp;nbsp;secretes acid and enzymes that&amp;nbsp;&lt;/span&gt;&lt;strong style=&quot;color:#222222; font-family:arial,sans-serif; font-size:16px&quot;&gt;digest&lt;/strong&gt;&lt;span style=&quot;color:#222222; font-family:arial,sans-serif; font-size:16px&quot;&gt;&amp;nbsp;food. ... The&amp;nbsp;&lt;/span&gt;&lt;strong style=&quot;color:#222222; font-family:arial,sans-serif; font-size:16px&quot;&gt;stomach&lt;/strong&gt;&lt;span style=&quot;color:#222222; font-family:arial,sans-serif; font-size:16px&quot;&gt;muscles contract periodically, churning food to enhance&amp;nbsp;&lt;/span&gt;&lt;strong style=&quot;color:#222222; font-family:arial,sans-serif; font-size:16px&quot;&gt;digestion&lt;/strong&gt;&lt;span style=&quot;color:#222222; font-family:arial,sans-serif; font-size:16px&quot;&gt;.&lt;/span&gt;&lt;/p&gt;
</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=5254&amp;qa_1=give-structure-of-stomach-give-process-of-digestion-in-stomach&amp;show=5255#a5255</guid>
<pubDate>Tue, 13 Nov 2018 19:56:43 +0000</pubDate>
</item>
<item>
<title>Answered: You have observed the microscopic examination of a transverse section of the small intestine to show villi. Give its structure and label it?</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=5252&amp;qa_1=you-have-observed-the-microscopic-examination-transverse-section-the-small-intestine-show-villi-give-structure-label&amp;show=5253#a5253</link>
<description>
&lt;p&gt;&lt;span style=&quot;color:#373d3f; font-family:Tinos,Georgia,serif; font-size:18px; orphans:1&quot;&gt;Chyme released from the stomach enters the&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;box-sizing:border-box; color:#373d3f; font-family:Tinos,Georgia,serif; font-size:18px; font-weight:bolder; orphans:1&quot;&gt;small intestine&lt;/span&gt;&lt;span style=&quot;color:#373d3f; font-family:Tinos,Georgia,serif; font-size:18px; orphans:1&quot;&gt;, which is the primary digestive organ in the body. Not only is this where most digestion occurs, it is also where practically all absorption occurs. The longest part of the alimentary canal, the small intestine is about 3.05 meters (10 feet) long in a living person (but about twice as long in a cadaver due to the loss of muscle tone). Since this makes it about five times longer than the large intestine, you might wonder why it is called &amp;ldquo;small.&amp;rdquo; In fact, its name derives from its relatively smaller diameter of only about 2.54 cm (1 in), compared with 7.62 cm (3 in) for the large intestine. As we&amp;rsquo;ll see shortly, in addition to its length, the folds and projections of the lining of the small intestine work to give it an enormous surface area, which is approximately 200 m&lt;/span&gt;&lt;span style=&quot;bottom:1ex; box-sizing:border-box; color:#373d3f; font-family:Tinos,Georgia,serif; font-size:0.8em; height:0px; line-height:1; orphans:1; position:relative; top:-0.5em; vertical-align:baseline&quot;&gt;2&lt;/span&gt;&lt;span style=&quot;color:#373d3f; font-family:Tinos,Georgia,serif; font-size:18px; orphans:1&quot;&gt;, more than 100 times the surface area of your skin. This large surface area is necessary for complex processes of digestion and absorption that occur within it.&lt;/span&gt;&lt;/p&gt;
</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=5252&amp;qa_1=you-have-observed-the-microscopic-examination-transverse-section-the-small-intestine-show-villi-give-structure-label&amp;show=5253#a5253</guid>
<pubDate>Tue, 13 Nov 2018 19:54:22 +0000</pubDate>
</item>
<item>
<title>Answered: How would you analyze the protein and fats. Give the tests to identify these compound?</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=5249&amp;qa_1=how-would-you-analyze-the-protein-and-fats-give-the-tests-to-identify-these-compound&amp;show=5250#a5250</link>
<description>
&lt;p&gt;&lt;span style=&quot;color:#222222; font-family:arial,sans-serif; font-size:16px&quot;&gt;Component Comparison.&amp;nbsp;&lt;/span&gt;&lt;strong style=&quot;color:#222222; font-family:arial,sans-serif; font-size:16px&quot;&gt;Proteins&lt;/strong&gt;&lt;span style=&quot;color:#222222; font-family:arial,sans-serif; font-size:16px&quot;&gt;, carbohydrates and&amp;nbsp;&lt;/span&gt;&lt;strong style=&quot;color:#222222; font-family:arial,sans-serif; font-size:16px&quot;&gt;fats&lt;/strong&gt;&lt;span style=&quot;color:#222222; font-family:arial,sans-serif; font-size:16px&quot;&gt;&amp;nbsp;are made from three basic molecules: carbon, hydrogen and oxygen. However, all&amp;nbsp;&lt;/span&gt;&lt;strong style=&quot;color:#222222; font-family:arial,sans-serif; font-size:16px&quot;&gt;proteins&lt;/strong&gt;&lt;span style=&quot;color:#222222; font-family:arial,sans-serif; font-size:16px&quot;&gt;&amp;nbsp;contain&amp;nbsp;&lt;/span&gt;&lt;strong style=&quot;color:#222222; font-family:arial,sans-serif; font-size:16px&quot;&gt;an&lt;/strong&gt;&lt;span style=&quot;color:#222222; font-family:arial,sans-serif; font-size:16px&quot;&gt;element not found in carbohydrates and&amp;nbsp;&lt;/span&gt;&lt;strong style=&quot;color:#222222; font-family:arial,sans-serif; font-size:16px&quot;&gt;fats&lt;/strong&gt;&lt;span style=&quot;color:#222222; font-family:arial,sans-serif; font-size:16px&quot;&gt;&amp;nbsp;-- nitrogen -- and some&amp;nbsp;&lt;/span&gt;&lt;strong style=&quot;color:#222222; font-family:arial,sans-serif; font-size:16px&quot;&gt;proteins&lt;/strong&gt;&lt;span style=&quot;color:#222222; font-family:arial,sans-serif; font-size:16px&quot;&gt;&amp;nbsp;also contain sulfur.&lt;/span&gt;&lt;/p&gt;
</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=5249&amp;qa_1=how-would-you-analyze-the-protein-and-fats-give-the-tests-to-identify-these-compound&amp;show=5250#a5250</guid>
<pubDate>Tue, 13 Nov 2018 19:49:28 +0000</pubDate>
</item>
<item>
<title>Answered: What is the percentage of blood parts in blood</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=5247&amp;qa_1=what-is-the-percentage-of-blood-parts-in-blood&amp;show=5248#a5248</link>
<description>In a healthy person, plasma constitutes about 55% by volume of blood, and cells or cell like bodies are about 45% by volume of the blood.</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=5247&amp;qa_1=what-is-the-percentage-of-blood-parts-in-blood&amp;show=5248#a5248</guid>
<pubDate>Tue, 13 Nov 2018 19:47:07 +0000</pubDate>
</item>
<item>
<title>Answered: What is the relationship between the rate of transpiration and the number of stomata</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=5245&amp;qa_1=what-is-the-relationship-between-the-rate-of-transpiration-and-the-number-of-stomata&amp;show=5246#a5246</link>
<description>
&lt;p&gt;&lt;span style=&quot;font-size:13px&quot;&gt;As the number of stomata increases, the rate of transpiration also increases.&lt;/span&gt;&lt;/p&gt;
</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=5245&amp;qa_1=what-is-the-relationship-between-the-rate-of-transpiration-and-the-number-of-stomata&amp;show=5246#a5246</guid>
<pubDate>Tue, 13 Nov 2018 19:44:57 +0000</pubDate>
</item>
<item>
<title>Answered: What is meant by skin?</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=5243&amp;qa_1=what-is-meant-by-skin&amp;show=5244#a5244</link>
<description>The outermost covering of bodies of animals (humans) is known as skin. It is full of sensitive cells</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=5243&amp;qa_1=what-is-meant-by-skin&amp;show=5244#a5244</guid>
<pubDate>Tue, 13 Nov 2018 19:29:49 +0000</pubDate>
</item>
<item>
<title>Answered: The most terrible famines of twentieth century</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=5241&amp;qa_1=the-most-terrible-famines-of-twentieth-century&amp;show=5242#a5242</link>
<description>The most terrible famines of the twentieth century are. &lt;br /&gt;
&lt;br /&gt;
The Ethiopian famine &amp;nbsp;&amp;nbsp;1983-85 &lt;br /&gt;
&lt;br /&gt;
The North Korean famine &amp;nbsp;1990</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=5241&amp;qa_1=the-most-terrible-famines-of-twentieth-century&amp;show=5242#a5242</guid>
<pubDate>Tue, 13 Nov 2018 19:28:44 +0000</pubDate>
</item>
<item>
<title>Answered: Which arteries supply blood (oxygenated) to ribs, kidney, intestine and heart muscles</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=5239&amp;qa_1=which-arteries-supply-blood-oxygenated-to-ribs-kidney-intestine-and-heart-muscles&amp;show=5240#a5240</link>
<description>Intercostal arteries supply blood to ribs. Renal arteries to kidney, mesenteric arteries to intestine. Coronary arteries supply blood to heart muscles.</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=5239&amp;qa_1=which-arteries-supply-blood-oxygenated-to-ribs-kidney-intestine-and-heart-muscles&amp;show=5240#a5240</guid>
<pubDate>Tue, 13 Nov 2018 19:26:41 +0000</pubDate>
</item>
<item>
<title>Answered: What are faeces</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=5237&amp;qa_1=what-are-faeces&amp;show=5238#a5238</link>
<description>The solid remains of food which contain undigested material are called faeces. Faeces also contain bacteria sloughed off cells of alimentary canal, bile pigment and water.</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=5237&amp;qa_1=what-are-faeces&amp;show=5238#a5238</guid>
<pubDate>Tue, 13 Nov 2018 19:24:49 +0000</pubDate>
</item>
<item>
<title>Answered: What is the importance of water for plants</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=5235&amp;qa_1=what-is-the-importance-of-water-for-plants&amp;show=5236#a5236</link>
<description>Water is vital to plant life. It is not only necessary for photosynthesis and turgor, but also much cellular activities occur in the presence of water molecules and internal temperature of plant is regulated by water.</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=5235&amp;qa_1=what-is-the-importance-of-water-for-plants&amp;show=5236#a5236</guid>
<pubDate>Tue, 13 Nov 2018 19:23:10 +0000</pubDate>
</item>
<item>
<title>Answered: Why are individuals with blood group O called universal donors.</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=5233&amp;qa_1=why-are-individuals-with-blood-group-o-called-universal-donors&amp;show=5234#a5234</link>
<description>O blood group individuals are called universal donors because they can donate blood to the recipients of every other blood group.</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=5233&amp;qa_1=why-are-individuals-with-blood-group-o-called-universal-donors&amp;show=5234#a5234</guid>
<pubDate>Tue, 13 Nov 2018 19:21:53 +0000</pubDate>
</item>
<item>
<title>Answered: What are platelets (thrombocytes)</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=5231&amp;qa_1=what-are-platelets-thrombocytes&amp;show=5232#a5232</link>
<description>They are not cells but are fragments of large cells of bone marrow, called megakaryocytes. They do not have any nucleus and any pigments.</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=5231&amp;qa_1=what-are-platelets-thrombocytes&amp;show=5232#a5232</guid>
<pubDate>Tue, 13 Nov 2018 19:20:16 +0000</pubDate>
</item>
<item>
<title>Answered: What is meant by desiccation?</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=5229&amp;qa_1=what-is-meant-by-desiccation&amp;show=5230#a5230</link>
<description>It is an extream condition of dryness.</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=5229&amp;qa_1=what-is-meant-by-desiccation&amp;show=5230#a5230</guid>
<pubDate>Tue, 13 Nov 2018 19:19:29 +0000</pubDate>
</item>
<item>
<title>Answered: Which is the largest gland of human body and where it is located?</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=5227&amp;qa_1=which-is-the-largest-gland-of-human-body-and-where-it-is-located&amp;show=5228#a5228</link>
<description>
&lt;p&gt;&lt;span style=&quot;font-size:13px&quot;&gt;&amp;nbsp;Liver is the largest gland of human body. It lies beneath the diaphragm on the right side of abdomen.&lt;/span&gt;&lt;/p&gt;
</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=5227&amp;qa_1=which-is-the-largest-gland-of-human-body-and-where-it-is-located&amp;show=5228#a5228</guid>
<pubDate>Tue, 13 Nov 2018 19:18:34 +0000</pubDate>
</item>
<item>
<title>Answered: . According to the pressure flow mechanism what is the actual force behind to movement of food in phloem.</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=5225&amp;qa_1=according-to-the-pressure-flow-mechanism-what-is-the-actual-force-behind-to-movement-of-food-in-phloem&amp;show=5226#a5226</link>
<description>he actual force behind the movement of food is phloem is drop in the pressure at the sink end.</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=5225&amp;qa_1=according-to-the-pressure-flow-mechanism-what-is-the-actual-force-behind-to-movement-of-food-in-phloem&amp;show=5226#a5226</guid>
<pubDate>Tue, 13 Nov 2018 19:16:39 +0000</pubDate>
</item>
<item>
<title>Answered: How will you differentiate between bolus and chyme?</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=5223&amp;qa_1=how-will-you-differentiate-between-bolus-and-chyme&amp;show=5224#a5224</link>
<description>A small, slippery and spherical mass of food in oral cavity is called bolus. After partial digestion of starch and protein in food, it is changed into a soup-like mixture called chyme. Chyme is formed in stomach.</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=5223&amp;qa_1=how-will-you-differentiate-between-bolus-and-chyme&amp;show=5224#a5224</guid>
<pubDate>Tue, 13 Nov 2018 19:14:45 +0000</pubDate>
</item>
<item>
<title>Describe the role of iron and boron in plants&#039; life?</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=5222&amp;qa_1=describe-the-role-of-iron-and-boron-in-plants-life</link>
<description>Describe the role of iron and boron in plants&amp;#039; life?</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=5222&amp;qa_1=describe-the-role-of-iron-and-boron-in-plants-life</guid>
<pubDate>Tue, 13 Nov 2018 18:56:59 +0000</pubDate>
</item>
<item>
<title>Answered: How is food moved from source.</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=5220&amp;qa_1=how-is-food-moved-from-source&amp;show=5221#a5221</link>
<description>
&lt;p&gt;&lt;span style=&quot;font-size:13px&quot;&gt;&amp;nbsp;At source, food (sugars) is moved by active transport into the sieve tubes of phloem. Due to the presence of sugar in sieve tubes, their solute concentration increases and water enters them from xylem (via osmosis). This results in higher pressure of water in these tubes, which drives the solution of food toward sink.&lt;/span&gt;&lt;/p&gt;
</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=5220&amp;qa_1=how-is-food-moved-from-source&amp;show=5221#a5221</guid>
<pubDate>Tue, 13 Nov 2018 18:56:16 +0000</pubDate>
</item>
<item>
<title>Answered: Define photolysis</title>
<link>https://murreeroad.org/questions-and-answers/index.php?qa=5218&amp;qa_1=define-photolysis&amp;show=5219#a5219</link>
<description>The break down of water in the presence of light is called photoysis.</description>
<category>Biology</category>
<guid isPermaLink="true">https://murreeroad.org/questions-and-answers/index.php?qa=5218&amp;qa_1=define-photolysis&amp;show=5219#a5219</guid>
<pubDate>Tue, 13 Nov 2018 18:53:44 +0000</pubDate>
</item>
</channel>
</rss>