Skip to main content

Wings of Fire book review हिंदी

Wings of Fire: An Autobiography of A P J Abdul Kalam, former President of India. It was written by Dr. Kalam and Arun Tiwari. Kalam examines his early life, effort, hardship, fortitude, luck and chance that eventually led him to lead Indian space research, nuclear and missile programs

Originally published: 1999
Page count: 180 (paperback edition)
Original language: English
Genres: Autobiography, Biography, Inspirational Fiction

विंग्स ऑफ फायर: ए पी जे अब्दुल कलाम की आत्मकथा, भारत के पूर्व राष्ट्रपति। इसे डॉ। कलाम और अरुण तिवारी ने लिखा था। कलाम ने अपने प्रारंभिक जीवन, प्रयास, कठिनाई, भाग्य, भाग्य और मौका की जांच की और अंततः उन्हें भारतीय अंतरिक्ष अनुसंधान, परमाणु और मिसाइल कार्यक्रमों का नेतृत्व करने के लिए प्रेरित किया।

 मूल रूप से प्रकाशित: 1999
 पृष्ठ गणना: 180 (पेपरबैक संस्करण)
 मूल भाषा: अंग्रेजी
 शैलियों: आत्मकथा, जीवनी, प्रेरणादायक कथा

Comments

Popular posts from this blog

Classification of Networks Based on Geographical Classification

               ***Classification of Networks Based on Geographical Classification***                   In this section ,we will discuss the following categories of networks.                                                                                                                 PAN ...

Types of server, all types of server file server, print server, application server, database server, message server information.

                                                                                                                    Types of Servers Hi today’s blog is on types of Servers. You can take knowledge of types of servers blog in marathi मराठी. Link https://myblogs0727.blogspot.com/2020/05/blog-post_11.html?m=1 Servers are those who connects us to the internet or links us to a good internet (net) service that we uses the connection of the service.        Server is the thing that serves the service to us i.e. end users, in other words it plays roll like servant which serves us ...

Simple java prime or not program

public class PrimeExample{     public static void main(String args[]){       int i,m=0,flag=0;         int n=3;//it is the number to be checked       m=n/2;         if(n==0||n==1){      System.out.println(n+" is not prime number");         }else{      for(i=2;i<=m;i++){           if(n%i==0){            System.out.println(n+" is not prime number");            flag=1;            break;           }          }          if(flag==0)  { System.out.println(n+" is prime number"); }     }//end of else   }     }