Posts

Permission To Attempt Moodle Activity

Image
In the previous post, we have successfully added the Hot Pot activity on the moodle. However, this activity we have added as a admin user. Hence, the activity can not be visible to the registered students. To provide the permission, we have to click on the recently added activity from the MAIN MENU, as shown below. After click on the recently added activity called The PSP Quiz shown in above figure, we will get a new window as shown below. In this window, on the right corner we have seen the setting logo.After click on it, we will get few option. We have to select the Locally Assigned Roles  and a new window will open as shown below. From the above window, we have to select the Student , and a another window will open as shown below In the right, we have all the registered users along with the admin user. From the right, we have to sift all the students to left side by selecting all. After this, all the registered user can view the activities on their home ...

Hot Potatoes Activity on Moodle

Image
In this post, we will learn how to upload the Hot Potatoes activity on moodle. First, we have to login on our moodle as a admin and click on the Turn Editing On as shown in Figure. Once, the moodle get into the editing mode, the window will look like as shown below. First, we have to enable the Hot Potatoes Plugin through site administrator.  Click on the site administrator as shown in the left side of the page. Then click on the manage activities under the plugin and search for the Hot Potatoes from the available plugins, as shown below . Click on the Hot Pot cross eye to enable it, and then go back to the home page. Now, on the right side of the Home page MAIN MENU and left side we have Add Block. To add an activity, under the MAIN MENU add activity and resource link is given. Click on the add activity and resource link will enable the activity as shown below. From the available plugin, select the Hot Pot and click on the Add button. This will open a new windo...

Quick Start with Hot Potatoes

Image
In this post, we will learn how to create the Hot Potatoes activities. The Hot Potatoes is a open source software to create the interact activities such as  Multiple Choice Question, Cross Words, Match the Following, and Fill in the Blank. To download this software, you have to visit the Hot Potatoes website or follow the link  https://hotpot.uvic.ca/index.php#downloads . This software supports the various operating system like Windows, Linux, MAC.  Choose as per your operating system and get install. After the installation, open the Hot Potatoes Now, we will learn to create the JQuiz. Just click on the JQuiz icon showing in the above figure. After click on the JQuiz, the new window will open as shown below. In the above window, fill the tile of the quiz and type the first question with there four options. Later, tick on the correct answer.  In the feedback, type the message that is shown upon selection of correct option. Similarly, cl...

Profile Setup on Moodle

Image
In the previous post, we have seen the Moodle quick start with Gnomio. Today, we will see how to do the profile setup to make the front page more attractive. As shown in the upper right corner of the above figure, click on the profile. After the click, you will get the new page as shown below. The above right corner of this page, the edit profile is shown in the drop down list of setting. In the edit profile page, fill the details and add the profile picture to give a nice look to your front page. In the surname field, you put your complete name then it will show similar like as given in the below figure. After all this, your primary setup is OK. Now, logout from your account and tell to your student to type your website name http://botrover.gnomio.com . And, tell them to create an account on it as shown below. In the next post, we will learn how to create activity using hot-potato and add on the moodle.

Quick Start of Moodle

Image
Moodle is an open source course management system (CMS), that is used for creating the online courses for school, university, and colleges. It is primarily written in PHP and required MYSQL. To install a Moodle on your web server, then PHP and MYSQL is the primary requirement.  Among various web hosting organization, the easy solution provided by Gnomio  with pre install Moodle.  You have to just type the name and email id to get start the Moodle. The name that you have chosen become the domain of your website. After entering the required field, they will auto generate the domain and admin username and password. The entire details you will get on your mail id. After click on your domain, you will get the above page. Later, you have to click on the login as shown in the right upper corner on the figure. The login credential you have on your mail, use that and get login as a admin user. In the next post, we will do the few setups to get start the Moodle. ...

Go online entrepreneurship business

Image
 Any idea transformed into a new startup can initiate a business, and a successful business cannot realized until it reach out to its potential customers. The advertisement is the simplest way to reach out to your customer. However, the cost of advertisement is another big issue for small startup. Therefore, we did few case studies on how to do economical way of advertisement for a new startup. Before planning for advertisement, you have to think whether your product or services needs national of internal reach out. In both the cases, you can adopt World Wide Web (WWW) as the cost effective medium for your advertisement. To make a successful website for your successful idea or startup, you have to first choose the web hosting. There are various player throughout the internet world that gives the paid as well as unpaid webhosting options. Mostly, the unpaid webhosting organization cannot provide you more than 5 GB of web space and the domain options of .IN and .COM. F...

Hilbert trajectory of a mobile beacon

Image
In this post, we will design an another mobile trajectory called Hilbert. clc clear all close all %% Deployment of the nodes and anchor nodes N=100;   % Total Number of  Sensors A=10;    % Total Number of Anchors X=100;   % Area length Y=100;   % Area width R=10;     % Transmission radius (m) [s_x,s_y]=create_distribution(N,X,Y); %Static sensors random distribution plot(s_x,s_y,'bo'); % plot the sensor distribution hold on [a_x,a_y]=Hilbert(R,s_x,s_y) plot(a_x,a_y,'mo'); % plot the anchor distribution grid on hold on %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% Create Distribution Function (Create a new file and paste the below code and saved the file as create_distribution.m) function[s_x,s_y]=create_distribution(N,X,Y)      s_x = rand(1,N)*X;   % Sensor random distribution of X axis      s_y = rand(1,N)*Y;    % Sensor random distribution of Y axis %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function...