CS101 Assignment No 2 Solution Fall 2017

News Saleb-,Newspapers are usually issued daily or weekly. CS101 Assignment No 2 Solution Fall 2017, Magazine News weekly, but they also had a magazine format. Newspapers with common interests usually publish news articles and articles about national and international news as well as local news. These include news events and personalities of the political, business and finance, crime, weather, and natural hazards; health and medicine, science, and computers and technology; Sports; and entertainment, community, food and cuisine, apparel and home fashion, and the arts.

A wide range of materials have been published in newspapers. In addition to news,CS101 Assignment No 2 Solution Fall 2017 ,information and opinions expressed above, including weather forecasts; Criticism and reviews Arts (including literature, film, television, theater, art, and architecture) and local services such as a restaurant; obituaries, notices of birth and graduation announcements; Entertainment features such as crossword puzzles, horoscopes, editorial cartoons, jokes, cartoons and comics; Advice column, food, and other columns; and a list of radio and television (program schedule). In the year 2017, newspapers can also provide information about new movies and TV shows available on streaming video services such as Netflix. The newspaper has been classified ad section in which people and businesses can buy a small ad to sell goods or services; In the year 2013, a large increase in internet sites to sell goods, such as Craigslist and eBay have caused ad sales are much less classified for newspapers.CS101 Assignment No 2 Solution Fall 2017 Since 1983, it has been known mainly because of its annual report and rankings that influence in college and grad school, lies in most fields and subjects. U.s. News World Report is and academic institution is the oldest and most famous in America, [5] and covering the areas of business, law, medicine, engineering, social sciences, education and public affairs, in addition to many other areas. Print Edition] has consistently included in the list of national bestsellers, coupled with online subscriptions. Additional rankings published by U.s. News World Report and includes hospitals,CS101 Assignment No 2 Solution Fall 2017, medical and specialty cars.
CS101 Assignment No 2 Solution Fall 2017-News of the United States was founded in 1933 by David Lawrence (1888-1973), which also started the World Report in 1946. The two magazines are covering national and international news separately, but Lawrence combines them into news reports of U.S. in World and 1948 [1] and Later sold the magazine to its employees. Historically, this magazine tends to be a bit more conservative than the two main competitors, Time and Newsweek, and focus more on the story of economic, health, and education. It's also distancing news, entertainment and sports celebrities. [2] an important milestone in the history of the beginning of the magazine is including the introduction of the "Washington Whispers" column in 1934 and the column "News You Can Use" in 1952. [3] [4] in 1958, the circulation of the weekly magazine passed one million and two million in 1973. (wikipedia) CS101 Assignment No 2 Solution Fall 2017

CS101 Assignment No 2 Fall 2017

Dear Students, Here you can read or Download CS101 -Introduction to Computing Assignment No 2 Solution and Discussion of Semester Fall 2017. CS101 Assignment Solution has been added. Assignment Due Date is 12 January, 2018. Total Marks are 20. We are here to facilitate your learning and we do not appreciate the idea of copying or replicating solutions. CS101 Assignment No 1 Solution Fall 2017.

CS101 Assignment No 2 Solution Fall 2017
CS101 Assignment No 2 Solution Fall 2017

CS101 Assignment Objectives:

After solving this assignment, students will learn about,
  • HTML tags and handling of HTML tags. 
  • Table creation and handling in HTML. 
  • Knowledge about JAVA SCRIPT functions and JAVA SCRIPTS events. 

CS101 Assignment Instructions:

Please read the following instructions carefully before submitting assignment:
It should be clear that your assignment will not get any credit if:

  • The assignment is submitted after due date.
  • The assignment is submitted via email.
  • The assignment is copied from Internet or from any other student.
  • The submitted assignment does not open or file is corrupt.
  • It is in some format other than .html.
Please Note: All types of plagiarism are strictly prohibited.

For any query about the assignment, contact at cs101@vu.edu.pk

CS101 Assignment Question Statement:

Please Note: Students are required to submit HTML code file only with .html extension.Don’t upload word format file(.doc) etc.

You are required to write HTML with Java Script code to create Weight Converter Calculator web page which can be used to convert values entered in Kilo Gram to Gram, Pounds, Milligrams, US tons and Ounces respectively.

CS101 Assignment Solution Guidelines :

Solution guidelines of this web page are given as follow,
  • You are required to create a text for taking input from the users in Kilo Grams. This text box can be labelled as Weight in KG. 
  • The users will be required to enter their input in Weight in Kg. 
  • Create one button labeled as Convert. On Mouse Click event the function “Converter” should be called to covert KG value to other units. 
  • If no value or less than 0 is entered in KG text box and Covert button is clicked then alert should be shown through window.alert() as:

CS101 Assignment Question figure (a)
  • If the values is greater than 0 then your webpage will show converted values in Grams, Pounds, Milligrams, US tons and Ounces in the given text boxes as shown in sample output. 
  • Create another button labeled as Reset Form to clear text box values. 
  • You are required to use table so that items of the webpage will be shown in the arranged form.
Formula for KG to Grams conversion is:

Kilo Grams= KG*1000

Formula for KG to Pounds conversion is:
Pounds = KG* 2.2046

Formula for KG to Milligrams conversion is:
Milligrams = KG* 1000000

Formula for KG to Pounds conversion is:
US Ton = KG* 0.0011023

Formula for KG to Pounds conversion is:
Ounce = KG* 35.274

Sample Output (Snapshot): Color Scheme may be of your choice


CS101 Assignment Question figure (b)

CS101 Assignment No 2 Solution Fall 2017

You will see the sample Solution file page preview below. and You can easily Download CS101 Assignment Solution File from the Download Button given below:

Scroll to Right witht the Bar below to read complete Code:

<html>
<head>
<title>homepage</title>
<script>
function check(){
var x;
x = document.getElementById('in_kg').value;
if (isNaN(x) || x <= 0) {
window.alert("Enter value grater than 0");
}else{
varnum;
num = x * 1000 ;
document.getElementById('grams').value = num;
num = x * 2.2046 ;
document.getElementById('pounds').value = num;
num = x * 1000000 ;
document.getElementById('mg').value = num;
num = x * 0.0011023 ;
document.getElementById('Us_ton').value = num;
num = x * 35.274 ;
document.getElementById('ounce').value = num;
}
}
</script>
</head>

<body>
<div align="center" style="margin-left: 35%; margin-right: 35%;">
<div style="font-size: 36px; background-color: Yellow; color: Red;">Weight Converter</div>
<p style="font-size: 20px; background-color: gray; margin: 5px;">Welcome to the online converter</p>
</div>
<form align="center">
<table align="center">
<tr>
<td>
<label>Weight in KG:</label>
</td>
<td>
<input type="number" name="kg" id="in_kg">
<input type="button" name="submit" value="Convert" onclick="check()">
</td>
</tr>
<tr>
<td>
<label>Weight In Grams:</label>
</td>
<td>
<input type="number" name="in_g" id="grams">
</td>
</tr>
<tr>
<td>
<label>Pounds:</label>
</td>
<td>
<input type="number" name="in_p" id="pounds">
</td>
</tr>
<tr>
<td>
<label>MilliGram:</label>
</td>
<td>
<input type="number" name="in_m" id="mg">
</td>
</tr>
<tr>
<td>
<label>US Ton:</label>
</td>
<td>
<input type="number" name="in_t" id="Us_ton">
</td>
</tr>
<tr>
<td>
<label>Ounces:</label>
</td>
<td>
<input type="number" name="in_o" id="ounce">
</td>
</tr>
</table>
<div id="grams"></div>
<input type="reset" name="reset" value="Reset Form">

<p>You can press Reset Button for another conversion</p>
</form>
</body>
</html>

CS101 Assignment Solution Download Link


Download 

If Assignment Solution provided by (Virtual Study Solutions) was helpful. Please Share it with your friends. You can also like our Facebook Page or Subscribe Us below for Updates. Thank You.

Title :CS101 Assignment No 2 Solution Fall 2017
Source :CS101 Assignment No 2 Solution Fall 2017

News Info:


Share on Facebook
Share on Twitter
Share on Google+

Related : CS101 Assignment No 2 Solution Fall 2017

0 komentar:

Post a Comment