You can upload any kind of file here with these extensions(.pdf, .doc, .docx, .ppt, .pptx, .txt) If you are facing any problem in uploading files, you can send the attachment on support@anyforum.in
Thought is your Enemy-PDF Book
God or enlightenment is the ultimate pleasure, uninterrupted happiness. No such thing exists. Your wanting something that does not exist is the root of your problems. Transformation, moksha, liberation, and all that stuff, are just variations of the same theme: permanent happiness. The body can't take uninterrupted pleasure for long; it would be destroyed. Wanting to impose a fictitious permanent state of happiness on the body is a serious neurological problem.
I am not out to liberate anybody. You have to liberate yourself, and you are unable to do that. What I have to say will not do it. I am only interested in describing this state, in clearing away the occultation and mystification in which those people in the holy business have shrouded the whole thing. Maybe I can convince you not to waste a lot of time and energy looking for a state which does not exist except in your imagination.
Total Hits : 2412
Posted On : 2014-11-11 18:16:15.0
Rishi Kumar
523 1882 49150
Struts2 Quiz Questions
This file contains some multiple choice question based on struts2 framework. Each question has four options and one correct answer. For example:
What is struts?
1. A Technology
2. A Frameworks
3. A Java Development Tool Kit
4. A Language.
Answer: 2
Struts is not a new language .It is not a part of JDK of not a Java Development Tool Kit. Infect it is new technology which provide a frameworks to work on web based applications.
Total Hits : 4400
Posted On : 2014-05-24 20:41:48.0
Rishi Kumar
523 1882 49150
Struts framework Quiz Question
This file contains objective type question based on struts framework. Each question has four or more options and one correct answer. For example: Which of the following are the struts pre-built Action classes RequestAction, SwitchAction, LookupRequestAction, ConfigAction, ContextAction, LookupDispatchAction, SwitchAction, RequestAction, ResponseAction, ForwardAction, DispatchAction, IncludeAction, LookupDispatchAction, SwitchAction, ForwardAction, SwitchAction, ResponseAction, ContextAction, ConfigAction
CORRECT ANSWER : ForwardAction, DispatchAction, IncludeAction, LookupDispatchAction, SwitchAction
Total Hits : 1959
Posted On : 2014-05-24 20:38:15.0
Rishi Kumar
523 1882 49150
Spring3 objective type question
This file contains 50 objective type question based on spring3. Each question has 4 options and one correct answer. In this file each correct answer has its explanation. For example:
Question 1: Given the following Spring configuration file, what is the correct answer:
1. The first declared bean MyServiceImpl is missing an id must be named myService
2. The second declared bean JpaDao is missing an id must be named jpaDao
3. Answers 1 and 2 are both rights
4. Answers 1 and 2 are both wrong
Question 2: Given the Spring configuration file, which are the correct statements?
1. The p namespace has to be declared
2. Bean id is bankServiceImpl
3. The BankServiceImpl references a NationalBank bean
4. NationalBank is a scalar value
Total Hits : 2320
Posted On : 2014-05-17 01:50:59.0
Rishi Kumar
523 1882 49150
Hibernate Basics Quiz Question
This file contains 10 question based on hibernate basics. Each question has 4 options and one correct answer.
for example:
Choose true
1.Hibernate is a framework.
2.Hibernate is an object-relational mapping (ORM) library for the Java language
3.Hibernate provides a mapping for object-oriented domain model to a traditional relational database.
4.All of the above
5.None
Answer: All of the above
Hibernate lets you develop persistent classes following common Java idiom - including association, inheritance, polymorphism, composition and the Java collections framework.
1.True
2.False
Answer: True
What is ORM?
1.ORM stands for object/relational mapping.
2.ORM is the automated persistence of objects in a Java application to the tables in a relational database.
3.Both of Above
4.None
Answer: Both of Above
The Hibernate XML configuration file name is?
1.hibernate.cfg.xml
2.hibernate.config.xml
3.hibernate.cg.xml
4.None
Answer: hibernate.cfg.xml
Total Hits : 2347
Posted On : 2014-05-15 20:55:49.0
Rishi Kumar
523 1882 49150
Spring Framework Basics Quiz Question
This File contains 20 question based on basics and overview of spring framework in java. Each question has four options and one correct answer. For example:
1. IOC or Dependenct injection is a .. .
A. Design Pattern
B. Framework
C. Java Module
D. ORM Framework
Answer: Design Pattern
2. Which of the following is not a Spring Module?
A. AOP
B. O/R Integration
C. Spring MVC
D. HTML/JSP
Answer: HTML/JSP
3. Which of the following is true ? .
A. ApplicationContext implements BeanFactory
B. ApplicationContext extends BeanFactory
C. BeanFactory extends ApplicationContext
D. BeanFactory implements ApplicationContext
Answer: ApplicationContext extends BeanFactory
4. Beans defined in spring framework are by default .. .
A. Abstract
B. Singleton
C. Final
D. initialized
Answer: Singleton
Total Hits : 3861
Posted On : 2014-05-13 22:00:35.0
Rishi Kumar
523 1882 49150
Complete tutorial on Design Patterns in java
The term "design patterns" sounds a bit formal to the uninitiated and
can be somewhat off-putting when you first encounter it. But, in fact, design
patterns are just convenient ways of reusing object-oriented code between
projects and between programmers. The idea behind design patterns is
simple-- write down and catalog common interactions between objects that
programmers have frequently found useful.
The field of design patterns goes back at least to the early 1980s. At
that time, Smalltalk was the most common OO language and C++ was still in
its infancy. At that time, structured programming was a commonly-used
phrased and OO programming was not yet as widely supported. The idea of
programming frameworks was popular however, and as frameworks
developed, some of what we now called design patterns began to emerge.
Total Hits : 2273
Posted On : 2014-03-01 20:59:10.0
Rishi Kumar
523 1882 49150
Complete AJAX tutorial and Development
The term AJAX, originally coined by Jesse James Garrett of Adaptive Path in his
essay AJAX: A New Approach To Web Applications,It is an acronym for "Asynchronous
JavaScript And XML." That´s a bit of a mouthful, but it´s simply describing
a technique that uses JavaScript to refresh a page´s contents from a web server
without having to reload the entire page. This is different from the traditional
method of updating web pages, which requires the browser to refresh the entire
page in order to display any changes to the content.
Total Hits : 1776
Posted On : 2014-03-07 23:55:53.0
Rishi Kumar
523 1882 49150
Tutorial on Java Threads
This tutorial explores the basics of threads -- what they are, why they are useful, and how to
get started writing simple programs that use them.
We will also explore the basic building blocks of more sophisticated threading applications --
how to exchange data between threads, how to control threads, and how threads can
communicate with each other.
Total Hits : 2273
Posted On : 2014-03-07 21:11:33.0
Garima Gupta
596 1295 58962
Tutorial on Introduction to Java IO
This tutorial is an overview of Java I/O and all the classes in the java.io package. We
journey through the maze of the java.io package, examining I/O classes, methods, and
various techniques for handling I/O in your Java code.
This tutorial assumes you have a basic knowledge of I/O, including InputStream and
OutputStream. If you have training and experience in Java programmming, take this
course to add to your knowledge. If you do not have Java programming experience, we
suggest you take Introduction to Java for COBOL Programmers , Introduction to Java for C
or C++ Programmers , or other introductory Java courses available on the Web.
Total Hits : 1959
Posted On : 2014-03-07 21:04:41.0
Garima Gupta
596 1295 58962