Subscribe this Blog

Wikipedia

Search results

Notifications and New Posts!

Tuesday, April 28, 2020

Urgent-About Pune Graduate Constituency Registration

नमस्कार,
पदवीधर नोंदणी कार्यक्रमांतर्गत आपण ऑफलाईन नोंदणी करत होतो. परंतु, सद्यस्थितीत आपणास भेटणे व ऑफलाईन काम करणे अशक्य आहे. त्याचे कारण म्हणजे कोरोना व्हायरसचे आपल्यावरील आक्रमण!
ही नोंदणी आपण ऑनलाइन करू शकतो. आपण विद्यार्थी (Under Graduate) असाल, तर आपण आपल्या पालकांचा/ नातेवाईकांचा/ शेजारील व्यक्तीचा पदवीधर नोंदणी फॉर्म मोबाईलवर व्हाट्सअपद्वारे दुसऱ्यांची माहिती गोळा करून फॉर्म भरू शकता. आपले नाव मतदार यादीत शोधण्यासाठी व आपले नाव नोंदणी करण्यासाठीच्या लिंक्स देत आहे. या लिंक्स वरती जाऊन आपण आपले नाव शोधावे, आपले नाव यादीत आले नसल्यास आपण मतदार नोंदणीची लिंक वापरून आपली नाव नोंदणी करावी.

नाव शोधण्यासाठी साठी ही लिंक वापरावी:- 

यादीत नाव नोंदणीसाठी ही लिंक वापरावी :- 


पदवीधर नोंदणी फॉर्म त्याचे स्वरूप:
https://ceo.maharashtra.gov.in/GOnline/Graduate19.aspx

वरील लिंकला क्लिक केल्यानंतर आपणास खालील प्रमाणे फॉर्म ओपन होईल. तो काळजीपूर्वक भरावा हि विनंती. 

फॉर्म भरून झाल्यानंतर कृपया, फॉर्म भरल्याचा स्क्रिनशॉट माझ्या मोबाईलवर पाठवा. जास्तीत जास्त नोंदणी करून राष्ट्रीय कार्यात सहभागी होऊया. 
महत्वाचे आपणास जर हा फॉर्म भरणे शक्य झाले नाही तर कृपया वरील माहिती व्हाट्सअप द्वारे मला पाठवा. मी तुमच्या वतीने हा ऑनलाईन फॉर्म भरून आपणास तो फॉर्म भरला गेला त्याचा स्क्रिनशॉट नक्कीच पाठवेन. 

सचिन भोसले

Sunday, April 26, 2020

Audio Post - C program to find power of a given number using call by value type of function

This is the audio-texual post. To load audio mp3 file, it may take 10 to 15 seconds not more than that.
Please wait:


Above is the mp3 file which you can directly play from this page. Triangular shaped button can be pressed and audio gets started. For better experience of listening please use headphones. While listening above mp3 audio file, you can obsever following program. Listen and observe following program 2 to 3 times carefully, you will understand. 

/*A C Program to find power of a given number using call by value type of
function. Take number and power from user Example 2^3=8 */

#include<stdio.h>
#include<conio.h>
void power(int,int); //declaration of user defined function

void main()
{
int no,p;
clrscr();
printf("\n Please enter number=");
scanf("%d",&no);
printf("\n Please enter power=");
scanf("%d",&p);
power(no,p);    //calling of call by value type of function
getch();
}

void power(int no, int p)
{
int i,ans=1;
for(i=1;i<=p;i++)
{
ans=ans*no;
}
printf("\n %d^%d=%d",no,p,ans);
}
/*
 Please enter number=2
 Please enter power=3
 2^3=8
*/

Let's understand this program step by step 
Step 1: 
First of all letters include all preprocessor statements as stdio.h and conio.h.

Step 2:
Declaration of user defined function, here I have used power() as user defined function and this is call by value type of function. Here we are using two inputs number (no) and power(p). So number and power, we will be passing from main function to user defined function power.

Step 3:
main function- without main function program will not be executed. To execute entire program main function is required which is defined in step number 3.

Step 4: 
Inside the main function, first step is declaration of variables. no and p these two variables are used. Where no is is number and p is power. These two variables are integer type of variables.

Step 5:
Use of clrscr function - This function will help us to clear previous output screen.

Step 6:
To give the input to the program, here I have used two print functions and two scanf functions.
First printf function is used to display a message on the output screen as "please enter number". Then scanf function is used to accept number through the keyboard. Similarly next printf function is used to enter appropriate message on the output screen as as "please enter power". With the help of scanf function values of p, we can enter through keyboard. %d format specifier is used to accept integer values through keyboard.

Step 7: 
In this step, we are calling call by value type of function. To call this function no and p, these two variables, we are passing from main function to user defined function power().  Therefore no and p, these two variables are parameters here which we need to write in the round brackets.

Step 8:
getch function, this function will help us to hold the output screen after execution of the program.

Step 9: 
Where power function needs to be defined. This power function, we are defining outside the main function. While defining function outside the main function two parameters are declared in the round brackets no and p. Values of these variables/parameters are coming from main function.
In the round brackets first of all, we are declaring two variables. i and ans variables are declared as integer type of variables. where ans is initialised as 1. i is looping variable in the for loop. Value of i we are varying from 1 to p. Because we want multiplication of no, p times.
Therefore logical condition is written as i<=p. We are multiplying ans with no each time in for loop. 
At the last, outside the for loop, in the power function printf function is used to display result.

In short program will be executed as follows:
Execution of program is started from main function.
Because of main function, computer will accept two integer values of no and p through keyboard.
Due to calling of power function and as this function is call by value type of function this power function will pass values of no and p from main function to user defined function power.
power function will calculate power of a number and result will be stored in the ans variable with the help of for loop.

Please listen the audio clip you will understan this program for sure. For any doubts you can write me in the comment box below.

#sdbhosale

Friday, April 24, 2020

Converting photos into pdf file by using Cam Scanner and uploading the pdf file on website

Converting photos into pdf file by using Cam Scanner  and uploading the pdf file into Google Form

Today, we have conducted online home test for first year engineering students.
some students have faced problems while uploading PDF file in Google form. To solve this problem, I have written this blog. My blog will help students:
1. To convert captured photos from Cam Scanner app to single .pdf file. 
2. To upload converted single pdf file into Google form or any website.

It is important. Because tomorrow onwards students will upload single PDF file in Google form as answer sheet.

Now, let's understand this step by step with mobile screenshots:


Step 1: Suppose these are your scanned documents with Cam Scanner. Click on pdf option which is present on screen.


Step 9: Then go to Internal Storage or Local option.


Step 2: Click on Share button.


Step 10: if you will click on local then select Internal Storage.

Step 3: Then select 'Save to local' option from Share Via. This process will save your pdf file into your mobile file manager.


Step 11: Mobile will display all files from your mobile device. To select, Cam Scanner folder select, yellow coloured Search option from bottom,  in this case.

Step 4: Now suppose, you want to upload that pdf file on website or google form as shown in step 4. Then click on 'Add file' option.

Step 12: Type Cam word in search box. Mobile will display Camscanner folder.

Step 5: Then click on 'Select files from your device' option.


Step 13: Select that Cam Scanner folder, and scroll down your mobile screen by forefinger.

Step 6: Then select files from file manage option as shown in step no.6.


Step 14: This is the file which we need to upload on website or in the google form. This pdf file we have generated at the start i.e. in the step no.3

Step 7: Then generally, mobile shows your files from download folder. Click on small three horizontal lines which are at left top to go to our pdf file which we have stored by using Cam Scanner.


Step 15: Select this file, automatically after your selection fill will be uploaded on google form page.

Step 8: Then from Open From page, select File Manager Option.


Step 16: At the last you can click on  Upload button. Then to submit your answer click on Submit Butoon at the end.

Hope you have understood all above mentioned steps to Convert photos into pdf file by using Cam Scanner  and uploading the pdf file into Google Form. Thank you for visiting this blog.
-
#sdbhosale

Thursday, April 23, 2020

Aarogya Setu App Registration and COVID-19 Self Assessment

Aarogya Setu App Registration and Self Assessment - COVID19 

Aarogya Setu is an important step in our fight against COVID-19. By leveraging technology, it provides important information. As more and more people use it, it’s effectiveness will increase. I urge you all to download it.

Animated Logos of SVERI