Skip to main content

Posts

Showing posts from 2015

How to Give an Excellent Presentation

How to Give an Excellent Presentation (College Students) College Seminars are conducted to test the presentation skills of a student or a group and also allow the student to convey his/her knowledge to the audience.Most students don't come prepared,the presentation will eventually look faded and dull. It would make him/her confused during the presentation and lead to vague answers during the questionnaires. 1 Connect with your audience.  "Preparation" is the most important task one has to do when it comes to "Presentation". Being prepared and having good knowledge about the topic that is to be presented will create interest among the audience and will not let them sleep all throughout your presentation. Capture the attention of your audience. Create soft humour which will add a boost to your interaction with them. 2 Be studious.  Slide Selections...

Android Interview Question for Freshers

I) What are the components of Android? The main components of Android are: 1)  Activity Activity provides an interface for users to interact with the application and take an action ( for instance: Login to a website ). The different screens/windows of an application are the different activities. An application generally has multiple activities. Activities are like the pages in a website. 2)  Intent Think of Intent as a message to allow the application to request action from the other application components (like activity), for instance VIEW, CALL, PLAY etc. 3)  Service Services are components that do not have a User Interface; they run in the background. They would continue to run, even if you switch to another activity or application. 4)  Broadcast receiver A Broadcast receiver comes into action only in specific situations. Suppose an Intent for which a particular broadcast receiver has been registered occurs, the broadcast receive...

Testing Interview Questions For Freshers

Q1. What is Endurance Testing? Endurance testing:  in this testing we test application behavior against the load and stress applies over application for a long duration of time. The goal of this testing are: To determine the how the application is going to responds for high load and stress conditions in the real scenario. To ensure that the response times in highly load and stress conditions are within the user’s requirement of response time. Checks for memory leaks or other problems that may occur with prolonged execution. Q2. What is End-to-End testing? End-to-End Testing we take the application from the starting phase of the development cycle till the ending of the development cycle. We can simple say that it comes into play when we take requirement from the customer till the end of the delivery of the application. The purposes of End-to-End testing are: Validates the software requirements and checks it is integrated with external interfaces. Testing application ...