2019-01-27

Electrical Knowledge

Electrical and Electronic Concepts

Popular Post

Rotor of Squirrel Cage Induction Motor

Friday, February 1, 2019

Google+:Rise and Fall😢😢

No comments


Google plus which was launch on 28 June 2011 as a social networking site operated by the google.
It was created by Vic GundotraBradley Horowitz in Javascript.


vic gundotra
Vic Gundotra

It becomes quite famous, the community portal is the best in the google plus, where a user joins together to talk or research about one topic.

Bradley Horowitz
Bradley Horowitz
If u are sitting in the USA, you will get the current news or Reseach of others country in your related community which you will not get in daily newspapers.
 In November 2015, there is a change in the design to make it simpler, faster for the user to connect Google+ easily and new features like community and collection were added which become very famous among the user. Educational, News and many communities were created by the user, where people all around the world gather together to share their views on a specific topic. We can join as many as communities. Google+ may lack behind the facebook but many educational article and news were shared on google plus first. Notification widget on google chrome will disappear on 7 March 2019.

 Blogger prefers Google+ to share their views or articles more than facebook.

Articles on Google+ can be shared all over the world but on Facebook, it can only be shared among friends. Users can download their pictures from their account before April otherwise there will be deleted.


Everyone gonna misses their Google+ account and community. The friend circle we created there, will gonna be with us again.


Thursday, January 31, 2019

Hubble telescope

1 comment
Have you ever wondered by seeing pictures of another galaxy in your phone or books, How these pictures are captured or taken?

These pictures are taken by the telescopes with are orbiting our planet 24*7 all day, all night at           5 miles/sec searching for the new galaxy and planets, searching for a new possibility for a new home planet. Today I will tell you about the Hubble telescope.
Hubble telescope,telescope
Edwin P, Hubble, he was the first man who said that there are more galaxies in our universe.H e also gave the Hubble's law which states that the universe is expanding.
Edward Hubble,Hubble Telescope
Hubble Telescope was launch on 24 April 1990, orbiting in the low Earth orbit. It was named on American Astronomer

Hubble is placed in the Earth orbit above the Clouds so that Hubble telescope has a clear image of the outer space, his eye doesn't get distorted by earth atmosphere or clouds. The Space Telescope Science Institute in Baltimore, Maryland is observing the telescope from the ground.

Hubble has a 2.4m mirror and has four main components for the observation of ultraviolet, visible and infrared region. It is powered by the solar plate rated 2800watts.

Five servicing mission has fled up to the telescope to upgrade or remove the faulty parts of the telescope, the first mission was in 1993 and last in 2009 until 2019. Now, no more servicing mission will be sent to the Hubble telescope because Nasa is developing a new telescope name James Webb space telescope which will be launch in 2021, more powerful than the Hubble.

Hope u like it, for any suggestion please comment in the comment box.









Monday, January 28, 2019

History and Basics of C programming

No comments
C is a very useful and widely used programming language all over the world. It is basically the first programming language which gets so much attention and used by many of the programmers from the starting. It gets is the name 'C' because two programming language ie 'A' and 'B' has been developed before its launch, it is the modified version of both these languages, 'C' was developed by
Dennis M. Ritchie in 1972 and first implemented on DEC PDP-11 computer to develop the UNIX operating system.


   
                                                                 Dennis M.Ritchie


                                                     
Many of you were thinking what is a programming language?
A programming language is a set of commands to instruct the computer to perform a task. The commands are known as 'code', these codes are then converted into the machine language by the compiler. A compiler is application software which converts the high-level language into a low-level /machine language.

Header file
A header file is a file with extension .h which is used to define the functions that are already stored in the preprocessor file. We don't have to write the whole code to execute that function, we can execute that function by writing the header file at the top.
For ex: #include <stdio.h> (standard input/output) is responsible for taking input by the user and output at the screen.
#include <stdlib>(standard library) is responsible for function which involving memory location,process control and conversion.

Main()
Whenever we compile the program your compiler search for the "main()" function which is the entry of every programming code. int is used before the main function which tells the datatype and at the end, we end with the return0 which is the termination of the program.

Printf & Scanf
Printf is the function in stdlib to display the output in the screen. To print a number we need a
 place holder(%d) which is in quotation mark which stores the output.
For example printf("%d", integer); we need to place a semicolon at the end of the line. The compiler reads the  ";" semicolon as the line terminator.
For printing Decimal, we use "f" in place of "d" with the percentage sign and "s".to add the text.

If you want to add multiple integers, place multiple place holder.
printf("%d  %d  %d",32,56,98);

Scanf is used to take the input from the user.
scanf("%d". &number);
& is used as a simple way to pass the pointer to the store value.

#include<stdlib.h>
#include<stdio.h>

int main()
{
printf("hello world");
return 0;
}

this is the first c program to print' hello world'.




If you any doubt comment in the comment section.
Follow my insta page:
https://www.instagram.com/elec.tricknowledge/?hl=en
subscribe for more article on c and other technical knowledge.