Friday 14 November 2014

Tips to get pass mark in Anna university semester examinations :

                Hi and hello poor innocent guys over there .... This is me one of the Engineering student under so called Anna university as like you guys..

                    I finished my degree without any history of arrear that means no arrear in each semester pulse I got placed in the campus itself so here I am to share my success tips to over come the Anna university semester exams..

                      Look guys Anna university is the easiest and simple place where one can get pass with little effect and smart work. The first and the for most likely important thing to do is please for God sake keep your internal make up to 14 because it help you to get through. Don't worry if you don't have much, 10 is more than enough. I cleared all semester with internals 10.

                        For 16 mark questions please refer the previous year questions.
Study only those that repeat. Two 16 mark question from each unit will make.

                        For 2 marks read only those that are in the question bank book. This will make. Please don't ignore 2 mark question from reading this is so needed if you wish to get passed.

                          Then the last thing, just fu*k the seat and sit for the exam let the fate decide......











                  
          

Sunday 27 July 2014

Life as an Engineering Student..... Dreaming huge....

Bla bla bla... have heard so much about the dreams the struggles of many engineering guys out there.. Its not that easy to be a engineer as you all guys non-engineers think off.. me myself an engineering student from the a university were lakhs of students fall. Here is how their life starts.
                                                                             Its their Daddy's OMG who make them to join 3 to 4 tuition's during their 11th and 12th waking up 3.30 am in the mid night not early morning you shits.. when they reach there, there comes the midnight test in the tuition which was useless and the results of the previous test will be shown immediately after today's test ... here come the fun part those who fail in that are asked to stay out side the tuition that is they provide a special area for those special guys like us and are made to write those test questions with answer 15 times while the tuition goes on inside, we keep on writing.. so it was like waking up early in the morning for assignment training.....LOL
                          Finally came the public exam results... To be continued

Sunday 4 May 2014

Amazing Spider-Man 2 Review:



Wow its time for part 2 . There were 3  villains Electro, Green Goblin and Raino dont think that all the three have a big fight all together only the electo was the main villain and the green guy came for 10 min after electro was defeated by our hero and the Raino was just like a joke came for only last 15 seconds were spiderman and raino ran towards each other to fight and suddenly the film ends showing that spider man will save the people no matter what the villains are..!!!!



Finally: Super visuals and a great treat for spiderman fans....!!!

Tuesday 29 April 2014

Java program for Border Gateway Protocol(BGP):


                    package bgp;
import java.util.*;
public class rout
{
    public static void main(String[] args)
    {
     int i,j,k;
     int a[][]=new int[10][10];
     int b[][]=new int[10][10];
     Scanner z=new Scanner(System.in);
     System.out.print("Enter the number of nodes :");
     int n=z.nextInt();
     for(i=0;i<n;i++)
     {
         for(j=0;j<n;j++)
         {
             System.out.println("Enter the distance between the host"+(i+1)+"-"+(j+1));
             a[i][j]=z.nextInt();
         }
     System.out.println("\nThe matrix is:");
     }
     for(i=0;i<n;i++)
     {
         for(j=0;j<n;j++)
            
         {
             System.out.print(a[i][j]+"\t");
         }
         System.out.println();
     }
     for(k=0;k<n;k++)
     {
         for(i=0;i<n;i++)
         {
             for(j=0;j<n;j++)
             {
                 if(a[i][j]>a[i][k]+a[k][j])
                 {
                     a[i][j]=a[i][k]+a[k][j];
                 } 
             }
            
          }
     }
     for(i=0;i<n;i++)
     {
         for(j=0;j<n;j++)
         {
             b[i][j]=a[i][j];
             if(i==j)
             {
                 b[i][j]=0;
               
             }
         }
     }
     System.out.println("\nThe output matrix is:");
     for(i=0;i<n;i++)
     {
         for(j=0;j<n;j++)
         {
             System.out.print(b[i][j]+"\t");
         }
         System.out.println("\n");
     }
     }

}

Embedded System portions for Anna University:


IT2354 EMBEDDED SYSTEMS L T P C
 3 0 0 3

UNIT I EMBEDDED COMPUTING 9
Challenges of Embedded Systems – Embedded system design process. Embedded
processors – 8051 Microcontroller, ARM processor – Architecture, Instruction sets and
programming.

UNIT II MEMORY AND INPUT / OUTPUT MANAGEMENT 9
Programming Input and Output – Memory system mechanisms – Memory and I/O
devices and interfacing – Interrupts handling.

UNIT III PROCESSES AND OPERATING SYSTEMS 9
Multiple tasks and processes – Context switching – Scheduling policies – Interprocess
communication mechanisms – Performance issues.

UNIT IV EMBEDDED SOFTWARE 9
Programming embedded systems in assembly and C – Meeting real time constraints –
Multi-state systems and function sequences. Embedded software development tools –
Emulators and debuggers.

UNIT V EMBEDDED SYSTEM DEVELOPMENT 9
Design issues and techniques – Case studies – Complete design of example embedded
systems.