Skip to main content

Posts

WHATSAPP WEB – USE WHATSAPP IN GOOGLE CHROME BROWSER

WHATSAPP WEB – USE WHATSAPP IN GOOGLE CHROME BROWSER we all Know that we Can Use Whatsapp on our Windows PC using Android Emulators like Bluestacks. That is an old story Right? But Now you can Use Your favorite Messaging app on your Google Chrome Browser too. Lately we have seen many updates in Whatsapp like 2 blue Ticks that shows read receipt. This time They have ann ounced that Whatsapp will be available as   Web Client for Google Chrome Users . Unfortunately if you are a Firefox Fanboy, then you might just want to use Google Chrome to use Whatsapp in Google Chrome Browser . Likewise, IOS Users will also not be able to use the Web client. Ok, so now Lets jump in to the point see some Steps to use Whatsapp web Client. Before moving on with the Steps let us first have a look at things you will need. Latest Version of whatsapp installed in your Android. Google Chrome Browser Installed on your PC. Internet Connection in your Phone & PC. Step 1: ...

GoFrugal Online Test

Guidelines for Students 1.      Before starting the online exam every student must clear the history/data in their browser (Mozilla/Chrome/Internet Explorer).[ Shortcut Key : Ctrl+Shift+Delete ] 2.      While clearing the history/data choose the option ‘ Beginning of the time’ in Chrome or ‘Everything’   in Mozilla 3.      After completion of the test scheduled time link will get closed automatically and the test completed so far will not be saved. So students must track their time. 4.      Student must Avoid ‘Refreshing’ or ‘Go back’  during the loading of test link. These two actions prevent the student for attending the test. So make sure the students has to wait till the test link page get loaded 5.      When students completed the test, please make sure they finish by clicking the SUBMIT button at the bottom of the screen. Students has to Click it ONLY ONCE! ...

Odessa Technologies Aptitude Test 2015 - Analytical Reasoning

Odessa Technologies Aptitude Test 2015 Analytical Reasoning Problem 1 : If MOTHER is coded as UHKWRP, how will FATHER be written Problem 2 : The six people in a party are walking in the following se-uence : The Brazilian is to the left of the German and to the right side of the French. The Australian is to the right of the German, but to the left of the Argentine, who is to the left of the Italian. Between whom is the Australian walking? Problem 3 : A coal processing plant is the major employer in the DVC area in Jharkhand, but the environmental regulations will force it to close if continued with old polluting processes. To update the plant to use newer, cleaner technolgy is so expensive that the plant will close unless it receives the tax break it requested. In order to prevent a major unemployment hike in the area, the government is considering the plant's request. Which of the following would be most important for the Jharkhand govt. to consider. P...

Odessa Technologies Aptitude Test 2015 - Numerical Reasoning

Odessa Technologies Aptitude Test 2015 Numerical Reasoning Problem 1 : Three typists A,B,C work in an office. They are given a handwritten document to type. Individually, A, being the most  experienced, can type the whole document in 40 minutes, B can do that in an hour, and C, the fresher, can do it in 1 hr 20 minutes. They decided to split the document among themselves so that it can be done in minimal time. What would be the time taken to complete the task? Problem 2 : Three chemists want to prepare a solution of HCl and HNO3. The solutions are labeled x/y to denote the concentrations x% and y% of the two acids (the rest being water). As individually they came up with labels 50/25, 40/40 and 30/40, what will be the ratio in which the three solutions need to be mixed, to get a desirable 37/37 solution? Problem 3 : The price of a gemstone is proportional to the square of its weight. A piece of such a stone, valued at $1m is somehow broken in 5 differen...

JAVA INTERVIEW QUESTIONS

JAVA INTERVIEW QUESTIONS 1.       What will be the result of attempting to compile and run the following class? public class Assignment {     public static void main(String[] args) {         int a, b, c;         b = 10;         a = b = c = 20;         System.out.println(a);     } } The code will fail to compile, since the compiler will recognize that the variable c in the assignment statement a = b = c = 20; has not been initialized. The code will fail to compile because the assignment statement a = b = c = 20; is illegal. The code will compile correctly and will display 10 when run. The code will compile correctly and will display 20 when run. 2.       Which statements are true? a.    ...