Saturday, April 24, 2010

TIME TABLE

EXAM TIME TABLE FOR 6th SEM

https://docs.google.com/fileview?id=0B8KgpwYLn4o9Mjk3NTM3MWUtMmJiOS00ODFlLWE0ZGItOTgwZTRmZjczYmE4&hl=en



Time tables of Engineering (Sem.-III to Sem.-VIII) (All Branches)

* Third_SEM_FH2010 (ALL BRANCHES)
* Fourth_SEM_FH2010_Rev (ALL BRANCHES)
* Fourth_SEM_FH2010_OLD (ALL BRANCHES)
* Fifth_Sem_FH2010_Rev (ALL BRANCHES)
* Fifth_Sem_FH2010_Old (ALL BRANCHES)
* Six_Sem_FH2010_REV. (ALL BRANCHES)
* Six_Sem_FH2010_Old (ALL BRANCHES)
* SEVENTH_Sem_FH2010. (ALL BRANCHES)
* EIGHT_Sem_FH2010. (ALL BRANCHES)

See this link for other time table

http://www.mu.ac.in/tt_eng3-8sem.html

Wednesday, March 3, 2010

MIT answers to Question Bank

MIT answers to Question Bank

Special thanks to anvith for making this notes


http://docs.google.com/View?id=dd8qjxr3_45gdgxp2c3

or

https://docs.google.com/Doc?docid=0AcKgpwYLn4o9ZGQ4cWp4cjNfNDVnZGd4cDJjMw&hl=en

Answer to Windows registry :


thanks to pushkar & gaurav for taking photos ;)


IF U FIND ANY PROBLEMS OR ERRORS IN THE ABOVE ANSWERS PLEASE FEEL FREE TO HIT ANY OF THE ABOVE GUYS :P

Tuesday, March 2, 2010

BOOKS FOR SEM VI

DBMS : NAVATHE

http://rapidshare.com/files/252831482/DBMS_Navathe_Sandy.pdf

Wiley-Interscience. Information Security Principles and Practice :

http://www.filestube.com/56b92dbee866169a03ea,g/Wiley-Interscience-Information-Security-Principles-and-Practice-Oct-2005-eBook-LinG.html

Will add more as Term Test Progress :)

Wednesday, February 17, 2010

STYDY MATEIAL FOR MIDDLEWARE AND ENTERPRISE INTEGRATION TECHNOLOGIES

STYDY MATEIAL FOR MIDDLEWARE AND ENTERPRISE INTEGRATION TECHNOLOGIES

ebook for EJB & Beans

http://www.esnips.com/doc/8d97cf15-e232-4be8-a5ae-a2bb748f6f0f/MasteringEJB3rdEd

http://www.turboupload.com/dvvlij7b6u07/MasteringEJB3rdEd.pdf.html


PRESENTATIONS :

ENTITY BEANS :

http://www.esnips.com/doc/92c9d931-3c72-4ffc-b1ba-3b9fc7eba144/entity

http://www.turboupload.com/xx6poln4ywco/entity.ppt.html

SESSION BEANS :



To Download the above ppt just click on the fullscreen button then in ACtion part u will see the download option :)

Tuesday, February 9, 2010

LINE OF COUNT(SOFTWARE ENGINEERING)

/*LINE OF COUNT(SOFTWARE ENGINEERING)*/


#include
#include
main()
{
int count=0;
char ch=' ';
FILE *fp;
clrscr();
fp=fopen("Avg.c","r");
do
{
ch=fgetc(fp);
if(ch=='{' || ch==';' || ch=='#')
count++;

} while(ch!=EOF);
printf("Number of Lines:%d ",count);
getch();
}

JTSEARCH