Posts

Showing posts with the label Google App Engine

Top 100+ Techniques for Verbal Ability & Reading Comprehension (VARC) - CAT Exam

I. Reading Comprehension (RC) Techniques 1. Skim First, Read Later: Quickly skim the passage to get a general idea before diving into details. 2. Identify the Main Idea: Focus on the overall theme of the passage. 3. Look for Transition Words: Words like However, Thus, Therefore signal shifts in arguments. 4. Understand the Author’s Tone: Identify whether it is analytical, critical, optimistic, etc. 5. Focus on Opening & Closing Sentences: These often contain key information. 6. Analyze Passage Structure: Determine whether the passage follows an argumentation, cause-and-effect, or comparison structure. 7. Underline Keywords: Underline or note important facts and figures while reading. 8. Read Paragraph by Paragraph: Break the passage into manageable sections. 9. Map the Passage: Create a mental map of the passage to remember key points. 10. Identify Factual vs. Inferential Information: Recognize what’s stated explicitly vs. implied. 11. Avoid Assumptions: Base

Google App Engine Hello world

Image
In this article,I am going to show how to deploy J2EE Google Web Application in Google App Engine  Step 1: Install Google App Engine in Eclipse Market Place. Step 2: Create Google Web Application in Eclipse and Create  Google Web Application Name from Google App Engine Dashboard Page  https://appengine.google.com/ Screen Shots Project Folder Explorer Screen Shot   App Engine Xml Configuration <?xml version="1.0" encoding="utf-8"?> <appengine-web-app xmlns="http://appengine.google.com/ns/1.0">   <application>jspexample123</application>   <version>1</version>   <!--     Allows App Engine to send multiple requests to one instance in parallel:   -->   <threadsafe>true</threadsafe>   <!-- Configure java.util.logging -->   <system-properties>     <property name="java.util.logging.config.file" value="WEB-INF/logging.properties"/>