Tuesday 11 December 2018

The only way to learn GK(General Knowlwdge) Questions

The only way to learn GK(General Knowlwdge) Questions

हेल्लो दोस्तों आप लोगो ने अभी तक बहुत सरे ट्रिक्स पढ़ा होगा और देखा भी होगा की ऐसे पड़ो तो जल्दी याद होगा वैसे पड़ो जल्दी याद होगा लेकिन अगर सच में आपको GK मजबूत करना है ताकि हर एक एक्साम्स को आप आसानी से निकल सके तो किसी भी सॉर्ट कट अथवा लॉजिक के पीछे मत भागिए |
जैसा की आप सभी लोग जानते है की Gk एक वृहद सिलेबस वाला टॉपिक है और इसको याद रख पाने बहुत ही मुस्किल वाला काम है आप इसे बस कुछ दिन ही यद् रख सकते है | इसको काफी समय तक अपने मस्तिक में बनाये रखे के लिए आपको मुख्यतः दो चीजों को ध्यान में रखना होगा,
१. रोज आप कुछ न कुछ Gk के टॉपिक्स को याद करने के कोसिस  करे |
२. उनको आप रट के मत याद करे हर एक प्रश्नाय के उत्तर को याद  करने के लिए उस प्रश्नाय को किसी तर्क से जोड़ने की कोसिस करे |
ऐसा करने से चीज़े जल्दी याद भी होती है और जल्दी भूलती नहीं है |
हो सकता है कुछ लोगो को यह बकवास लगे बुत यकीन मानियेगा दोस्तों आप इसे एक बार ज़रूर इस्तेमाल करे उसके बाद आपको खुद ब खुद पता चल जायेगा | GK के हर एक प्रश्न को आप किसी न किसी तर्क से जोड़ कर याद करने की कोसिस करे | अगर संभव हो तो बातो बातो में प्रश्नों को उठाये ताकि उस पर कुछ बात विवाद हो जिस से आपको वह प्रश्न्य याद हो जायेगा |
ऊपर लिखे हिंदी शब्दों में त्रुत्यो के लिए माफ़ी कहता हु क्योंकि मुझे लैपटॉप पर हिंदी लिखने नहीं आती अभी सीख रहा हु | अगर हमारे विचार पसंद आये तो इसे ज़रूर पसंद करे और अपने दोस्तों में शेयर करे |

Sunday 3 June 2018

Why keyboard are not in alphabetical order

Have you ever think that why the keyboards are not in the Alphabetical order .This is a matter to think about ,moslty we all have worked on the keyboard but we haven't think about that why they are not arranged in a Alphabetical order .

This was all because of the old-time Typewriter .In 1868 When the Typewriter's were invented the keys were arranged in the Alphabetical order .But soon when the peoples started using the typewriter ,their working speed was very fast due to arrangement of keys in Alphabetical order .This fast typing of people started creating a problem with the Mechanical arms of the Typewriter get's tangled up(उलझ जाना) among each other .To get rid of this problem they thought of to randomize the keys of the Typewriter which will decrease the speed of typing and the key jams of the Typewriters .Now this random arrangement of the keys has been Standard.

Friday 1 June 2018

Quora going to be launched in hindi version

Quora going to be launched in hindi version

As we all know about the Quora ,a very helpful website where lots of questions has been answered and are review by the peoples .This is a great concept of Quora to share your experience with other peoples..The English version of Quora has started earning revenue from the Advertisement from the past year ( 2017 ).

Firstly the Quora will launch a beta version of the Quora for small groups of people before launching it for all .After the testing of the Quora this will be fully launched for everyone .The Facebook Chief Technology Officer  Adam D'Angelo has founded Quora in 2009 .
So wait and watch for the new version of the quora hope so it will available in hindi to everyone in 2019 .

Thursday 31 May 2018

Detailed description of the AJAX Syntax along with its meaning and work


The given code is the syntax of the ajax function now lets us understand the terms used in the given code.Firstly you should know that the ajax is always called via a javascript function .The function may be of any type onclick,onchange,onload etc.
AJAX along with the Jquery

$.ajax
(
{
url : "URL",
method : "post",
data : $('#login').serialize(),
dataType : "text",
beforeSend: function() {
/*  Your Codes Before sending data*/
},
success: function(data){
/*  Your Codes after sending the data */
}

$.ajax ( {  } )

Everything of the ajax is written between the these parenthesis ( {  your other codes   } ) .


url : "Designated Url",

Suppose there is a form on page a.html and you have to insert the form data into the database .Then you have to make another page b.php which will recieve the value from the a.html and contain the insertion code of the form data .So ,basically in the Designated Url we have to write the path of the b.php .

method : "post",

Now as we know that we are sending the data of a.html to b.html so basically we can send them with two methods either GET method or POST method .So in the method part of the AJAX we write the method name from which we are sending the data from one page to other.

data : $('#login').serialize(),

The serialize() method creates a url encoded text string by serializing the form values .And $('#login') id of the form (for ex. <form action="" method="POST" id="login" >).So this method will send all the data within the form tag to the b.php after receiving those values on b.php you can simply insert it into the database. This is the section of AJAX where we told the AJAX that what data has to be send has to be sent. Images can't be send by the serialized() method .

dataType : "text",

Now the next is the dataType ,we have to decleare the datatype which we are sending to other page that the data is text or file .

beforeSend: function() {    /* Your Code Before Sending Data */     }
We have seen in many places were AJAX has been used that when we click on the submit button ,the button get disabled and a loading gif or a Please wait message is show to us. This is show by the before send function of the ajax .We give the button an ID and using hide( ) function we disappear the button and replace it with the some other text or a loading image or loading gif.

success: function(data) {   /* Your Code Before Sending Data */   }

Now the last basic step of the ajax is the success( ) function ,When the data is send through the ajax method to the b.php then the insertion query will run on that page .After running the query the there will some response either the query will successful or it will fail .So the result will be recieved in the success ( ) function of the ajax .In the above heading there is a term  function(data) in this term the data is a variable .It contains the response of b.php what ever you will echo on that page that will be store on the variable data .

For Example :

If you have echo something on b.php then ,

b.php
echo 'Hello How are you';
Then on the a.html in the success function of the AJAX will work as follow :

a.html
success: function(data) {  
alert(data);
 }
This alert will simply show an alert containg the message of b.php "Hello How are you".

If still you have any confusion or you want any demo of this ajax then comment in the comment section i will try my best to help you .The demo will be of free of cost .

Wednesday 30 May 2018

What is the Express WIFI launched by the facebook ?

Facebook Express WIFI

So, basically the express wifi is a Android Application launched by the Facebook which will give you the internet access.It was launched by Facebook on 4 May 2017 with the partnership of  Bharti Airtel in four states of India ( RajasthanUttrakhandGujarat and Meghalaya ).
Application View of Express Wifi

Concept of Express Wifi

The Facebook has released its own local hotspots and distributed to the distributors in many states and cities of India .You can find the Facebook authenticated hotspot from the Express WIFI Application in your area , And you can connect through the those hotspots .Now you are thinking that is this service is free or Paid ,so for your kind information I would like to tell you that these services are paid you can recharge your Facebook Express Application like the other telecom services with the authorized retailer of Express Wifi .The authorized retailer can be found from the Application it will automatically show the nearest retailer according to your current location .Your data consumption can be easily tracked from the Express Wifi Application.

Main Purpose of the Express WIFI Launched by the Facebook

Facebook wants to provide you cheap and fast internet services in every region of the world .Specially focusing on the regions were the internet is not available and tourism places (because suppose any tourist is from the USA visit India then he will not able to surf internet from its local network or it will cost a lost for him so he can easily surf internet through the express wifi). It is valid in all over the world you can recharge at any place and surf in any place of any part of the world .
This was all about the Facebook Express Wifi Application launched by the Facebook . If you still have any confusion then comment in the comment section below I will surely try my best to resolve your problem.

Sunday 11 June 2017

My mobile is getting effected from virus and working very slow


There is no concept of virus in the android.The android work slow because of ram and the processor.
When there is a lots of android application installed in the mobile the it start working improperly.
If there is a best processor and big size of ram the it will work best and very fast without any problem.
The apps like cleaner,boosters and many more make the speed faster not by removing virus it closes all the apps which cause the ram to free.And the result is that the mobile work fast but again soon all the apps gets restart then again it occupies the space in the ram result it makes the mobile slow.

Saturday 10 June 2017

Ransome VIruses effect on Pc

Ransome VIruses effect on Pc

What is the ransome virus?

It is a virus that locks your hard disk.And stop you from accessing your own computer.It will demand you for money.When you will pay the money then you will get a password to D encrypt your hardisk.


Image result for ransomware
Ransomeware

How it comes to our computer?


Genreally it can comes to your computer by emails.when you will open that emails the virus will automatically download to your pc and it will decrypt(lock) your hardisk.And can also come from any untrusted or spam website by downloading any video or song from untrusted websites.

How money is given by the victim to get the password?

They takes the money in the form of bitcoins.You have to pay them in bitcoins to the owner of the ransome virus.They will give you that password to decrypt your hardisk. 

Does it working on every computer...?

The Answer is NO.It is only affecting the Windows or you can say microsoft.It is not working on Linux And many other operating system.It attacks to the windows operating system and mostly to those OS which are not properly updated.