SWPD- Tutorial-2



1. Write a Program to display Text-field,Text-area, Radio button, Check box, Drop down menu,           submit button using form tag
2. Write a Program to give link to an image.
3. Write a Program to give link to a button.

SWPD-Tutorial-1



1. Write a Program to Insert Hyperlink in HTML page.
2. Write a program to insert image in the HTML page.
3. Write a program to insert table in the HTML page.
4. Write a program to display ordered list and unordered list in HTML page.

FOIT-Tutorial-3

1. What is RAM? What is ROM?
2. What is HDD?
3. What is CD, DVD,USB drives?
4. What is Cache memory?

FOIT-Tutorial -2

1.What is Mother Board? CPU, and SMPS.
2. What is Input Device. Explain Mouse, Key board, Scanner
3. What is Output Device. Explain LCD, LED, Printer.

FOIT- Tutorial 1

1. What is I.T.
2. Diff. bet. Data, Information and Knowledge.
3. What is Hardware & Software. explain with Example

My Reseach paper

UITableView Delegate Methods


 - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView 
{
              // return number of sections in Table;
              return 2;
}
  
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
 {
           // Return the number of rows in the section.
              return 2;
}


- (void)tableView:(UITableView *)tableView didDeselectRowAtIndexPath:(NSIndexPath *)indexation
{

             //   this method calls when row in row is selected 
                for example on row selected you want to push to new view
}

- (NSIndexPath *)tableView:(UITableView *)tableView willDeselectRowAtIndexPath:(NSIndexPath *)indexPath
{
              // this method call when row is deselect the row...
 } 

- (NSString *)tableView:(UITableView *)tableView titleForDeleteConfirmationButtonForRowAtIndexPath:(NSIndexPath *)indexPath
{

}


- (UIView *)tableView:(UITableView *)tableView viewForFooterInSection:(NSInteger)section
{


}