2023 2024 EduVark > Education Discussion > General Discussion


  #1  
June 10th, 2016, 02:15 PM
Super Moderator
 
Join Date: Mar 2013
Kuvempu University Solved Assignments

Sir I am looking for the solved assignments of the Kuvempu University for the 5TH SEM BSIT so can you please provide em the same

Hey buddy below ia hve given you some solved assignments of the Kuvempu University for the 5TH SEM BSIT you can have a look


KU 5TH SEM ASSIGNMENT – BSIT (TA) – 52 (WEB PROGRAMMING)

Assignment: TA (Compulsory)

1. What is the meaning of Web? Explain in detail the building elements of web
Web is a complex network of international , cross plateform, and cross cultural communicating devices, connected to each other without any ordering or pattern.
There are two most important building blocks of web:
HTML and HTTP.
HTML: – HTML stands for Hyper Text Markup Language. HTML is a very simple language used
to “describe” the logical structure of a document. Actually, HTML is often called programming
language it is really not. Programming languages are “Turing-complete”, or “computable”. That
is, programming languages can be used to compute something such as the square root of pi or
some other such task. Typically programming languages use conditional branches and loops
and operate on data contained in abstract data structures. HTML is much easier than all of that.
HTML is simply a ‘markup language’ used to define a logical structure rather than compute
anything.
HTTP: - HTTP is a “request-response” type protocol. It is a language spoken between web
browser (client software) and a web server (server software) so that can communicate with each
other and exchange files. Now let us understand how client/server system works using HTTP. A
client/server system works something like this: A big piece of computer (called a server) sits in
some office somewhere with a bunch of files that people might want access to. This computer
runs a software package that listens all day long to requests over the wires.

2. “ HTML is the Language of the Web” Justify the statement
HTML is often called a programming language it is really not. Programming languages
are ‘Turing-complete’, or ‘computable’. That is, programming languages can be used to compute something
such as the square root of pi or some other such task. Typically programming languages use conditional
branches and loops and operate on data contained in abstract data structures. HTML is much easier than
all of that. HTML is simply a ‘markup language’ used to define a logical structure rather than compute
anything.
For example, it can describe which text the browser should emphasize, which text should be considered
body text versus header text, and so forth.
The beauty of HTML of course is that it is generic enough that it can be read and interpreted by a web
browser running on any machine or operating system. This is because it only focuses on describing the
logical nature of the document, not on the specific style. The web browser is responsible for adding style.
For instance emphasized text might be bolded in one browser and italicized in another. it is up to the
browser to decide

3. Give the different classification of HTML tags with examples for each category
LIST OF HTML TAGS :-
Tags for Document Structure
• HTML
• HEAD
• BODY
Heading Tags
• TITLE
• BASE
• META
• STYLE
• LINK
Block-Level Text Elements
• ADDRESS
• BLOCKQUOTE
• DIV
• H1 through H6
• P
• PRE
• XMP
Lists
• DD
• DIR
• DL
• DT
• LI
• MENU
• OL
• UL
Text Characteristics
• B
• BASEFONT
• BIG
• BLINK
• CITE
• CODE
• EM
• FONT
• I
• KBD
• PLAINTEXT
• S
• SMALL

4. Write CGI application which accepts 3 numbers from the user and displays biggest number using GET and POST methods
#!/usr/bin/perl
#print “Content-type:text/html\n\n”;
#$form = $ENV{‘QUERY_STRING’};
use CGI;
$cgi = new CGI;
print $cgi->header;
print $cgi->start_html( “Question Ten” );
my $one = $cgi->param( ‘one’ );
my $two = $cgi->param( ‘two’ );
my $three = $cgi->param( ‘three’ );
if( $one && $two && $three )
{
$lcm = &findLCM( &findLCM( $one, $two ), $three );
print “LCM is $lcm”;
}
else
{
print ‘
‘;
print ‘Enter First Number
‘;
print ‘Enter Second Number
‘;
print ‘Enter Third Number
‘;
print ‘
‘;
print “
“;
}
print $cgi->end_html;
sub findLCM(){
my $x = shift;
my $y = shift;
my $temp, $ans;
if ($x < $y) {
$temp = $y;
$y = $x;
$x = $temp;
}
$ans = $y;
$temp = 1;
while ($ans % $x)
{
$ans = $y * $temp;
$temp++ ;
}
return $ans;
}

Last edited by Neelurk; February 12th, 2020 at 01:28 PM.
Similar Threads
Thread
Kuvempu University Distance Education Assignments Last Date
Solved Assignments of KUVEMPU University
SMU Solved Assignments
Solved Assignments of Annamalai University
Kuvempu University DDE Assignments
Kuvempu University MSC Chemistry Assignments
Kuvempu University Distance Education Assignments-15
Kuvempu University B.Sc IT Solved Assignments
Solved Assignments Of BBA-Sikkim Manipal University
Annamalai University Assignments Solved
Amity University Solved Assignments
Annamalai University Solved MBA Assignments
Sikkim Manipal University Assignments Solved
SMU Solved Assignments II Sem
SMU MBA solved assignments SEM 3

  #2  
November 24th, 2017, 11:00 AM
Unregistered
Guest User
 
Re: Kuvempu University Solved Assignments

Solved Assignment of M.sc MATHEMATICS IN KUVEMPU UNIVERSITY
  #3  
August 2nd, 2018, 05:32 PM
megha p
Guest User
 

[QUOTE=Unregistered;295843]Sir I am looking for the solved assignments of the Kuvempu University for the final year msc
  #4  
August 19th, 2018, 09:59 PM
Junior Member
 
Join Date: Aug 2018
Re: Kuvempu University Solved Assignments

I need b.sc pcm section in huvempu university solved answers for 2018
  #5  
August 19th, 2018, 10:00 PM
Junior Member
 
Join Date: Aug 2018

I need b.sc pcm section 2018 solved assignment answer please
  #6  
September 2nd, 2018, 03:23 PM
Unregistered
Guest User
 
Re: Kuvempu University Solved Assignments

sir, please give me solved Internal Assessment Assignments for Msc Mathematics first year of kuvempu university distance.
  #7  
November 1st, 2018, 09:39 AM
Unregistered
Guest User
 
Re: Kuvempu University Solved Assignments

can i get msc mathematics assignments solved for first year


Quick Reply
Your Username: Click here to log in

Message:
Options



All times are GMT +5. The time now is 04:30 AM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
Content Relevant URLs by vBSEO 3.6.0

1 2 3 4 5 6 7 8