Posts

Top 10 most important gk questions and answers

Image
 1. Who was the first Indian woman in Space? A. Kalpana Chawla B. Sunita Williams C. Koneru Humpy D. None of the above Ans: A 2. Who was the first Indian in space? A. Vikram Ambalal B. Ravish Malhotra C. Rakesh Sharma D. Nagapathi Bhat Ans: C First In India : Female Personalities 1 3. Who was the first Man to Climb Mount Everest Without Oxygen? A. Junko Tabei B. Reinhold Messner C. Peter Habeler D. Phu Dorji Ans: D 4. Who built the Jama Masjid? A. Jahangir B. Akbar C. Imam Bukhari D. Shah Jahan Ans: D First In India : Female Personalities 2 5. Who wrote the Indian National Anthem? A. Bakim Chandra Chatterji B. Rabindranath Tagore C. Swami Vivekanand D. None of the above Ans: B 6. Who was the first Indian Scientist to win a Nobel Prize? A. CV Raman B. Amartya Sen C. Hargobind Khorana D. Subramanian Chrandrashekar Ans: A First In India : Female Personalities 3 7. Who is the first Indian to win a Nobel Prize? A. Rabindranath Tagore B. CV Raman C. Mother Theresa D. Hargobind Khorana An...

Write a program that prints Hello World! on screen.

 #include <stdio.h> int main() {     printf("Hello World!");     return 0; }

Write a program that prompts the user to input number of calls and calculate the monthly telephone bills as per the following rule: Minimum Rs. 200 for up to 100 calls. Plus Rs. 0.60 per call for next 50 calls. Plus Rs. 0.50 per call for next 50 calls. Plus Rs. 0.40 per call for any call beyond 200 calls.

 #include <stdio.h> int main() {     int calls;     float bill;     printf("Enter number of calls :");     scanf("%d", &calls);     if (calls <= 100)     {         bill = 200;     }     else if (calls > 100 && calls <= 150)     {         calls = calls - 100;         bill = 200+(0.60 *calls);     }     else if (calls > 150 && calls <= 200)     {         calls = calls - 150;         bill = 200+(0.60 *50) + (0.50 *calls);     }     else     {         calls = calls - 200;         bill = 200 + (0.60 * 50) + (0.50 * 50) + (0.40 * calls);     }     printf("Your bill is Rs. %0.2f", bill);     return 0; }

Suryanshsk

  Suryanshsk Name: suryanshsk  Full name : suryansh singh rajput Father name : keshav Singh Mother name: soni singh Live in surat Nick name : Avanish Singh Born: Gagnai rao, mehdawal, santkabir nagar , Up , india  Birth date : 04/08/2006 Youtuber, blogger, social media influencer View this post on Instagram A post shared by Suryansh Singh (@suryanshsk)

Whatsapp

  WhatsApp Messenger, or simply WhatsApp, is an American freeware, cross-platform messaging and Voice over IP (VoIP) service owned by Facebook, Inc.[47] It allows users to send text messages and voice messages, make voice and video calls, and share images, documents, user locations, and other media. WhatsApp's client application runs on mobile devices but is also accessible from desktop computers, as long as the user's mobile device remains connected to the Internet while they use the desktop app. The service requires users to provide a standard cellular mobile number for registering with the service. In January 2018, WhatsApp released a standalone business app targeted at small business owners, called WhatsApp Business, to allow companies to communicate with customers who use the standard WhatsApp client. Original author(s) Brian Acton, Jan Koum Developer(s) WhatsApp Inc. (Facebook, Inc.) Initial release February 2009; 11 years ago Article By Suryanshsk.     Subscri...

google

  Google LLC  is an American  multinational   technology company  that specializes in  Internet -related services and products, which include  online advertising technologies , a  search engine ,  cloud computing , software, and hardware. It is considered one of the  Big Five  technology companies in the U.S.  information technology  industry, alongside  Amazon ,  Facebook ,  Apple , and  Microsoft   Google was founded in September 1998 by Larry Page and Sergey Brin while they were Ph.D. students at Stanford University in California. Together they own about 14 percent of its shares and control 56 percent of the stockholder voting power through supervoting stock. They incorporated Google as a California privately held company on September 4, 1998, in California. Google was then reincorporated in Delaware on October 22, 2002.[12] An initial public offering (IPO) took place on August 19, 2004, and Goo...