Saturday, 24 October 2015

HTML Basics With Examples

HTML Basics

HTML  means Hypertext Markup Language. Html invented by Tim Berners - Lee in 1980. Html Designed For Communication Between User and Computer. Html Language used to Design Webpage ( Websites ). The Html is most popular ( Basic ) Language to Design Any Web Page. Html Having Simply Three Tags. They are HTML, HEAD, BODY ( tags) are denoted By < >  to </>.

Example For Html Tags:

<HTML>
<HEAD>
</HEAD>
<BODY>
</BODY>
</HTML>
Here, We See  Three Tags. Every tag Having Some attributes For Design Web Pages. Bellow Explain More HTML Tags. 

Header Tags in HTML

<h1></h1>
<h2></h2>
<h3></h3>
<h4></h4>
<h5></h5>
<h6></h6>
The Header tags are using the title names and main important content in webpages. Every Header Tag Having Some Text Size different Display initially.

Paragraph Using Tags in HTML 

<p></p>
<pre></pre>
<small> Some text </small>
<strong> Some Text</strong>
<b>Some Text</b>
<br><br/> ( Use For Break The Lane )


Hyperlink Using This Tag in HTML 

<a href=" URL "> Click Here </a>

Additional Link Access in HTML

<link rel=" " href=" " />  ( One page to another page data access )

Title tag in HTML

<title> Webpage name</title>

Address Tag in HTML

<address>Some Text </address>


Mark The Select Content Color in Html

 <mark>Some Text </mark>

Tuesday, 8 September 2015

Jntuk 4-1 1 mid Original Bits 2015 R10

Jntuk 4-1 1 mid Original Bits ECE, CSE, CIVIL, MECH 2015 R10

Click Link Get All Branch Bits In One page  ( Total )


Jntuk 4-1 1Mid Online Bits All Branches ( Click On Link )

Sunday, 6 September 2015

Jntuk 4-1 R10 1 Mid Online Bits (2015 )

Jntuk 4-1 R 10 1 Mid Online Bits ( 2015 )

4-1 1st mid CNS Online Bits ( CSE ) :   Download



Sunday, 30 August 2015

Addition in C Program With Example

Addition Program in c Language With Example and .How to Program Will Start Compile and Variable Declare and Data Type . Logic Explain in C Program With Example Output.

Addition : In Computer Programming Language Two Variable are plus ( + ) Operation  perform . Call as addition Operation in C program.

Syntax

int main()
{
datatype     Variable ;
---------------------;
---------------------;
---------------------;
Logic ;
}   

Addition Program in c 

#include<stdio.h>
#include<conio.h>
int main()
{                                                 

      int a,b,c;                              
      printf("Enter a value : ");
      scanf("%d",&a);
      printf("Enter b value : ");
      scanf("%d",&b);
      c=a+b;                 
      printf ("c value is : %d\n",c);
      return 0;
}


Output

Enter a value :5
Enter b value :5
c value is : 10

Like To Without plus ( + ) Operation addition in C Program 

Saturday, 15 August 2015

Functions in c Programming Language

Functions in c Program 

Functions are defined as block of Code. The Function perform a number of predefined commands to accomplish something productive.That's , means Create a Own functions. Programmer like Writes will generally require a prototype. 

Example Program

#include<stdio.h>
#include<conio.h>
void display();

int main()

{
display();
getch();
return 0;
}
void display()
{
printf("Welcome");
}

Output

welcome 

Explain : The above Functions Program compiler start the initial state to call the display( ). There the display function is printf having some text message. Display the Output.

Pointers in C Programming Language

Pointer in C Programming Language
A Pointer is a programming Language Object, Whose Value refers to another value stored else where in the computer memory using it's address. 

First Known As two Various in Pointers .  

1. &  Address of Operator.
2. *  Value Of Operator.

Simple To Understand :

1. if have a two variables a,b.
2.a ,b having few numbers for storage address.
3. if a storage address are having some values ( content ).
4.b having storage address first second point , the address numbers are a storage address values.
Program
#include<stdio.h> 
#include<conio.h>
int main()
{

int x=10;
int *j;
j=&x;

printf(" The Value of x is %d\n",x);
printf(" The Address of X is %p\n",&x);
printf("The value of x is *(&x)%d\n\n",*(&x));


printf(" The memory address storage pointer j is %P\n",j);
printf(" The value of pointer by the pointer  of j is %d\n",*j);
printf("The address of pointer j is %p",&j);

getch();
return 0;

}

Output
The Value of x is 10
The Address of X is 000000000023FE4C
The value of x is *(&x) 10

The memory address storage pointer j is 000000000023FE4C
The value of pointer by the pointer  of j is 10
The address of pointer j is 000000000023FE40





JNTUK 2-2 (R10, R13, R07 ) Reg/supply Results are Released

Jntuk 2-2 ( R13, R10, R07 ) Reg/ supply may 2015 Results Are Released 


                                                       Jntuk 2-2 Results ( Click Here )  ( Server Not  Work  Wait  )


Note : Every One Get Results in Collage only . Because server are Working Slow . After Some Time  Check Results On Internet . ( Links Are not Working )