List of Indian CEOs in global companies
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡ like emoticon like emoticon
1. Sundar Pichai:
Native city: Madras
Company: Google
Joined in: 2004
Appointed as CEO on: August 10, 2015
2. Satya Nadella:
Native city: Hyderabad
Company: Microsoft
Joined in: 1992
Appointed as CEO on: February 4, 2014
3. Indra Nooyi:
Native city: Madras
Company: PepsiCo
Joined in: 1994
Appointed as CEO in: 2006
4. Ajay Banga:
Native city: Khadki (near Pune)
Company: MasterCard
Joined in: 2010
Appointed as CEO in: 2010
5. Rajeev Suri:
Native city: New Delhi
Company: Nokia
Joined in: 1994
Appointed as CEO in: 2014
6. Anshu Jain:
Native City: Jaipur
Company: Deutsche Bank
Joined in: 1995
Appointed as Co-CEO in: 2011
Resigned in: 2015
7. Vikram Pandit:
Native City: Nagpur
Company: Citigroup
Joined in: 2007
Appointed as CEO in: 2007
Resigned in: 2014
8. Abhi Talwalker:
Native City: Pune
Company: LSI Corporation
Joined in: 2004
Appointed as CEO in: 2005
Resigned in: 2013
Dangerous Knowledge
This Eduction page contains the information about the Programming Languages just like as C,C++,Core Java, .NET, HTML, XML etc and other Technical knowledge
This page is developed by Rahul Chaudhary to published the knowledge about programming languages like as HTML,XML,HTML5.......etc. This page is useful for only those students which are relates to technology.
NATIONAL PARKS IN INDIA
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
[1] Anshi National Park --------- Karnataka
[2] Bandipur National Park ----------- Karnataka
[3] Bannerghatta National Park ---------
Karnataka
[4] Balphakram National Park ------- Meghalaya
[5] Bandhavgarh National Park --------- Madhya
Pradesh
[6] Betla National Park --------- Jharkhand
[7] Bhitarkanika National Park ------- Odisha
[8] Blackbuck National Park, Velavadar --------
Gujarat
[9] Buxa Tiger Reserve -------- West Bengal
[10] Campbell Bay National Park ---------
Andaman and Nicobar Islands
[11] Chandoli National Park --------- Maharashtra
[12] Dachigam National Park ------- Jammu and
Kashmir
[13] Darrah National Park --------- Rajasthan
[14] Desert National Park -------- Rajasthan
[15] Dibru-Saikhowa National Park ---------
Assam
[16] Dudhwa National Park --------- Uttar Pradesh
[17] Eravikulam National Park -------- Kerala
[18] Galathea National Park --------- Andaman
and Nicobar Islands
[19] Gangotri National Park --------- Uttarakhand
[20] Gir Forest National Park --------- Gujarat
[21] Gorumara National Park -------- West Bengal
[22] Govind Pashu Vihar Wildlife Sanctuary ------
Uttarakhand
[23] Great Himalayan National Park -------
Himachal Pradesh,
[24] Gugamal National Park -------- Maharashtra
[25] Guindy National Park -------- Tamil Nadu
[26] Gulf of Mannar Marine National Park
---------- Tamil Nadu
[27] Hemis National Park --------- Jammu and
Kashmir
[28] Harike Wetland ------- Punjab
[29] Hazaribagh National Park ------- Jharkhand
[30] Indira Gandhi Wildlife Sanctuary and National
Park -------- Tamil Nadu
[31] Indravati National Park ------- Chhattisgarh
[32] Jaldapara National Park ------- West Bengal
[33] Jim Corbett National Park --------
Uttarakhand
[34] Kalesar National Park ------ Haryana
[35] Kanha National Park ------- Madhya Pradesh
[36] Kanger Ghati National Park --------
Chhattisgarh
[37] Kasu Brahmananda Reddy National Park
-------- Telangana
[38] Kaziranga National Park ------ Assam
[39] Keibul Lamjao National Park ------ Manipur
[40] Keoladeo National Park --------- Rajasthan
[41] Khangchendzonga National Park -------
Sikkim
[42] Kishtwar National Park --------- Jammu and
Kashmir
[43] Kudremukh National Park ------- Karnataka
[44] Madhav National Park ------- Madhya
Pradesh
[45] Mahatma Gandhi Marine National Park -------
Andaman and Nicobar Islands
[46] Mahavir Harina Vanasthali National Park
------- Telangana
[47] Manas National Park ------ Assam
[48] Mandla Plant Fossils National Park --------
Madhya Pradesh
[49] Marine National Park, Gulf of Kutch -------
Gujarat
[50] Mathikettan Shola National Park ------- Kerala
28/01/2016
If you are using mysqli_connect for creating a database connection in PHP then it’s time to move to PDO stands for PHP Data Objects, this is a more secure and appropriate way to connect to a database in PHP. The reason you should use PDO is that it’s more reliable than the formal method of using mysqli_connect and it prevents SQL injections. It will secure your queries as well as make it more efficient. In this tutorial, I’ll give you the simple example of mysqli connection and then we’ll convert that into PDO.
Database using MySQLi_connect
If you are using mysqli_connect in PHP for establishing a connection to the database then you’ll always be using something like this:
The above is the simple mysqli connection saved in a local variable ($con), you just need to pass four parameters to the database which can be clearly seen above, and you might have been using this method for quite a long time.
After establishing the connection, we always run queries for inserting/deleting/selecting/updating data in a mysql table. For that we use the following syntax:
And for inserting query we use similar code like this:
Similar queries are also for deleting data and updating data like this:
Now the above is a traditional way for establishing a connection to the database using mysqli_connect API, now below we’ll learn how to convert this connection to PDO (PHP Data Objects) the same way we did in mysqli.
PDO MySQL Connection
Now the basic PDO connection is also very easy same like the mysqli_connect but with a little bit different approach. However, PDO is a strong API which you can use for database connections not only for MySQL but for many other databases such as Oracle and SQL Lite. Below is the simple connection syntax for MySQL in PDO:
PDO connection is always created within the try{} and catch{} blocks, this is because the try{} block establishes the connection and run any prepared statement (query) which the developer wants to run. And the catch{} block checks for an error if there is any error in the connection or in the whole process. Now, please note below line by line explanation of the code above.
$con = new PDO(“mysql:host=$host;dbname=$db_name”, $user, $pass);
The above line actually creates a PDO connection to the database, we save this connection in a local variable $con and equal it to new PDO and then inside two () parenthesis, we add the parameters such as the host, db_name etc.
$con->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
The above line is just an attribute for error handling, and the actual error mode is ERRMODE_EXCEPTION, and we set this for $con variable which holds the whole database connection. And everything inside the catch() block is by default added here which will display an error if there is any.
PDO Prepared Statements
Now when you’ve established a connection using PDO, it’s time to know how we can run MySQL queries such as selecting data, inserting data and updating data. Please note that the query will also be inside the catch{} block, we can have one query or many queries but within the catch{} block, below is an example of selecting data from table:
The above code is the query through which we can select data from a table using PDO method, first we have created a simple local variable called $sth stands for statement handler, and then we are referencing the $con variable which holds the database, and next we are using the prepare keyword for preparing the query, and then we are just selecting data from the table like data1, data2 etc, the columns names may be different in your case.
Now on the next line, we are setting up a mode to fetch the data from the database, and we used PDO::FETCH_ASSOC mode in above case, this is same like you use mysqli_fetch_assoc, but here in PDO, you’ll also have to use another fetch() function when retrieving data using a while loop or something like that as you can see in above example. The above example should fetch and display all the records on the page which are in the table_name.
Now see the insert query example below, which similarly like the select one:
In the above example, we are actually inserting data into the table, the table_name can be any table. The next variable again is $sth (statement handler) and then $con variable for database connection and the we again use prepare() to write the query. But the great part here is the VALUES clause which has the values like :var1, var2, var3. These values we’ve bound using the bindParam() function which we use to bind the values before inserting into the database for a safe and secure insertion. We can also specify the type of the value which is going to be inserted to the table, so that MySQL engine knows which type of data to be expected.
Deleting a record from the table using PDO is very easy to do thing and very similar to the mysqli_connect API, see the below example for complete understanding:
The code above is just for deleting a record from the table table_name, where data1=5, that’s mean the data from the column data1 which is equal to 5 will be deleted. And please note that we are not using prepare statement here because that’s not necessary in delete query, and we use exec() function to execute this query because no result will be returned to the page.
The last example of PDO will be the update query, which is similar to the delete query, see below example:
$update = “UPDATE table_name SET data1=’New Data’ WHERE id=2”;
// Prepare statement
$sth = $con->prepare($sql);
// execute the query
$sth->execute();
The above example will simply update the record in the table for the field name data1 with New Data and where id will be equal to 2.
And finally, this was the PDO tutorial, which you can use in your future applications if you want to move from mysqli to PDO, and this is very important because this protects your PHP applications from SQL injections. Let me know if you have any questions.
जानिये कौन सी गाड़ी किस शहर की है। एक बहुत महत्वपूर्ण मैसेज।
उत्तर प्रदेश के शहरों के व्हीकल यूनिक नंबर:-
UP-11 : Saharanpur
UP-12 : Muzaffarnagar
UP-13 : Bulandshahr
UP-14 : Ghaziabad
UP-15 : Meerut (UP-15AT for taxis, UP-15AG for government
vehicles
UP-16 : NOIDA / Gautam Buddha Nagar
UP-17 : Baghpat
UP-18 : Prabudh Nagar
UP-20 : Bijnor
UP-21 : Moradabad
UP-22 : Rampur
UP-23 : Jyotiba Phule Nagar
UP-24 : Badaun
UP-25 : Bareilly
UP-26 : Pilibhit
UP-27 : Shahjahanpur
UP-28 : Ayodhya
UP-29 : to be alloted
UP-30 : Hardoi
UP-31 : Kheri
UP-32 : Lucknow
UP-33 : Raebareli
UP-33T, AT, BT, CT & so on : Raebareli for commercial
vehicles
UP-33G, AG, BG, CG & so on : Raebareli for government
vehicles
UP-34 : Sitapur
UP-35 : Unnao
UP-35B, H, T : Unnao for commercial vehicles
UP-36 : Amethi
UP-37 : Hapur
UP-40 : Bahraich
UP-41 : Barabanki
UP-42 : Faizabad
UP-43 : Gonda
UP-44 : Sultanpur
UP-45 : Ambedkar Nagar
UP-46 : Shrawasti
UP-47 : Balrampur
UP-50 : Azamgarh
UP-50T, AT, BT,& so on : Azamgarh for commercial vehicles
UP-50, AG,BG & so on : Azamgarh for government vehicles
UP-51 : Basti
UP-52 : Deoria
UP-53 : Gorakhpur for private vehicles
UP-53T, AT, BT, CT & so on : Gorakhpur for commercial
vehicles
UP-53AG : Gorakhpur for government vehicles
UP-54 : Mau
UP-55 : Siddharth Nagar
UP-56 : Mahrajganj
UP-57 : Padrauna
UP-58 : Sant Kabir Nagar
UP-59 : to be alloted
UP-60 : Ballia
UP-61 : Ghazipur
UP-62 : Jaunpur
UP-62T : Jaunpur for taxis, private vehicle
UP-63 : Mirzapur
UP-64 : Sonbhadra
UP-65 : Varanasi
UP-66 : Bhadohi
UP-67 : Chandauli
UP-68 : to be alloted
UP-69 : to be alloted
UP-70 : Allahabad
UP-71 : Fatehpur
UP-72 : Pratapgarh
UP-73 : Kaushambi
UP-74 : Kannauj
UP-75 : Etawah
UP-75G : Etawah for government vehicles
UP-76 : Farrukhabad
UP-77 : Kanpur Dehat (rural)
UP-78 : Kanpur - Urban
UP-78G, AG, BG, CG & so on : Kanpur Government Vehicles
UP-78AN, BN, CN & so on : Kanpur CNG Vehicles
UP-78AT, BT, CT & so on : Kanpur CNG Vehicles
UP-79 : Auraiya
UP-80 : Agra
UP-81 : Aligarh
UP-82 : Etah
UP-83 : Firozabad
UP-84 : Mainpuri
UP-85 : Mathura
UP-86 : Mahamaya Nagar
UP-87 : Kanshiram Nagar
UP-88 : to be alloted
UP-89 : to be alloted
UP-90 : Banda
UP-91 : Hamirpur
UP-92 : Jalaun
UP-93 : Jhansi
UP-93E : Jhansi for public transport
UP-93AG : Jhansi for government vehicles
UP-94 : Lalitpur
UP-95 : Mahoba
UP-95B : Mahoba for commercial vehicles
UP-95G : Mahoba for government vehicles
UP-96 : Chitrakoot Dham (Karwi).
01/01/2016
From all of us at knowledge2improve.com, we wish you the best for whatever 2016 brings.
10/11/2015
Top Android Interview Questions And Answers for Freshers :
1.What is Android?
An open-source operating system used for smartphones and tablet computers
2. Features of Android OS?
Most of us are aware of features like
Live wallpaper, Camera, Messaging, Bluetooth, WIFI, Web Browsing, Music, Alarm
3.SDK stand for ?
Software Development Kit
4.Tools Required for Developing Android Apps?
JDK
Eclipse + ADT plugin
SDK Tools.
5.Advance Features of Android OS?
Google now (voice assistant)
NFC (Near Field Communication)
Unlock your phone by your face
Use your phone with joystick to enjoy gaming experience
Connect your phone with LED TV via MHL or micro HDMI cable
Screen Capture
Multitasking Future (Task Switcher)
Data Usages (Check and also set limit from device)
6.What is meaning of Android Word?
It means a robot with a human appearance
7.ADT stand for?
Android Developer Tools
8.Inventors of android ?
Andy Rubin, Rich Miner, Nick Sears
9.Advantages of android?
Open-source
Platform-independent
Supports various technologies (having number of native application like: camera, bluetooth, wifi, speech, EDGE)
10. Language Know to develop android apps?
Java
XML
11.Android application main components are?
Activities, Services, Broadcast Receivers, Content Providers
12. What is AVD?
AVD Stand for Android Virtual Device (emulator), The Android SDK includes a mobile device emulator - a virtual mobile device that runs on your computer.
13.What is Intent?
An Intent is exactly what it describes. It's an "intention" to do an action.
An Intent is basically a message to say you did or want something to happen. Depending on the intent, apps or the OS might be listening for it and will react accordingly.
There are two types of intents in android:
Implicit Intent
Explicit Intent
14.What are the names of the various versions of the Android OS?
The following names are used for the currently existing Android releases. Note that versions 1.0 and 1.1 were not publicly named. However, Android 1.1 was internally referred to as "Petit-Four"
Cupcake:
Android 1.5
Donut:
Android 1.6
Eclair:
Android 2.0
Android 2.1
Froyo: (short for "frozen yogurt")
Android 2.2
Gingerbread:
Android 2.3
Honeycomb:
Android 3.0
Android 3.1
Android 3.2
Ice Cream Sandwich:
Android 4.0
Jelly Bean:
Android 4.1
Android 4.2
Android 4.3
KitKat:
Android 4.4
Lollipop:
Android 5.0
Android 5.1
Marshmallow:
Android 6.0
27/10/2015
New Version of www.knowledge2improve.com has been updated with more responsive look and much more............So please visit once to improve the website. Thank you
17/10/2015
9 Algorithms That Are Driving The World Crazy 1. Search Engine Indexing: Finding needles in the world’s biggest haystack. Search for something on the web and you’re ‘indexing’ billions of documents and images. Not a trivial task and it needs s…
17/10/2015
Ways To Get Perfect in C++ By Following This Approach The main way in which you learn C++ is by writing lots of code in C++. This is true of any other programming language as well. That being said, though, C++ is probably the least beginner-friendly o…
02/10/2015
02/10/2015
Are you agree?
Click here to claim your Sponsored Listing.
Location
Category
Contact the school
Telephone
Website
Address
Ghaziabad