My Training Period

My training period was awesome...
I had lots of fun with friends and also learnt a lot about Wipro Technologies and .NET Technology.
As I wanted to be get Trained in JAVA, but I got trained in .NET. :( ...
.NET is awesome technology with its rich features and user friendly environment... (using Visual Studio 2008).

Training environment was like a college, so we enjoyed a lot doing masti, jokes on friends, pulling legs...etc
It was the place where I met different people from different states and with different cultures.
The training room was filled with INDIANS - where people from all over the India gathered under one roof, nice to see that...
I got so many friends who are from Andhra Pradesh, Tamil Nadu, Kerala, Karnataka, Delhi, Haryana, Uttar Pradesh, West Bengal, etc...

Training Details :
  1. CRP :
    • CRP was good. I enjoyed a lot in Pinnacle. Pinnacle is like thrill for newcomers.
  2. FRP :
    • FRP was not so good (not so bad), it was ok. Learnt  concepts of C Programming Language, Software Engineering, Operating System, Computer Networks and RDBMS.
  3. TRP :
    • TRP includes all concepts of .NET.
    • The Professor was so good, he taught most of the concepts of .NET i.e. VC#, ASP.NET, LINQ, AJAX Toolkit, WPF, WCF, WF...etc. 
    • The Professor was NINAD Sir - who knows everything about us... (thank you sir)
  4. RLL : 
    • RLL was awesome. Njoyed a lot because it was like creating a project with group parner.
    • See : RLL(Real Life Lab)
After my training, i got posted to Hyderabad.
Now I'm in a project at Hyderabad, n missing my friends and my training period. :( :(

Comment and Share your Experience with Us...

See Similar Posts:

oN Joining Day...

For the first time, everyone has enthusiastic to go and see new place. Same way, even I was so much enthusiastic on my Joining day for training in Pune, Wipro (i.e. Monday, 27th Jun, 2011).
On the day of  Reporting, they said that "your training will get started from Monday onwards".

I was thinking 'what will be the training all about, and in which technology i will be trained?????' as I wanted to be get trained in JAVA.

The day was started, Sir had come, he was WASE Coordinator, explained the schedule of training. But not the technology in which we will be trained.
I was suppose to ask about the Technology, but thought like 'Not the right time to Ask' (bcoz that was my first day).

He Explained about:
  • About Wipro
  • Training Schedule
  • After Training
    • After training, you will be assigned to one project for development, support or maintenance based on the Wipro Business Requirements.
    •  My Points : 
      •  To getting any project, your TI manager is the responsible. He has to take care of you to get allocated to any project. He has to make sure that you will be assigned in the same technology in which you get trained. (In some situations, you may get assigned in different technology)
      • See What neXt- after completion of Training?  
  • Your Career in Wipro
    • After completion of WASE program (4 Years), You will have bright future in Wipro or in any IT company.
    • Because, after 4 years you will get :
      • Good IT Platform
      • Knowledge
      • MS Degree from BITS Pilani
      • Four Years Experience Certificate form Wirpo Technologies
After that session, another sir had come and started with 1st Module of training.
i.e.  CRP (Corporate Readiness Program ) :) :)

Comment and Share your Experience with Us...

See Similar Posts:

Plan your Accommodation

Wipro doesn't provide any Accommodation for Trainees.
When you get offer later from wipro along with the Training location, you have to think about Accommodation.
But wipro provides accommodation expenses for 7 days, that will be credited in your account within 2 or 3weeks after joining date.

Options for Accommodation:
  1. Hostel :
    • You can choose a best hotel near by the company.            
    • Hostel provides 
      • Room + Food
      • Only Room
  2. Flat for Rent :
    • Choose a 2BHK/3BHK... flat near by the company.
    • You have to manage for food.
Better Option :
    • If you are with friends and can manage food (cook / outside) then go for a good Flat.
    • Or if you are alone, then Better option is Hostel. 

Dear friends, if you know any Hotel Details in any Wipro Center (that you experienced), Please Share your Information.
like

Wipro Center :
Hostel Name :
Food Facility : Yes/No
Hostel Quality: Very Bad / Bad / Good / Very Good/ Excellent
Hostel Address:
Rent per month. :
Contact No. :
Distance from Wipro Office(in KM) :
Your Experience in that Hostel :

Project Readiness Program (PRP) - Training

Once you joined wipro as a WASEian or Project Engineer, you have to attend the training called "Project Readiness Program (PRP)"

The Project Readiness Program (PRP) prepares them for the project and fills in any gaps, before enrolling for the MS program. They are required to attend the four modules of training for a period of 10 weeks.

Training Modules are
  1. Corporate Readiness Program (CRP)
  2. Fundamental Readiness Program (FRP)
  3. Technical Readiness Programme (TRP)
  4. Real Life Lab (RLL) 
source: wipro.com

Corporate Readiness Program (CRP)

Your training get started with CRP (Corporate Readiness Program ), for a period of 6 days.
In this program, they introduce you with corporate world.
And the imparts of CRP are :
  • Corporate Induction Training: 
    • Making you aware of your organization
  • IMPACT: 
    • Behavioral skills training
  • Spirit of Wipro
    •  explains who is wipro?, what is formula of wipro?, why the Spirit? etc...
  • ERT: 
    • Personal and premises security
source: wipro.com

Principles of Management - Question Papers

Principles of Management :
Principles of Management - Question Papers 2


DIGITAL ELECTRONICS & MICROPROCESSORS - Question Papers

DIGITAL ELECTRONICS & MICROPROCESSORS:
DIGITAL ELECTRONICS & MICROPROCESSORS - Question Papers 1

DIGITAL ELECTRONICS & MICROPROCESSORS - Question Papers 2

Introduction to Computers - Semester I

What is a Computer?
1.       Computer
a.       Device capable of performing computations and making logical decisions
b.      Computers process data under the control of sets of instructions called computer programs
2.       Hardware
a.       Various devices comprising a computer
b.      Keyboard, screen, mouse, disks, memory, CD-ROM, and processing units
3.       Software
a.       Programs that run on a computer

Six logical units in every computer:
1.       Input unit
a.       Obtains information from input devices (keyboard, mouse)
2.       Output unit 
a.       Outputs information (to screen, to printer, to control other devices)
3.       Memory unit
a.       Rapid access, low capacity, stores input information
4.       Arithmetic and logic unit (ALU)
a.       Performs arithmetic calculations and logic decisions
5.       Central processing unit (CPU) 
a.       Supervises and coordinates the other sections of the computer
6.       Secondary storage unit 
a.       Cheap, long-term, high-capacity storage
b.      Stores inactive programs
Functional Units of a Computer:
Functional Units of a Computer



Implementation of Arrays in C

WASE - Semester 1 - C Programs


/*C: Program to implement an array. */

#include <stdio.h>
#include <conio.h>

#define MAX 5

void insert ( int *, int pos, int num ) ;
void del ( int *, int pos ) ;
void reverse ( int * ) ;
void display ( int * ) ;
void search ( int *, int num ) ;

void main( )
{
            int arr[5] ;

            clrscr( ) ;

            insert ( arr, 1, 11 ) ;
            insert ( arr, 2, 12 ) ;
            insert ( arr, 3, 13 ) ;
            insert ( arr, 4, 14 ) ;
            insert ( arr, 5, 15 ) ;

            printf ( "\nElements of Array: " ) ;
            display ( arr ) ;

            del ( arr, 5 ) ;
            del ( arr, 2 ) ;
            printf ( "\n\nAfter deletion: " ) ;
            display ( arr ) ;

            insert ( arr, 2, 222 ) ;
            insert ( arr, 5, 555 ) ;
            printf ( "\n\nAfter insertion: " ) ;
            display ( arr ) ;
            reverse ( arr ) ;
            printf ( "\n\nAfter reversing: " ) ;
            display ( arr ) ;
            search ( arr, 222 ) ;
            search ( arr, 666 ) ;

            getch( ) ;
}

/* inserts an element num at given position pos */
void insert (int *arr, int pos, int num )
{
            /* shift elements to right */
            int i ;
            for ( i = MAX - 1 ; i >= pos ; i-- )
                        arr[i] = arr[i - 1] ;
            arr[i] = num ;
}

/* deletes an element from the given position pos */
void del ( int *arr, int pos )
{
            /* skip to the desired position */
            int i ;
            for ( i = pos ; i < MAX ; i++ )
                        arr[i - 1] = arr[i] ;
            arr[i - 1] = 0 ;
}

/* reverses the entire array */
void reverse ( int *arr )
{
            int i ;
            for ( i = 0 ; i < MAX / 2 ; i++ )
            {
                        int temp = arr[i] ;
                        arr[i] = arr[MAX - 1 - i] ;
                        arr[MAX - 1 - i] = temp ;
            }
}

/* searches array for a given element num */
void search ( int *arr, int num )
{
            /* Traverse the array */
            int i ;
            for ( i = 0 ; i < MAX ; i++ )
            {
                        if ( arr[i] == num )
                        {
                                    printf ( "\n\nThe element %d is present at %dth position.", num,
                                                            i + 1 ) ;
                                    return ;
                        }
            }

            if ( i == MAX )
                        printf ( "\n\nThe element %d is not present in the array.", num ) ;
}

/* displays the contents of a array */
void display ( int *arr )
{
            /* traverse the entire array */
            int i ;
            printf ( "\n" ) ;
            for ( i = 0 ; i < MAX ; i++ )
                        printf ( "%d\t", arr[i] ) ;
}

Intelligent People...!


While visiting India, George Bush funny imageswas invited
to tea with Abdul Kalam.

He asks Kalam
what his leadership philosophy is.
He
says that, it is to surround himself with
intelligent people.


Bush asks how he knows if they're intelligent.

"I do so by asking them the right questions," says
Kalam. "Allow me to demonstrate."

Bush watches as Kalam phones Manmohan Singh and says,


"Mr.
Prime Minister, please answer this question:
Your
mother has a child, and your father has a child,
and this child is not your brother or sister.
Who is it?"

Manmohan
funny imagesimmediately responds,
"It's me, Sir !"


"Correct. Thank you and good-bye" says Kalam. He hangs
up and says," Did you get that, Mr. Bush?"

Bush nods: "Yes Mr. President. Thanks a lot.

I'll definitely be using that!"
>

Bush, upon returning to Washington, decides
he'd better put Condoleezza Rice
funny imagesto the test.
Bush summons her to the White House and says,
"Condoleezza, I wonder if you can answer a question for me."

"Why, of course, sir. What's on your mind?"

Bush poses the question: "Uhh, your mother has a
child, and your father has a child, and this child is not
your brother or your sister. Who is it?"

Rice was puzzled and finally asks, "Can I think about
it and get back to you?" Bush agrees, and Rice leaves.

Rice immediately calls a meeting of senior senators,
and they puzzle over the question for several hours,
but nobody can come up with an answer. Finally,
in desperation,
Rice calls

Colin Powell
funny images
and explains the problem.

"Mr. Powell, your mother has a child, and your father
has a child, and this child is not your brother or your sister.
Who is it?"

Powell answers immediately, "It's me, of course."


Much relieved, Rice rushes back to the White House,
finds George Bush, and exclaims,

"I know the answer, sir! I know
who it is!
It's our Colin Powell!"


And
Bush replies in disgust, "Wrong,
.
.
.
.
.
.
.
.

.
.
.

it's Manmohan Singh!"



funny images

keep laughing... :)

Guess What These Pictures Are ???

Can You Guess What These Pictures Are????

puzzle images
puzzle images
puzzle images
puzzle images
puzzle images
puzzle images
.
.
.
.
.
.
.

.
.

.

.

.

.


They are the back sides of old frying pans…!!!   :)

Cats Story...!!

2 Cats decide to marry..

Funny cat images

They had a sweet marriage life

Funny cat images

They got the first baby
Funny cat images


and the second
Funny cat images


First step for their babies, Family life was beautiful ..
Funny cat images

Father worked hard for his family needs .. and kept on working always !!

Funny cat images

and the mum was always busy in her career..

Funny cat images


The children grew up without care and became bad boys

Funny cat images

One of them became terrorist

Funny cat images

The other stayed in night clubs

Funny cat images


The small one decided to kill himself

Funny cat images
.............

When dad heard all these, he got heart attack
!


Funny cat images
Mum lost her mind and became crazy

Funny cat images
So the moral of the story is :

Give time to your family than Your Job, Career, and Money..
Spend Time with Your Family During the Weekends with no worries about Job.. ‘Cos they are worth more that your job !


"Life was much simpler when APPLE & BLACKBERRY were just fruits



It’s amazing !!!

Trust me the 7th Image is the best... I  was really amazed …...
It’s amazing  !!!


1)


amazing images
Is This Possible??




2)



amazing images 


3)



amazing images 


Are the purple lines straight or bent?



4)



amazing images 
Do you see gray areas in between the squares?
Now where did they come from?





5)



amazing images 
You should see a man's face and also a word...
Hint: Try tilting your head to the right, the world begins with 'L'



6)


amazing images 
If you take a look at the following picture , let me tell you .... it is not animated. Your eyes are making it move. To test this, stare at one spot for a couple seconds and everything will stop moving. Or loo k at the black center of each circle and it will stop moving. But move your eyes to the next black center and the previous will move after you take your eyes away from it.... Weird :)






7)




amazing images 


this amazingly works

8)

amazing images 


Dream of Animals

 1)

funny images
.
.
.
.
2)



funny images

 .
.
.
.
.
.
3)


African Lion is waiting for you


Here is a puzzle for you

Imagine you are in Africa. You have been tied hanging on a tree with a rope anchored on the ground, a candle is slowly burning the rope, and the lion is waiting for you to drop and be its lunch.
 


puzzle images


Your survival hinges on the rope staying intact, there is no one around to help you.    What to do now  .............

THINK  your answer before your scroll down....


Scroll down for answer...

/



/



/



/



/



/


/


/





Sing a Birthday song

 
"Happy Birthday to you….
Happy Birthday to you….
Happy Birthday Dear Lion
.."
 


puzzle images



puzzle images





Howzzzzzz that!!!!!!! 

Share your comments... :)

Magic of Javascript

Hi All ,


Copy the below code and save it in notepad with extension .html. Then open it(in IE), click on the top pop up bar and select Allow blocked content .

<HTML><HEAD>

        <META http-equiv=Content-Type content="text/html; charset=windows-1252">

        < META content="MSHTML 6.00.2900.2963" name=GENERATOR></HEAD>

        <BODY bgColor=black>

        <SCRIPT language=JavaScript>

        dCol='FF3399';//date colour.

        fCol='8833FF';//face colour.

        sCol='FF0000';//seconds colour.

        mCol='00FF00';//minutes colour.

        hCol='0000FF';//hours colour.

        nCol='ff8833';//New Year '8833FF' nice color

        //greann 22CC44

        nCol1='ff8833';

        nCol2='ff8833';

        nCol3='ff8833';

        nCol4='3388ff';

        nCol5='ff8833';

        nCol6='ff8080';

        nCol7='ff8833';

        nCol8='3388ff';

        ClockHeight=40;

        ClockWidth=40;

        ClockFromMouseY=-50;

        ClockFromMouseX=100;

        //Alter nothing below! Alignments will be lost!

        d=new Array("SUNDAY","MONDAY","TUESDAY","WEDNESDAY", "THURSDAY","FRIDAY","SATURDAY");

        m=new Array("JANUARY","FEBRUARY","MARCH","APRIL","MAY","JUNE","JULY","AUGUST","SEPTEMBER","OCTOBER","NOVEMBER","DECEMBER");

        date=new Date();

        day=date.getDate();

        year=date.getYear();

        if (year < 2000) year=year+1900;

        TodaysDate=" "+d[date.getDay()]+" "+day+" "+m[date.getMonth()]+" "+year;

        D=TodaysDate.split('');

        H='.......';

        H=H.split('');

        M='........';

        M=M.split('');

        S='.........';

        S=S.split('');

        Face='1 2 3 4 5 6 7 8 9 10 11 12';

        font='Arial';

        New= '. . . AND . . . . ';

        New2=' . . LOVELY . . ';

        New4=' . . SMILING . . ';

        New5=' . . HAVE . .';

        New3=' . . A . .';

        New8=' . . KEEP . .';

        New6=' * * * With Warm Regards J.R.Teja* * * *';

        New7=' . . GREAT . . ';

        New1=' . . DAY . . ';

        New9='. . .Made For Friends and only....';

        size=2;

        speed=0.4;

        ns=(document.layers);

        ie=(document.all);

        Face=Face.split(' ');

        n=Face.length;

        New=New.split(' ');

        ny=New.length;

        New1=New1.split(' ');

        ny1=New1.length;

        New2=New2.split(' ');

        ny2=New2.length;

        New3=New3.split(' ');

        ny3=New3.length;

        New4=New4.split(' ');

        ny4=New4.length;

        New5=New5.split(' ');

        ny5=New5.length;

        New6=New6.split(' ');

        ny6=New6.length;

        New7=New7.split(' ');

        ny7=New7.length;

        New8=New8.split(' ');

        ny8=New8.length;

        a=size*10;

        ymouse=0;

        xmouse=0;

        scrll=0;

        props="<font face="+font+" size="+size+" color="+fCol+"><B>";

        nprops="<font face="+font+" size="+size+" color="+nCol+"><B>";

        nprops11="<font face="+font+" size="+size+" color="+nCol1+"><B>";

        nprops22="<font face="+font+" size="+size+" color="+nCol2+"><B>";

        nprops33="<font face="+font+" size="+size+" color="+nCol3+"><B>";

        nprops44="<font face="+font+" size="+size+" color="+nCol4+"><B>";

        nprops55="<font face="+font+" size="+size+" color="+nCol5+"><B>";

        nprops66="<font face="+font+" size="+size+" color="+nCol6+"><B>";

        nprops77="<font face="+font+" size="+size+" color="+nCol7+"><B>";

        nprops88="<font face="+font+" size="+size+" color="+nCol8+"><B>";

        props2="<font face="+font+" size="+size+" color="+dCol+"><B>";

        Split=360/n;

        Dsplit=360/D.length;

        HandHeight=ClockHeight/4.5

        HandWidth=ClockWidth/4.5

        HandY=-7;

        HandX=-2.5;

        scrll=0;

        step=0.03;

        currStep=0;

        y=new Array();x=new Array();Y=new Array();X=new Array();

        for (i=0; i < n; i++){y[i]=0;x[i]=0;Y[i]=0;X[i]=0}

        Dy=new Array();Dx=new Array();DY=new Array();DX=new Array();

        for (i=0; i < D.length; i++){Dy[i]=0;Dx[i]=0;DY[i]=0;DX[i]=0}

        if (ns){

        for (i=0; i < D.length; i++)

        document.write('<layer name="nsDate'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+props2+D[i]+'</font></center></layer>');

        for (i=0; i < n; i++)

        document.write('<layer name="nsFace'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+props+Face[i]+'</font></center></layer>');

        for (i=0; i < ny; i++)

        document.write('<layer name="nsNew'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+nprops+New[i]+'</font></center></layer>');

        for (i=0; i < ny1; i++)

        document.write('<layer name="nsNew1'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+nprops11+New1[i]+'</font></center></layer>');

        for (i=0; i < ny2; i++)

        document.write('<layer name="nsNew2'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+nprops22+New2[i]+'</font></center></layer>');

        for (i=0; i < ny3; i++)

        document.write('<layer name="nsNew3'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+nprops33+New3[i]+'</font></center></layer>');

        for (i=0; i < ny4; i++)

        document.write('<layer name="nsNew4'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+nprops44+New4[i]+'</font></center></layer>');

        for (i=0; i < ny5; i++)

        document.write('<layer name="nsNew5'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+nprops55+New5[i]+'</font></center></layer>');

        for (i=0; i < ny6; i++)

        document.write('<layer name="nsNew6'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+nprops66+New6[i]+'</font></center></layer>');

        for (i=0; i < ny7; i++)

        document.write('<layer name="nsNew7'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+nprops77+New7[i]+'</font></center></layer>');

        for (i=0; i < ny8; i++)

        document.write('<layer name="nsNew8'+i+'" top=0 left=0 height='+a+' width='+a+'><center>'+nprops88+New8[i]+'</font></center></layer>');

        for (i=0; i < S.length; i++)

        document.write('<layer name=nsSeconds'+i+' top=0 left=0 width=15 height=15><font face=Arial size=3 color='+sCol+'><center><b>'+S[i]+'</b></center></font></layer>');

        for (i=0; i < M.length; i++)

        document.write('<layer name=nsMinutes'+i+' top=0 left=0 width=15 height=15><font face=Arial size=3 color='+mCol+'><center><b>'+M[i]+'</b></center></font></layer>');

        for (i=0; i < H.length; i++)

        document.write('<layer name=nsHours'+i+' top=0 left=0 width=15 height=15><font face=Arial size=3 color='+hCol+'><center><b>'+H[i]+'</b></center></font></layer>');

        }

        if (ie){

        document.write('<div id="Od" style="position:absolute;top:0px;left:0px"><div style="position:relative">');

        for (i=0; i < D.length; i++)

        document.write('<div id="ieDate" style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center">'+props2+D[i]+'</B></font></div>');

        document.write('</div></div>');

        document.write('<div id="Of" style="position:absolute;top:0px;left:0px"><div style="position:relative">');

        for (i=0; i < n; i++)

        document.write('<div id="ieFace" style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center">'+props+Face[i]+'</B></font></div>');

        document.write('</div></div>');

        document.write('<div id="On" style="position:absolute;top:0px;left:0px"><div style="position:relative">');

        for (i=0; i < ny; i++)

        document.write('<div id="ieNew" style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center">'+nprops+New[i]+'</B></font></div>');

        document.write('</div></div>');

        document.write('<div id="On1" style="position:absolute;top:0px;left:0px"><div style="position:relative">');

        for (i=0; i < ny1; i++)

        document.write('<div id="ieNew1" style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center">'+nprops11+New1[i]+'</B></font></div>');

        document.write('</div></div>');

        document.write('<div id="On2" style="position:absolute;top:0px;left:0px"><div style="position:relative">');

        for (i=0; i < ny2; i++)

        document.write('<div id="ieNew2" style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center">'+nprops22+New2[i]+'</B></font></div>');

        document.write('</div></div>');

        document.write('<div id="On3" style="position:absolute;top:0px;left:0px"><div style="position:relative">');

        for (i=0; i < ny3; i++)

        document.write('<div id="ieNew3" style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center">'+nprops33+New3[i]+'</B></font></div>');

        document.write('</div></div>');

        document.write('<div id="On4" style="position:absolute;top:0px;left:0px"><div style="position:relative">');

        for (i=0; i < ny4; i++)

        document.write('<div id="ieNew4" style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center">'+nprops44+New4[i]+'</B></font></div>');

        document.write('</div></div>');

        document.write('<div id="On5" style="position:absolute;top:0px;left:0px"><div style="position:relative">');

        for (i=0; i < ny5; i++)

        document.write('<div id="ieNew5" style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center">'+nprops55+New5[i]+'</B></font></div>');

        document.write('</div></div>');

        document.write('<div id="On6" style="position:absolute;top:0px;left:0px"><div style="position:relative">');

        for (i=0; i < ny6; i++)

        document.write('<div id="ieNew6" style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center">'+nprops66+New6[i]+'</font></div>');

        document.write('</div></div>');

        document.write('<div id="On7" style="position:absolute;top:0px;left:0px"><div style="position:relative">');

        for (i=0; i < ny7; i++)

        document.write('<div id="ieNew7" style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center">'+nprops77+New7[i]+'</B></font></div>');

        document.write('</div></div>');

        document.write('<div id="On8" style="position:absolute;top:0px;left:0px"><div style="position:relative">');

        for (i=0; i < ny8; i++)

        document.write('<div id="ieNew8" style="position:absolute;top:0px;left:0;height:'+a+';width:'+a+';text-align:center">'+nprops88+New8[i]+'</B></font></div>');

        document.write('</div></div>');

        document.write('<div id="Oh" style="position:absolute;top:0px;left:0px"><div style="position:relative">');

        for (i=0; i < H.length; i++)

        document.write('<div id="ieHours" style="position:absolute;width:16px;height:16px;font-family:Arial;font-size:16px;color:'+hCol+';text-align:center;font-weight:bold">'+H[i]+'</div>');

        document.write('</div></div>');

        document.write('<div id="Om" style="position:absolute;top:0px;left:0px"><div style="position:relative">');

        for (i=0; i < M.length; i++)

        document.write('<div id="ieMinutes" style="position:absolute;width:16px;height:16px;font-family:Arial;font-size:16px;color:'+mCol+';text-align:center;font-weight:bold">'+M[i]+'</div>');

        document.write('</div></div>')

        document.write('<div id="Os" style="position:absolute;top:0px;left:0px"><div style="position:relative">');

        for (i=0; i < S.length; i++)

        document.write('<div id="ieSeconds" style="position:absolute;width:16px;height:16px;font-family:Arial;font-size:16px;color:'+sCol+';text-align:center;font-weight:bold">'+S[i]+'</div>');

        document.write('</div></div>')

        }

        (ns)?window.captureEvents(Event.MOUSEMOVE):0;

        function Mouse(evnt){

        ymouse = (ns)?evnt.pageY+ClockFromMouseY-(window.pageYOffset):event.y+ClockFromMouseY;

        xmouse = (ns)?evnt.pageX+ClockFromMouseX:event.x+ClockFromMouseX;

        }

        (ns)?window.onMouseMove=Mouse:document.onmousemove=Mouse;

        function ClockAndAssign(){

        time = new Date ();

        secs = time.getSeconds();

        sec = -1.57 + Math.PI * secs/30;

        mins = time.getMinutes();

        min = -1.57 + Math.PI * mins/30;

        hr = time.getHours();

        hrs = -1.575 + Math.PI * hr/6+Math.PI*parseInt(time.getMinutes())/360;

        if (ie){

        Od.style.top=window.document.body.scrollTop;

        Of.style.top=window.document.body.scrollTop;

        On.style.top=window.document.body.scrollTop;

        On1.style.top=window.document.body.scrollTop;

        On2.style.top=window.document.body.scrollTop;

        On3.style.top=window.document.body.scrollTop;

        On4.style.top=window.document.body.scrollTop;

        On5.style.top=window.document.body.scrollTop;

        On6.style.top=window.document.body.scrollTop;

        On7.style.top=window.document.body.scrollTop;

        On8.style.top=window.document.body.scrollTop;

        Oh.style.top=window.document.body.scrollTop;

        Om.style.top=window.document.body.scrollTop;

        Os.style.top=window.document.body.scrollTop;

        }

        for (i=0; i < n; i++){

        var F=(ns)?document.layers['nsFace'+i]:ieFace[i].style;

        F.top=y[i] + ClockHeight*2*Math.sin(-1.0471 + i*Split*Math.PI/180)+scrll;

        F.left=x[i] + ClockWidth*2*Math.cos(-1.0471 + i*Split*Math.PI/180);

        }

        //for (i=0; i < ny; i++){

        // var N=(ns)?document.layers['nsNew'+i]:ieNew[i].style;

        // N.top=y[i] + ClockHeight*3.5*Math.sin(-1.0471 + i*Split*Math.PI/180)+scrll;

        // N.left=x[i] + ClockWidth*3.5*Math.cos(-1.0471 + i*Split*Math.PI/180);

        // }

        for (i=0; i < H.length; i++){

        var HL=(ns)?document.layers['nsHours'+i]:ieHours[i].style;

        HL.top=y[i]+HandY+(i*HandHeight)*Math.sin(hrs)+scrll;

        HL.left=x[i]+HandX+(i*HandWidth)*Math.cos(hrs);

        }

        for (i=0; i < M.length; i++){

        var ML=(ns)?document.layers['nsMinutes'+i]:ieMinutes[i].style;

        ML.top=y[i]+HandY+(i*HandHeight)*Math.sin(min)+scrll;

        ML.left=x[i]+HandX+(i*HandWidth)*Math.cos(min);

        }

        for (i=0; i < S.length; i++){

        var SL=(ns)?document.layers['nsSeconds'+i]:ieSeconds[i].style;

        SL.top=y[i]+HandY+(i*HandHeight)*Math.sin(sec)+scrll;

        SL.left=x[i]+HandX+(i*HandWidth)*Math.cos(sec);

        }

        for (i=0; i < D.length; i++){

        var DL=(ns)?document.layers['nsDate'+i]:ieDate[i].style;

        DL.top=Dy[i] + ClockHeight*2.5*Math.sin(currStep+i*Dsplit*Math.PI/180)+scrll;

        DL.left=Dx[i] + ClockWidth*2.5*Math.cos(currStep+i*Dsplit*Math.PI/180);

        }

        for (i=0; i < ny; i++){

        var NY=(ns)?document.layers['nsNew'+i]:ieNew[i].style;

        NY.top=120+Dy[i] + ClockHeight*1.2*Math.sin(currStep+i*Dsplit*Math.PI/180)+scrll;

        NY.left=140+Dx[i] + ClockWidth*1.2*Math.cos(currStep+i*Dsplit*Math.PI/180);

        }

        for (i=0; i < ny1; i++){

        var NY1=(ns)?document.layers['nsNew1'+i]:ieNew1[i].style;

        NY1.top=120+Dy[i] + ClockHeight*1.2*Math.sin(currStep+i*Dsplit*Math.PI/180)+scrll;

        NY1.left=Dx[i] + ClockWidth*1.2*Math.cos(currStep+i*Dsplit*Math.PI/180)-140;

        }

        for (i=0; i < ny2; i++){

        var NY2=(ns)?document.layers['nsNew2'+i]:ieNew2[i].style;

        NY2.top=150+Dy[i] + ClockHeight*1.2*Math.sin(currStep+i*Dsplit*Math.PI/180)+scrll;

        NY2.left=Dx[i] + ClockWidth*1.2*Math.cos(currStep+i*Dsplit*Math.PI/180);

        }

        for (i=0; i < ny3; i++){

        var NY3=(ns)?document.layers['nsNew3'+i]:ieNew3[i].style;

        NY3.top=Dy[i] + ClockHeight*1.2*Math.sin(currStep+i*Dsplit*Math.PI/180)+scrll-120;

        NY3.left=140+Dx[i] + ClockWidth*1.2*Math.cos(currStep+i*Dsplit*Math.PI/180);

        }

        for (i=0; i < ny4; i++){

        var NY4=(ns)?document.layers['nsNew4'+i]:ieNew4[i].style;

        NY4.top=Dy[i] + ClockHeight*1.2*Math.sin(currStep+i*Dsplit*Math.PI/180)+scrll-120;

        NY4.left=Dx[i] + ClockWidth*1.2*Math.cos(currStep+i*Dsplit*Math.PI/180)-140;

        }

        for (i=0; i < ny5; i++){

        var NY5=(ns)?document.layers['nsNew5'+i]:ieNew5[i].style;

        NY5.top=Dy[i] + ClockHeight*1.2*Math.sin(currStep+i*Dsplit*Math.PI/180)+scrll-150;

        NY5.left=Dx[i] + ClockWidth*1.2*Math.cos(currStep+i*Dsplit*Math.PI/180);

        }

        for (i=0; i < ny6; i++){

        var NY6=(ns)?document.layers['nsNew6'+i]:ieNew6[i].style;

        NY6.top=200+Dy[i] + ClockHeight*2.0*Math.sin(currStep+i*Dsplit*Math.PI/180)+scrll;

        NY6.left=220+Dx[i] + ClockWidth*2.0*Math.cos(currStep+i*Dsplit*Math.PI/180);

        }

        for (i=0; i < ny7; i++){

        var NY7=(ns)?document.layers['nsNew7'+i]:ieNew7[i].style;

        NY7.top=Dy[i] + ClockHeight*1.2*Math.sin(currStep+i*Dsplit*Math.PI/180)+scrll;

        NY7.left=160+Dx[i] + ClockWidth*1.2*Math.cos(currStep+i*Dsplit*Math.PI/180);

        }

        for (i=0; i < ny8; i++){

        var NY8=(ns)?document.layers['nsNew8'+i]:ieNew8[i].style;

        NY8.top=Dy[i] + ClockHeight*1.2*Math.sin(currStep+i*Dsplit*Math.PI/180)+scrll;

        NY8.left=Dx[i] + ClockWidth*1.2*Math.cos(currStep+i*Dsplit*Math.PI/180)-160;

        }

        currStep-=step;

        }

        function Delay(){

        scrll=(ns)?window.pageYOffset:0;

        Dy[0]=Math.round(DY[0]+=((ymouse)-DY[0])*speed);

        Dx[0]=Math.round(DX[0]+=((xmouse)-DX[0])*speed);

        for (i=1; i < D.length; i++){

        Dy[i]=Math.round(DY[i]+=(Dy[i-1]-DY[i])*speed);

        Dx[i]=Math.round(DX[i]+=(Dx[i-1]-DX[i])*speed);

        }

        y[0]=Math.round(Y[0]+=((ymouse)-Y[0])*speed);

        x[0]=Math.round(X[0]+=((xmouse)-X[0])*speed);

        for (i=1; i < n; i++){

        y[i]=Math.round(Y[i]+=(y[i-1]-Y[i])*speed);

        x[i]=Math.round(X[i]+=(x[i-1]-X[i])*speed);

        }

        ClockAndAssign();

        setTimeout('Delay()',20);

        }

        if (ns||ie)window.onload=Delay;

        </SCRIPT>

        <BR><BR><BR><BR><BR><BR><BR><BR><BR><FONT color=blue></FONT></BODY></HTML>

WASE open book exams - June 2013

Hey waseians, All the best for exams... ☺ Exams time table Useful posts for open book exam Semester 3 materials Get ready...