Tuesday, 20 November 2012
Thursday, 25 October 2012
Wednesday, 17 October 2012
IGNOU MCA 1ST SEM SOLVED ASSIGNMENTS 2012-13
IGNOU MCA First Semester Solved Assignments For July-January-2012-13 Session is now available here at Free of Cost .
MCA First Semester Solved Assignments Details :
1 - Problem Solving and Programming (MCS-011)
Download MCS-011 Solved Assignment 2012-13
Updated
2 - Computer Organisation and Assembly Language (MCS-012)
Download MCS-012 Solved Assignment 2012-13
Shared By Rohit
3 - Discrete Mathematics (MCS-013)
Download MCS-013 Solved Assignment 2012-13
4- Systems Analysis and Design (MCS-014)
Download MCS-014 Solved Assignment 2012-13
5 - Communication Skills (MCS-015)
Download MCS-015 Solved Assignment 2012-13
6 - Internet Concepts and Web Design (MCSL-016)
Download MCSL-016 Solved Assignment 2012-13
7 - C and Assembly Language Programming (MCSL-017)
Download MCSL-017 Solved Assignment 2012-13
Remaining Assignments will be added Asap. For More Updates Join us on Facebook . & For Any Assignments or for any Query, You can Directly Mail Us justdostudy@gmail.com
Thursday, 11 October 2012
History of JAVA
Java is a programming language and a platform independent.
* James Gosling, Mike Sheridan, and Patrick Naughton initiated the Java language project in June 1991.
* Originally designed for small, embedded systems in electronic appliances like set-top boxes.
* Initially called Oak and was developed as a part of the Green Project.
* In 1995, Oak was renamed as "Java". Java is just a name not an acronym.
* Originally developed by James Gosling at Sun MIcrosystems(which is now a subsidiary of Oracle
Corporation) and released in 1995.
* JDK 1.0 released in January 23, 1996.
Saturday, 6 October 2012
Java Tutorials: Finalize and Garbage Collector Example
class TT extends Object
{
TT()
{
System.out.println("TT Class Default Constructor ");
}
protected void finalize()
{
System.out.println("TT Object Going to Dead....");
}
{
TT()
{
System.out.println("TT Class Default Constructor ");
}
protected void finalize()
{
System.out.println("TT Object Going to Dead....");
}
}
public class SystemClassDemo3 {
public static void main(String args[])
{
TT obj = new TT(); // Strong Reference
System.gc();
System.out.println("Now I am Going to Null the Obj ");
obj = null;
System.gc();
System.runFinalization();
}
}
public class SystemClassDemo3 {
public static void main(String args[])
{
TT obj = new TT(); // Strong Reference
System.gc();
System.out.println("Now I am Going to Null the Obj ");
obj = null;
System.gc();
System.runFinalization();
}
}
Friday, 5 October 2012
Java Tutorials: Example of Co-variant return type
package project1;
class Fuel
{
int power;
int smoothness;
int roots;
}
class Hydrogon extends Fuel
int power;
int smoothness;
int roots;
}
class Hydrogon extends Fuel
{
int gasUnit;
}
class Car
int gasUnit;
}
class Car
{
Fuel run()
Fuel run()
{
return new Fuel();
}
}
class FutureCar extends Car
return new Fuel();
}
}
class FutureCar extends Car
{
Hydrogon run()
Hydrogon run()
{
return new Hydrogon();
}
}
public class Class4
return new Hydrogon();
}
}
public class Class4
{
public Class4()
public Class4()
{
}
public static void main(String[] args)
}
public static void main(String[] args)
{
FutureCar futureCar = new FutureCar();
futureCar.run();
}
}
FutureCar futureCar = new FutureCar();
futureCar.run();
}
}
Java Tutorials: Eclipse Shortcuts
File Navigation – Eclipse Shortcuts
CTRL SHIFT R – Open a resource. You need not know the path and just
part of the file name is enough.
CTRL E – Open a file (editor) from within the list of all open files.
CTRL PAGE UP or PAGE DOWN – Navigate to previous or next file from
within the list of all open files.
ALT <- or ALT -> – Go to previous or next edit positions from editor
history list.
Java Editing – Eclipse Shortcuts
CTRL SPACE – Type assist
CTRL SHIFT F – Format code.
CTRL O – List all methods of the class and again CTRL O lists
including inherited methods.
CTRL SHIFT O – Organize imports.
CTRL SHIFT U – Find reference in file.
CTRL / – Comment a line.
F3 – Go to the declaration of the variable.
F4 – Show type hierarchy of on a class.
CTRL T – Show inheritance tree of current token.
SHIFT F2 – Show Javadoc for current element.
ALT SHIFT Z – Enclose block in try-catch.
Sunday, 30 September 2012
Sunday, 23 September 2012
Saturday, 22 September 2012
MCS-024 Assignment July 2012 Q7 b Answer
Question7(b): Consider a class that stores a Bank account holder's name, account number, ATM card number, account balance and ATM PIN. Write a program to store the data onto a disk file, except for the account balance and ATM PIN. Use serialization and transient variables.
Answer:
import java.io.*;
import java.util.*;
public class UserAccount implements Serializable
{
private transient int atmPin_no;
private String atmCard_no;
private String account_number;
private transient float balance_amount;
UserAccount(int pin, String cardno, String acc_no, float balance) //constructor
{
atmPin_no=pin;
atmCard_no=cardno;
account_number=acc_no;
balance_amount=balance;
}
public String toString()
{
String pin=(atmPin_no==null)?"(n/a)":atmPin_no;
Return "Logon info:\n "+" Account No :"+account_number+"\n Balance:"balance_amount;
}
public static void main(String[] args)
Throws IOException, ClassNotFound Exception
{
UserAccount acc=new
UserAccount(1234,"A983423115","23456789076543",5000.34);
System.out.println("Login is="+acc);
ObjectOutputStream obj=new ObjectOutputStream(new FileInputStream("Login.out"));
Acc=(UserAccount)in.readObject();
System.out.println("login="+acc);
}
}
Answer:
import java.io.*;
import java.util.*;
public class UserAccount implements Serializable
{
private transient int atmPin_no;
private String atmCard_no;
private String account_number;
private transient float balance_amount;
UserAccount(int pin, String cardno, String acc_no, float balance) //constructor
{
atmPin_no=pin;
atmCard_no=cardno;
account_number=acc_no;
balance_amount=balance;
}
public String toString()
{
String pin=(atmPin_no==null)?"(n/a)":atmPin_no;
Return "Logon info:\n "+" Account No :"+account_number+"\n Balance:"balance_amount;
}
public static void main(String[] args)
Throws IOException, ClassNotFound Exception
{
UserAccount acc=new
UserAccount(1234,"A983423115","23456789076543",5000.34);
System.out.println("Login is="+acc);
ObjectOutputStream obj=new ObjectOutputStream(new FileInputStream("Login.out"));
Acc=(UserAccount)in.readObject();
System.out.println("login="+acc);
}
}
How To Submit IGNOU Term End Exam Fee Online
GUIDELINES AND INSTRUCTIONS FOR SUBMISSION OF ON-LINE EXAMINATION FORM
Students are required to pay examination fee @ Rs. 60/- per course for theory as well as practical. A late fee of Rs. 300/- from 1st October, 2012 to 20th October, 2012 and Rs. 500/- from 21st Ocltober, 2012 to 31st October 2012 also needs to be included, if submitted during this period.
Mode of payment:
* Credit Card
* Demand Draft
* Cash Payment
* Debit Card of Union Bank of India
Results of June, 2012 Term-end examinations are available on University website www.ignou.ac.in . Please see result status before filling examination form. Click here to see the result status of June, 2012 Examination.
Select and enter Programme code and Examination Centre Code from the options available. If the centre opted by the student is not activated as examination centre or not allotted for any other reason, alternative examination centre will be allotted.
Select courses carefully. Courses for theory as well as practical needs to be selected separately from the list appearing on the screen.
If you wish to submit on-line form please note the auto generated control No. for future reference.
In case you wish to make payment through credit card please select this option and make the payment. Note that 1.96% of the amount to be paid will be debited to your Credit Card Account towards transaction charges. Please retain the auto generated control no. for future reference.OR
In case, you wish to submit on-line form and make payment by cash deposit at any of the Union Bank of India branches, please fill on-line examination form and submit after selecting this option. You are required to take print out of challan automatically generated and deposit required amount at Union Bank of India along with the challan. Please retain a copy of the same for future reference. However, you need not send anything by post. In case you have not downloaded Cash Challan, click here to download Cash Challan.OR
In case you wish to submit on-line form and make payment through a bank draft please select this option. Please keep the bank draft particulars ready with you before starting to fill the form and enter same at the appropriate place and submit. Please retain the auto generated control no. for future reference. Students can purchase Demand Draft from any branch of Union Bank of India without any commission charge. Please keep note of computer generated control number for your reference for any correspondence. You are required to send demand draft along with copy of exam form to the Regional Centre under which your examination centre falls by Registered Post or Speed Post. You must mention your Enrolment No., Programme Name, and Computer generated control No. on the back side of the Demand Draft. Demand Draft is to be drawn in favour of IGNOU and payable at the city of the Regional Centre under which your examination centre falls.
You will receive an acknowledgement with control number at the E-mail address given in the application form.
You may visit SEARCH OPTION after 24 hours of submission of your form (leaving the day of submission except Saturday & Sunday) to see the details of particulars submitted by you. In case you find the particulars are not available, you may submit the form again.
University issues hall-ticket to the students two weeks before commencement of Term-end Examination and also uploads the information on the university website. If you do not receive hall-ticket one week before commencement of examination, please download the hall-ticket from the website and report to the Examination Centre with your Identity Card issued by the University.
Students will be allowed to appear in Term-end Examination for those courses
* In which required number of assignments as applicable for the course(s) have been submitted.
* Registration for the course(s) is valid and not time-barred.
Click here to Fill Online Examination Form
Dear students, Please ensure that you have already submitted the assignments as applicable for the courses you are filling in the Examination Form. Otherwise, Hall Tickets will NOT be issued for the courses for which assignments have not been submitted by you.
Students are required to pay examination fee @ Rs. 60/- per course for theory as well as practical. A late fee of Rs. 300/- from 1st October, 2012 to 20th October, 2012 and Rs. 500/- from 21st Ocltober, 2012 to 31st October 2012 also needs to be included, if submitted during this period.
Mode of payment:
* Credit Card
* Demand Draft
* Cash Payment
* Debit Card of Union Bank of India
Results of June, 2012 Term-end examinations are available on University website www.ignou.ac.in . Please see result status before filling examination form. Click here to see the result status of June, 2012 Examination.
Select and enter Programme code and Examination Centre Code from the options available. If the centre opted by the student is not activated as examination centre or not allotted for any other reason, alternative examination centre will be allotted.
Select courses carefully. Courses for theory as well as practical needs to be selected separately from the list appearing on the screen.
If you wish to submit on-line form please note the auto generated control No. for future reference.
In case you wish to make payment through credit card please select this option and make the payment. Note that 1.96% of the amount to be paid will be debited to your Credit Card Account towards transaction charges. Please retain the auto generated control no. for future reference.OR
In case, you wish to submit on-line form and make payment by cash deposit at any of the Union Bank of India branches, please fill on-line examination form and submit after selecting this option. You are required to take print out of challan automatically generated and deposit required amount at Union Bank of India along with the challan. Please retain a copy of the same for future reference. However, you need not send anything by post. In case you have not downloaded Cash Challan, click here to download Cash Challan.OR
In case you wish to submit on-line form and make payment through a bank draft please select this option. Please keep the bank draft particulars ready with you before starting to fill the form and enter same at the appropriate place and submit. Please retain the auto generated control no. for future reference. Students can purchase Demand Draft from any branch of Union Bank of India without any commission charge. Please keep note of computer generated control number for your reference for any correspondence. You are required to send demand draft along with copy of exam form to the Regional Centre under which your examination centre falls by Registered Post or Speed Post. You must mention your Enrolment No., Programme Name, and Computer generated control No. on the back side of the Demand Draft. Demand Draft is to be drawn in favour of IGNOU and payable at the city of the Regional Centre under which your examination centre falls.
You will receive an acknowledgement with control number at the E-mail address given in the application form.
You may visit SEARCH OPTION after 24 hours of submission of your form (leaving the day of submission except Saturday & Sunday) to see the details of particulars submitted by you. In case you find the particulars are not available, you may submit the form again.
University issues hall-ticket to the students two weeks before commencement of Term-end Examination and also uploads the information on the university website. If you do not receive hall-ticket one week before commencement of examination, please download the hall-ticket from the website and report to the Examination Centre with your Identity Card issued by the University.
Students will be allowed to appear in Term-end Examination for those courses
* In which required number of assignments as applicable for the course(s) have been submitted.
* Registration for the course(s) is valid and not time-barred.
Click here to Fill Online Examination Form
Thursday, 20 September 2012
IGNOU MCA 2nd Sem Solved Assignments July 2012
MCA - 2nd Sem - MCS-021 - Solved Assignment July 2012 --> Download
MCA - 2nd Sem - MCS-022 - Solved Assignment July 2012 --> Download
MCA - 2nd Sem - MCS-023 - Solved Assignment July 2012 --> Download
MCA - 2nd Sem - MCS-024 - Solved Assignment July 2012 --> Download
MCA - 2nd Sem - MCSL-025 - Solved Assignment July 2012 --> Download
MCA - 2nd Sem - Lab Manual - Solved July 2012 --> Download
JAVA Tutorials : What is Java?
ü Object Oriented Programming
ü WORA( Write Once Run any where)
ü The Java language was created by James Gosling in June 1991.
ü Java Provides development and deployment
environment.
ü It is similar in syntax to C++
ü It is robust provides exception handling ,
automatic garbage collection.
ü Designed for the distributed environment.
ü Supports Multithreading
ü Secure ( No Pointer and Byte Code Verifier)
ü Architectural Neutral - If a company develops new hardware , it
doesn’t have to make a new software , only JRE needs to be replace for New
platform).
ü Portable (WORA ) Write Once Run any-where
ü High Performance (JITc)
Wednesday, 19 September 2012
Download Free E-Books
Click Below Link:
http://justdostudy.blogspot.in/p/free-e-books.html
http://justdostudy.blogspot.in/p/free-e-books.html
Cormen-Introduction To Algorithms - solutions by phillip bille 2nd edition
Sunday, 16 September 2012
To Know CCS Results
--> Click Here To Know CCS Results
Result Decared (16-09-2012) - B.Com. - I Year( Detained Centre due to incomplete Result - 134, 216 & 227) & BFA - IV Year
Result Decared (15-09-2012) -MJMC - II Semester; M.Sc.(Home Sc.) - IV Semester & B .Sc.(Computer Science) - VI Semester
Result Released (15-09-2012) -B.A. - I Year (Centre Code- 107) & B.Sc. - I Year (Centre Code- 107)
Result Released (14-09-2012) -B.A. - II Year (Centre Code- 066) & B.A. - I Year (Centre Code- 154)
Result Released (13-09-2012) -B.A. - II Year (Released Centre - 016)
Result Declered (13-09-2012) -M.A.(Defence Studies, Philosphy, Mathematics) - IV Semester
Result Declered (12-09-2012) -B.Sc.(Biotechnology) - III Year (Detained Centrecodedue to incomplete marks- 615, 658, 778, 823, 916, 966)
Result Released (12-09-2012) -B.A. - I Year (Centrecode-01); BBA - VI Semester(Centrecode- 832, 833, 891, 905, 917, 948) & BCA - VI Semester (Centrecode- 604, 613, 615, 622, 625, 635, 652, 754, 823, 862, 891, 905, 919, 931, 948, 952, 953, 966)
Result Declared (11-09-2012) -M.A. Private (Education) - II Year
Result Declared (09-09-2012) -M.A. Private (Sociology, History) - II Year & B.Sc.(PH, HE & Sports) - II Year (Centrecode-019)
Result Declared (08-09-2012) -B.A. - I Year (Detained Centre due to Incomplete Marks - 019, 045, 085, 107, 127, 154, 182, 210) & B.A. - II Year (Centrecode-187)
Result Declared (07-09-2012) -M.A. Private (Poltical Science, Urdu) - II Year
Result Declared (06-09-2012) -M.A. Private (Hindi, English, Mathematics, Sanskrit, Philosphy, Defence Studies) - II Year
Result Declared (05-09-2012) - LL.B. - I Year (Detained Centre due to incomplete Marks- 066)
Result Released (05-09-2012) - BA - III Year ( 167 Centre)
Result Declared (04-09-2012) - LL.B.(5 Year) - II Semester(Detained Centre due to incomplete Marks- 860) & LL.B.(5 Year) - IV Semester
Result Released (04-09-2012) - BBA - VI Semester ( 615, 618, 651, 702, 845, 852, 853, 862, 904, 966, 975) & BCA - VI Semester (626, 642, 648, 650, 651, 702, 853, 869, 904)
Result Decared (16-09-2012) - B.Com. - I Year( Detained Centre due to incomplete Result - 134, 216 & 227) & BFA - IV Year
Result Decared (15-09-2012) -MJMC - II Semester; M.Sc.(Home Sc.) - IV Semester & B .Sc.(Computer Science) - VI Semester
Result Released (15-09-2012) -B.A. - I Year (Centre Code- 107) & B.Sc. - I Year (Centre Code- 107)
Result Released (14-09-2012) -B.A. - II Year (Centre Code- 066) & B.A. - I Year (Centre Code- 154)
Result Released (13-09-2012) -B.A. - II Year (Released Centre - 016)
Result Declered (13-09-2012) -M.A.(Defence Studies, Philosphy, Mathematics) - IV Semester
Result Declered (12-09-2012) -B.Sc.(Biotechnology) - III Year (Detained Centrecodedue to incomplete marks- 615, 658, 778, 823, 916, 966)
Result Released (12-09-2012) -B.A. - I Year (Centrecode-01); BBA - VI Semester(Centrecode- 832, 833, 891, 905, 917, 948) & BCA - VI Semester (Centrecode- 604, 613, 615, 622, 625, 635, 652, 754, 823, 862, 891, 905, 919, 931, 948, 952, 953, 966)
Result Declared (11-09-2012) -M.A. Private (Education) - II Year
Result Declared (09-09-2012) -M.A. Private (Sociology, History) - II Year & B.Sc.(PH, HE & Sports) - II Year (Centrecode-019)
Result Declared (08-09-2012) -B.A. - I Year (Detained Centre due to Incomplete Marks - 019, 045, 085, 107, 127, 154, 182, 210) & B.A. - II Year (Centrecode-187)
Result Declared (07-09-2012) -M.A. Private (Poltical Science, Urdu) - II Year
Result Declared (06-09-2012) -M.A. Private (Hindi, English, Mathematics, Sanskrit, Philosphy, Defence Studies) - II Year
Result Declared (05-09-2012) - LL.B. - I Year (Detained Centre due to incomplete Marks- 066)
Result Released (05-09-2012) - BA - III Year ( 167 Centre)
Result Declared (04-09-2012) - LL.B.(5 Year) - II Semester(Detained Centre due to incomplete Marks- 860) & LL.B.(5 Year) - IV Semester
Result Released (04-09-2012) - BBA - VI Semester ( 615, 618, 651, 702, 845, 852, 853, 862, 904, 966, 975) & BCA - VI Semester (626, 642, 648, 650, 651, 702, 853, 869, 904)
Wednesday, 12 September 2012
IGNOU Solved Assignments july 2012
Links:
------------------------------------------------------------------------------------------------
BCA ASSIGNMENTS - Click Here
BCA NEW ASSIGNMNTS - Click Here
MCA ASSIGNMENTS - Click Here
------------------------------------------------------------------------------------------------
you can check these link also, if solved assignments isn't available above links:
Click Here
MCA - 2nd Sem - MCS-021 - Solved Assignment July 2012 --> Download
MCA - 2nd Sem - MCS-022 - Solved Assignment July 2012 --> Download
MCA - 2nd Sem - MCS-023 - Solved Assignment July 2012 --> Download
MCA - 2nd Sem - MCS-024 - Solved Assignment July 2012 --> Download
MCA - 2nd Sem - MCSL-025 - Solved Assignment July 2012 --> Download
MCA - 2nd Sem - Lab Manual - Solved July 2012 --> Download
MCA - 5th Sem - MCSL-054 - Solved Assignmnt 2012 --> Click Here
------------------------------------------------------------------------------------------------
Wednesday, 15 February 2012
Saturday, 11 February 2012
Wednesday, 8 February 2012
60 ebooks on Job Searching and CV Writing
201 Killer Cover Letters
300 Best Jobs Without a Four-Year Degree eBook
1001 Ways to Get Promoted
Better Job Search in 3 Easy Steps
Break Into The Game Industry How To Get A Job Making Video Games
Business Letters for Busy People - Time Saving, Ready-to-Use Letter for Any Occassion, 4th Edition
Career Press - 10 Insider Secrets to a winning Job Search-2004
Career Press - Your First Interview 4th Ed eBook
Careers For Computer Buffs And Other Technological Types 2nd Edition eBook
Complete Idiots - Perfect Interview
Complete Idiots - Perfect Resume
Trade Secrets of Professional Resume Writers 2nd Ed-2004
CoverLetter - Trade Secrets of Professional Resume
Fearless Interviewing How to Win the Job by Communicating with Confidence
How To Prepare Your Curriculum Vitae
JIST Works - 2004 - Gallery of Best Resumes for People Without a Four-Year Degree - 3rd Edition
JIST Works - 2005 - Expert Resumes - Expert Resumes For Career Changers
Jist.Works Best Career And Education Web Sites
Jist.Works Expert Resumes for Career Changers eBook
Jist.Works Federal Resume Guidebook Write A Winning Federal Resume To Get In Get Promoted And Survive In A Government Job eBook
Jist.Works How To Be Happy At Work A Practical Guide To Career Satisfaction
Jist.Works Quick Guide To Career Training In Two Years Or Less eBook
Job Hunting Tips
John Wiley And Sons Rattiners Review For The CFP Certification Examination eBook
John Wiley And Sons The Right Stock At The Right Time
McGraw Hill Careers for Caring People Other Sensitive Types eBook
McGraw Hill Careers In Educatione Book
McGraw Hill Resumes For Communications Career seBook
McGraw Hill The.Seasons Of Your Career eBook
McGraw Hil Osborne - ACE the IT Job Interview eBook
mindtools skills for an excellent career
Recruiting On The Web
Resume Cover Letter Secrets
Resumes For Communications Careers
Say It Right The First Time
Stanly Kantman - AMACOM - The Resume Writers Workbook, 2nd Edition
The Executive Job Search A Comprehensive Handbook For Seasoned Professionals
The Resume Writers Workbook, 2nd Edition
Vault Guide to Resumes
Wet Feet Book
Your First Interview 4th Edition
The Best Bussines E-books Collection
The Best Bussines E-books Collection -
Content :
Basic Management Skills
Multi Level Marketing
A Business and Its Beliefs - The Ideas That Helped Build IBM
Marketing Plan Outline
Marketing your bussines for succes - Marketing Plan Outline
The Hotel Business
Mathematical Economics and Finance
You Play to Win the Game - Leadership Lessons for Success On and Off the Field
Negotiate and Win - Proven Strategies from the NYPD's Top Hostage Negotiator
10 minute guide to project management
Banking Elements
Vocabulary Basics for Business
Managing Change and Transition (Harvard University)
201 Best Questions to ask on your interview
The Virtual MBA (American Management & Business Administration)
A Managers Guide to Employment Law - How to protect your company and yourself
Cash Rules - Learn & manage the 7 cash-flow drivers for your company's success
Electronic Trading Guide For Nasdaq L2(Online Trading Academy9908)
101 Marketing Strategies for Accounting, Law, Consulting and Professional Services Firms
Killer Internet Marketing Strategies
Project Management - The Six Sigma Way - Quality Management
Bear Market Investing Strategies
The Executive Job Search - A Comprehensive Handbook for Seasoned Professionals
Negotiating Skills for Managers Management MBA
A Guide to the Project Management Body of Knowledge
Project Management AMA
The Bible On Leadership
Citibank - Basics of corporate finance
201 Killer Cover Letters
ISO 9001-2000 Quality Management System Design
Guerrilla Marketing for Consultants - Breakthrough Tactics for Winning Profitable Clients
Marketing
The First 90 Days - Critical Success Strategies for New Leaders at all levels
Managing cash flow
Practice Made Perfect. The Discipline of Business Management for Financial Advisors
Blue Ocean Strategy - How to Create Uncontested Market Space and Make the Competition Irrelevant
Essentials Of Knowledge Management
ISO 9000 - Quality Management Systems Fundamental And Vocabulary
Practical Project Management - Tips, Tactics and Tools
Object-Oriented Project Management with UML
Money Management
The Active Managers Tool Kit
MBA in A Day - What you would learn at top tier business schools
The Management Bible
Management Concepts - Project Leadership
Investment Risk Management
Strategic Planning For Project Management Using A Project Management Maturity Model
Ahead Of The Market - The Zacks Method For Spotting Stocks Early In Any Economy
People Focused Knowledge Management
Principles Of Economics
All About Market Timing - The Easy Way To Get Started
Dictionary of financial and business terms
78 Important Questions Every Leader Should Ask and Answer
A Revolution in Creative Business Strategy
Credit Portfolio Management
Nasdaq Trader Manual
Integrated Project Management
Money Management Strategies For Futures Traders
International business
Budgeting for Managers
The AMA Handbook of Project Management
Project Management
Manager's Guide to Strategy
Marketing Management Milenium edition
The Managers Guide to Performance Reviews
E-Human Resources Management Managing Knowledge People
Accounting for Managers
Business to business Marketing
Money Management Strategies for Serious Traders
The Portable Mba In Finance And Accounting
Business of Banking (volumul I)
Business of Banking (volumul II)
Just Enough Project Management - The Indispensable Four-Step Process for Managing Any Project Better, Faster, Cheaper
PMP - Project Management Professional Workbook
Principles of Macroeconomics
Project Management Methodologies
Project Management Nation
Project Management Nation - Tools, Techniques, and Goals for the New and Practicing IT Project Manager
The Toyota Way - 14 Management Principles from the World's Greatest Manufacturer
Building Management Systems
Knowledge Management Toolkit
Essentials Of Payroll Management & Accounting
Microeconomics for MBAs
PMP Project Management Professional Study Guide
Modern Project Management - Successfully Integratin
Project Risk Management Guidelines - Managing Risk in Large Projects and Complex Procurements
Project Management - A Systems Approach To Planning,
The 8 Biggest Mistakes People Make With Their Finances Before And After Retirement
Strategic Planning for Public Relations
Microeconomics.3edDOWNLOAD
http://www.filesonic.com/file/103976852/The_Best_Bussines_E-books_Collection.rar
Content :
Basic Management Skills
Multi Level Marketing
A Business and Its Beliefs - The Ideas That Helped Build IBM
Marketing Plan Outline
Marketing your bussines for succes - Marketing Plan Outline
The Hotel Business
Mathematical Economics and Finance
You Play to Win the Game - Leadership Lessons for Success On and Off the Field
Negotiate and Win - Proven Strategies from the NYPD's Top Hostage Negotiator
10 minute guide to project management
Banking Elements
Vocabulary Basics for Business
Managing Change and Transition (Harvard University)
201 Best Questions to ask on your interview
The Virtual MBA (American Management & Business Administration)
A Managers Guide to Employment Law - How to protect your company and yourself
Cash Rules - Learn & manage the 7 cash-flow drivers for your company's success
Electronic Trading Guide For Nasdaq L2(Online Trading Academy9908)
101 Marketing Strategies for Accounting, Law, Consulting and Professional Services Firms
Killer Internet Marketing Strategies
Project Management - The Six Sigma Way - Quality Management
Bear Market Investing Strategies
The Executive Job Search - A Comprehensive Handbook for Seasoned Professionals
Negotiating Skills for Managers Management MBA
A Guide to the Project Management Body of Knowledge
Project Management AMA
The Bible On Leadership
Citibank - Basics of corporate finance
201 Killer Cover Letters
ISO 9001-2000 Quality Management System Design
Guerrilla Marketing for Consultants - Breakthrough Tactics for Winning Profitable Clients
Marketing
The First 90 Days - Critical Success Strategies for New Leaders at all levels
Managing cash flow
Practice Made Perfect. The Discipline of Business Management for Financial Advisors
Blue Ocean Strategy - How to Create Uncontested Market Space and Make the Competition Irrelevant
Essentials Of Knowledge Management
ISO 9000 - Quality Management Systems Fundamental And Vocabulary
Practical Project Management - Tips, Tactics and Tools
Object-Oriented Project Management with UML
Money Management
The Active Managers Tool Kit
MBA in A Day - What you would learn at top tier business schools
The Management Bible
Management Concepts - Project Leadership
Investment Risk Management
Strategic Planning For Project Management Using A Project Management Maturity Model
Ahead Of The Market - The Zacks Method For Spotting Stocks Early In Any Economy
People Focused Knowledge Management
Principles Of Economics
All About Market Timing - The Easy Way To Get Started
Dictionary of financial and business terms
78 Important Questions Every Leader Should Ask and Answer
A Revolution in Creative Business Strategy
Credit Portfolio Management
Nasdaq Trader Manual
Integrated Project Management
Money Management Strategies For Futures Traders
International business
Budgeting for Managers
The AMA Handbook of Project Management
Project Management
Manager's Guide to Strategy
Marketing Management Milenium edition
The Managers Guide to Performance Reviews
E-Human Resources Management Managing Knowledge People
Accounting for Managers
Business to business Marketing
Money Management Strategies for Serious Traders
The Portable Mba In Finance And Accounting
Business of Banking (volumul I)
Business of Banking (volumul II)
Just Enough Project Management - The Indispensable Four-Step Process for Managing Any Project Better, Faster, Cheaper
PMP - Project Management Professional Workbook
Principles of Macroeconomics
Project Management Methodologies
Project Management Nation
Project Management Nation - Tools, Techniques, and Goals for the New and Practicing IT Project Manager
The Toyota Way - 14 Management Principles from the World's Greatest Manufacturer
Building Management Systems
Knowledge Management Toolkit
Essentials Of Payroll Management & Accounting
Microeconomics for MBAs
PMP Project Management Professional Study Guide
Modern Project Management - Successfully Integratin
Project Risk Management Guidelines - Managing Risk in Large Projects and Complex Procurements
Project Management - A Systems Approach To Planning,
The 8 Biggest Mistakes People Make With Their Finances Before And After Retirement
Strategic Planning for Public Relations
Microeconomics.3edDOWNLOAD
http://www.filesonic.com/file/103976852/The_Best_Bussines_E-books_Collection.rar
Monday, 6 February 2012
Sunday, 5 February 2012
Soft Computing Assigment
Q.--> Define an Artificial Neural Network. State the characteristics of Artificial Neural Network.
Q.--> Briefly discuss the common application domains of an Artificial Neural Network.
Q.--> Define Learning. Discuss the learning methods in brief.
Q.--> Construct a recurrent network with four different input nodes, three hidden nodes and four output nodes that has lateral inhibitation structure in the output player.
Q.--> What is the necessity of activation function? List the commonly used activation function.
Q.--> Give the comparison between single layer feed forward network and multilayer feed forward network.
Q.--> Define the following terms:
a.) Neuron b) Axon c) Synapse d) Rosenblatt's Perceptron
For download the Answers, Click Answers link below:
Answers
Q.--> Briefly discuss the common application domains of an Artificial Neural Network.
Q.--> Define Learning. Discuss the learning methods in brief.
Q.--> Construct a recurrent network with four different input nodes, three hidden nodes and four output nodes that has lateral inhibitation structure in the output player.
Q.--> What is the necessity of activation function? List the commonly used activation function.
Q.--> Give the comparison between single layer feed forward network and multilayer feed forward network.
Q.--> Define the following terms:
a.) Neuron b) Axon c) Synapse d) Rosenblatt's Perceptron
For download the Answers, Click Answers link below:
Answers
Importance of Environment Studies..
Importance of Environment Studies: The environment studies enlighten us, about the
importance of protection and conservation of our indiscriminate release of pollution into the
environment.
At present a great number of environment issues, have grown in size and complexity
day by day, threatening the survival of mankind on earth. We study about these issues
besides and effective suggestions in the Environment Studies. Environment studies have
become significant for the following reasons:
1. Environment Issues Being of International Importance
It has been well recognised that environment issues like global warming and ozone
depletion, acid rain, marine pollution and biodiversity are not merely national issues but are
global issues and hence must be tackled with international efforts and cooperation.
2. Problems Cropped in The Wake of Development
Development, in its wake gave birth to Urbanization, Industrial Growth, Transportation
Systems, Agriculture and Housing etc. However, it has become phased out in the developed
world. The North, to cleanse their own environment has, fact fully, managed to move ‘dirty’
factories of South. When the West developed, it did so perhaps in ignorance of the
environmental impact of its activities. Evidently such a path is neither practicable nor
desirable, even if developing world follows that.
3. Explosively Increase in Pollution
World census reflects that one in every seven persons in this planted lives in India.
Evidently with 16 per cent of the world's population and only 2.4 per cent of its land area,
there is a heavy pressure on the natural resources including land. Agricultural experts have
recognized soils health problems like deficiency of micronutrients and organic matter, soil
salinity and damage of soil structure.
4. Need for An Alternative Solution
It is essential, specially for developing countries to find alternative paths to an alternative
goal. We need a goal as under:
(1) A goal, which ultimately is the true goal of development an environmentally sound
and sustainable development.
(2) A goal common to all citizens of our earth.
(3) A goal distant from the developing world in the manner it is from the over-consuming
wasteful societies of the “developed” world.
5. Need To Save Humanity From Extinction
It is incumbent upon us to save the humanity from exinction. Consequent to our activities
constricting the environment and depleting the biosphere, in the name of development.
6. Need For Wise Planning of Development
Our survival and sustenance depend. Resources withdraw, processing and use of the
product have all to by synchronised with the ecological cycles in any plan of development our
actions should be planned ecologically for the sustenance of the environment and development.
7. Misra’s Report
Misra (1991) recognized four basic principles of ecology, as under:
(i) Holism
(ii) Ecosystem
(iii) Succession
(iv) Conversation.
Holism has been considered as the real base of ecology. In hierarchical levels at which
interacting units of ecology are discussed, are as under:
Individual<population<community<ecosystem<biome<biosphere.
Misra (1991) has recognised four basic requirements of environmental management as
under:
(i) Impact of human activities on the environment,
(ii) Value system,
(iii) Plan and design for sustainable development,
(iv) Environment education.
Keeping in view the of goal of planning for environmentally sustainable development
India contributed to the United Nations Conference on Environment and Development
(UNCED), also referred to as “Earth Summit” held at Rio de Janciro, the Capital of Brazil,
3rd-14th June, 1992.
Scope of Environmental Science..
Scope of Environment:
The environment consists of four segments as under:
1. Atmosphere:
The atmosphere implies the protective blanket of gases,
surrounding the earth:
(a) It sustains life on the earth.
(b) It saves it from the hostile environment of outer space.
(c) It absorbs most of the cosmic rays from outer space and
a major portion of the
electromagnetic radiation from the sun.
(d) It transmits only here ultraviolet, visible, near
infrared radiation (300 to 2500
nm) and radio waves. (0.14 to 40 m) while filtering out
tissue-damaging ultraviolate waves below about 300 nm.
The atmosphere is composed of nitrogen and oxygen. Besides,
argon, carbon dioxide,
and trace gases.
2. Hydrosphere:
The Hydrosphere comprises all types of water resources oceans,
seas, lakes, rivers, streams, reserviour, polar icecaps,
glaciers, and ground
water.
(i) Nature 97% of the earth’s water supply is in the oceans,
(ii) About 2% of the water resources is locked in the polar
icecaps and glaciers.
(iii) Only about 1% is available as fresh surface
water-rivers, lakes streams, and
ground water fit to be used for human consumption and other
uses.
3. Lithosphere:
Lithosphere is the outer mantle of the solid earth. It consists
of minerals occurring in the earth’s crusts and the
soil e.g. minerals, organic
matter, air and water.
4. Biosphere:
Biosphere indicates the realm of living organisms and their
interactions with environment,
viz atmosphere, hydrosphere and lithosphere
Saturday, 4 February 2012
Sociology, Psychology, Anthropology, Navratan Company of India
Q. How does Sociology differ from Psychology & Anthropology?
Q. Describe in brief Navratan Company of India.
Click on Answer:
Answer
IGNOU Term End Exam Results - December 2011
IGNOU MCA BCA RESULT OUT........................... ...
visit this link
IGNOU Term End Exam Results - December 2011
visit this link
IGNOU Term End Exam Results - December 2011
Friday, 3 February 2012
B.Tech(CS) 4th Sem Syllabus
Download Link:
B.Tech(CS) 4th sem syllabus - feb 2012
Follow these steps:
1.) Just Paste this link in your address bar & Enter.
2.) Now,Click on File tab.
3.)Now,Click on 'Download as' in File Tab.
B.Tech(CS) 4th sem syllabus - feb 2012
Follow these steps:
1.) Just Paste this link in your address bar & Enter.
2.) Now,Click on File tab.
3.)Now,Click on 'Download as' in File Tab.
B.Tech(IT) 4th Sem Syllabus
Download Link:
B.Tech(IT) 4th sem syllabus - feb 2012
Follow these steps:
1.) Just Paste this link in your address bar & Enter.
2.) Now,Click on File Tab.
3.) Now, Click on 'download as' in File Tab.
B.Tech(IT) 4th sem syllabus - feb 2012
Follow these steps:
1.) Just Paste this link in your address bar & Enter.
2.) Now,Click on File Tab.
3.) Now, Click on 'download as' in File Tab.
Thursday, 2 February 2012
Web Tech - HTML
}HTML is a language
for describing web pages.
}HTML stands for Hyper Text Markup Language
}HTML is not a
programming language, it is a markup language
}A markup language is
a set of markup tags
}HTML uses markup tags to describe web pages
------------------------------
<html>
<head>xyz
<title>abc</title></head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>
------------------------------
HTML Headings
}HTML headings are
defined with the <h1> to <h6> tags.
}<h1>This is a
heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>
<h2>This is a heading</h2>
<h3>This is a heading</h3>
}HTML
Paragraphs
}<p>This is a
paragraph.</p>
HTML Links
HTML Links
}HTML links are
defined with the <a> tag.
}<a
href=“a.html">This is a link</a>
------------------------------
}HTML
Tags
}HTML markup tags are
usually called HTML tags
}HTML tags are
keywords surrounded by angle brackets like
<html>
}HTML tags normally come in pairs like <b> and </b>
}The first tag in a
pair is the start tag, the
second tag is the end tag
}Start and end tags
are also called opening tags and closing tags.
}HTML documents describe web pages
------------------------------
}The
HTML <font> Tag Should NOT be Used
}The <font> tag
is deprecated in HTML 4, and removed from HTML5.
}The World Wide Web
Consortium (W3C) has removed the <font> tag from its recommendations.
}In HTML 4, style
sheets (CSS) should be used to define the layout and display properties for
many HTML elements.
}The example below
shows how the HTML could look by using the <font> tag:
}Example
------------------------------
}
<font size="5" face="arial" color="red">
This paragraph is in Arial, size 5, and in red text color.
</font>
<font size="5" face="arial" color="red">
This paragraph is in Arial, size 5, and in red text color.
</font>
}
}<p>
<font size="3" face="verdana" color="blue">
This paragraph is in Verdana, size 3, and in blue text color.
</font>
<font size="3" face="verdana" color="blue">
This paragraph is in Verdana, size 3, and in blue text color.
</font>
</p>
------------------------------
}HTML
Hyperlinks (Links)
}A hyperlink (or link)
is a word, group of words, or image that you can click on to jump to a new
document or a new section within the current document.
}When you move the
cursor over a link in a Web page, the arrow will turn into a little hand.
}Links are specified
in HTML using the <a> tag.
}The <a> tag can
be used in two ways:
}To create a link to
another document, by using the href attribute
}To create a bookmark
inside a document, by using the name attribute
------------------------------
}HTML
Link Syntax
}The HTML code for a
link is simple. It looks like this:
}<a href="url">Link
text</a>
}HTML
Tables
}Tables are defined
with the <table> tag.
}A table is divided
into rows (with the <tr> tag), and each row is divided into data cells
(with the <td> tag). td stands for "table data," and holds the
content of a data cell. A <td> tag can contain text, links, images, lists,
forms, other tables, etc.
------------------------------
}<table
border="1">
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
------------------------------
HTML Tables and the
Border Attribute
}To display a table
with borders, specify the border attribute:
}if you do not specify
a border attribute, the table will be displayed without borders. Sometimes this
can be useful, but most of the time, we want the borders to show.
}To display a table
with borders, specify the border attribute:
}
}<table
border="1">
<tr>
<td>Row 1, cell 1</td>
<td>Row 1, cell 2</td>
</tr>
<tr>
<td>Row 1, cell 1</td>
<td>Row 1, cell 2</td>
</tr>
</table>
------------------------------
}HTML
Table Headers
}Header information in
a table are defined with the <th> tag.
}All major browsers
will display the text in the <th> element as bold and centered.
------------------------------
}All major browsers
will display the text in the <th> element as bold and centered.
}<table
border="1">
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
<tr>
<th>Header 1</th>
<th>Header 2</th>
</tr>
<tr>
<td>row 1, cell 1</td>
<td>row 1, cell 2</td>
</tr>
<tr>
<td>row 2, cell 1</td>
<td>row 2, cell 2</td>
</tr>
</table>
------------------------------
HTML Unordered Lists
HTML
Unordered Lists
An unordered list
starts with the <ul> tag. Each list item starts with the <li> tag.
The list items are
marked with bullets (typically small black circles)
<ul>
<li>Coffee</li>
<li>Milk</li>
</ul> .
<li>Coffee</li>
<li>Milk</li>
</ul> .
How the HTML code
above looks in a browser:
}Coffee
}Milk
------------------------------
}<ul
type=“circle”></ul>
}<ul
type=“disc”></ul>
}<ul
type=“square”></ul>
------------------------------
HTML Ordered Lists
HTML
Ordered Lists
An ordered list
starts with the <ol> tag. Each list item starts with the <li> tag.
The list items are
marked with numbers.
<ol>
<li>Coffee</li>
<li>Milk</li>
</ol>
<li>Coffee</li>
<li>Milk</li>
</ol>
How the HTML code
above looks in a browser:
1.Coffee
2.Milk
------------------------------
HTML Definition Lists
}HTML
Definition Lists
}A definition list is
a list of items, with a description of each item.
}The <dl> tag
defines a definition list.
}The <dl> tag is
used in conjunction with <dt> (defines the item in the list) and
<dd> (describes the item in the list):
}<dl>
<dt>Coffee</dt>
<dd>- black hot drink</dd>
<dt>Milk</dt>
<dd>- white cold drink</dd>
<dt>Coffee</dt>
<dd>- black hot drink</dd>
<dt>Milk</dt>
<dd>- white cold drink</dd>
</dl>
------------------------------
}HTML
List Tags
}Tag Description
}<ol> Defines
an ordered list
}<ul> Defines
an unordered list
}<li> Defines
a list item
}<dl> Defines
a definition list
}<dt> Defines
an item in a definition term
------------------------------
}HTML
Images
}HTML images are
defined with the <img> tag.
}Example
}<img
src=“abc.jpg" width="104" height="142" />
------------------------------
Subscribe to:
Posts (Atom)