Skip to main content

Posts

ET NEWS: Sorry, Ratan Tata apologises to PM Manmohan Singh

What is key difference between normal leader n extraordinary leader : first thing which is common for later ones is " just watch how humble they are, they have courage to accept mistakes in lengthy n breadth " Our GEN Y have LOT to learn from such examples ! Read more details http://economictimes.indiatimes.com/news/news-by-company/corporate-trends/ratan-tata-apologises-to-prime-minister-manmohan-singh-says-financial-times-report-completely-untrue/articleshow/17683969.cms " target="_blank> ET News

Publishing Research paper Part-III

Hi,  I have already written some tips about publshing of papers. In this article i will try to give some information about content of the research paper you want to publish..  As the name appears , a research paper is a written document of your research which you carried out ..  So first of all the paper content should be  new... If you try to copy from any other paper please bear in mind that these publishing house have sophisticated software which in one click will tell you exactly from where you copied..  So every line should be from your own thinking...  Although taking reference from the past papers  is OK only if you mention it on the reference column..But keep trying to write those research of others in your own language.. Besides this ,every one should be very clear about the research.. what is it all about...You have to write it thinking that as this is the new work so the reviewer must get to know what you are trying to explain.. Another important point is the leve

Publishing Research paper-Part II

Many a times a new researcher get confused about how to make his/her research reach the intellectual world. Definitely , Its the only case when a research gets approved when the research gets published in some reputed journals.. There are many publishing houses around the world who publish world class research journals. Some of them which are associated with Computer Science fields are: 1-IEEE organization 2-Springer 3-ACM 4-Elsevier 5-Wiley 6-Oxford Publishing 7-Some  Publishing house from well renowned Institutions.. There are many more on this list but at this instance of time i can think of only these... Each of these publishers publish hundreds on journal in its list.  So there are many options available for a new researchers and a suitable journal can be choosen depending upon the field of specialization.. Besides these most of the universities/Institutions in India also specify a parameter like- paper should be published in any SCI indexed journal. This SCI list

Mobile Apps Hackerthon Winner

A team of BITiansl (Black berry Sponsored Incubator cell) won Blackberry Jamathon (Blackberry 10 App Development Competition). Team comprised of 4 students - Ramandeep Singh, Shubham Singh, Ankit Chaudhary and Deepak Sharma(B.Sc. Animation and Multimedia 5th semester). Congrats to students! Director Cdr Balwant Sharma, Dr. Shruti Kohli - assistant professor, Computer Science Department who is organizing Mobile Apps Incubator Cell for students specially met the students to motivate them during competition. ·          Nearly 100 professionals and students from all over Delhi and some even from Rajasthan, Gujarat and Maharashtra ·          Students of BIT under the mentorship of Dr Shruti kohli and many other colleges ·          Senior software professionals ·          Even a 10th class student from Jaipur who has published an app on the Google Play app store Sponsor :  BlackBerry Host :  OpenClass and B

AUTOCORRELATION PROGRAMME

Manish Kumar MCA/4528/10 /* Thursday Lab Work AUTOCORRELATION PROGRAMME*/ #include void main() { int random[50],i,j,k,m,M,N,flag=1; float temp=0; clrscr(); printf( "Enter parameters:\n" ); printf( "\nEnter Total Random Number N: " );scanf( "%d" ,&N); printf( "\nTable of Random no.:\n" ); for (j=0;j { random[j]=rand()%10; printf( "%d\t" ,random[j]); } while (flag) { printf( "\nEnter i: " );scanf( "%d" ,&i); printf( "Enter m: " );scanf( "%d" ,&m); printf( "Enter M: " );scanf( "%d" ,&M); if ((i+(M+1)*m)<=N) flag=0; else { flag=1; printf( "wrong enteries! Enter the parameters again\n" ); } } for (k=0;k { temp+=random[i+(k*m)] * random[i+(k+1)*m]; } temp-=0.25; printf( "\n\nResult:%f" ,temp);

Random Number generation

shubh laxmi   #include #include #include #include #define MAX 100 void main() { int i,m,M,c,a,x[MAX]; float r[MAX]; clrscr(); printf( "enter the value of a c m :-" ); scanf( "%d %d %d" ,&a,&c,&m); printf( "Enter the value of x0:" ); scanf( "%d" ,&x[0]); r[0]=( float )x[0]/m; printf( "r[0]=%.3f\n" ,r[0]); for (i=1;i { x[i]=(a*x[i-1]+c)%m; r[i]= ( float )x[i]/m; } for (i=1;i { if (x[i]!=x[0]) printf( "Random nos are:-%.3f\n" ,r[i]); else break ; } getch(); }