Posts

Showing posts from 2019

AI Full Practical Code (Missionaries and Cannibals problem, implement depth first search algorithm, tic-tac-toe game)

1 (A): Write a program to implement depth first search algorithm. // PYTHON CODE// graph1= {'A':set(['B','C']),     'B':set(['A','D','E']),     'C':set(['A','F']),     'D':set(['B']),     'E':set(['B','F']),     'F':set(['C','E'])    } def dfs(graph,node,visited):     if node not in visited:       visited.append(node)       for n in graph[node]:          dfs(graph,n,visited)     return visited visited= dfs(graph1,'A',[]) print(visited) ************************************END************************************ ************************************END************************************ 1(b): Write a program to implement breadth first search algorithm. //PYTHON CODE// graph = {'A': ['B', 'C', 'E'],          'B': ['A','D', 'E'],          'C&#

THE FLAVOUR OF THE INTERNET OF THINGS (IoT) :

THE FLAVOUR OF THE INTERNET OF THINGS (IoT) : Here are the some following things are flavors of  IOT   . 1 My Train-Schedule Alarm Clock 2. Vitality GlowCap  3. Umbrella with Weather-Forecasting Handle  4 Nike+ Health App  5. Transport for London  6. Wheredial . 1. My Train-Schedule Alarm Clock : (a) The alarm rings. As we open our eyes blearily, we see that it's five minutes later than our usual wake-up time.  (b) It just a simple state machine that slept until it got close to wake-up time, then started monitoring the departure boards. (c) The clock has checked the train times online, and your train must be delayed, so it lets you sleep in a little longer. 2.  Vitality GlowCap:  (a) Medication non-adherence is a major public health dilemma that adversely impacts patient outcomes and increases health care utilization and associated costs. (b) Though there are a number of reasons why patients fail to adhere to medication regimens, reasons f

Project & Characteristics of project :

Project & Characteristics of project: Project :    A project is a temporary organization that is created for the purpose of delivering one or more business products. Characteristics of project: ·       Every project is unique: It requires the doing of something different, something that was not done previously. ·       The resources are constrained. ·       Planning is required. ·       Non-routines tasks are involved. ·       Work are carried out in Several (Different) phases. ·       The project is large or complex. ·       The project is typically for the customer. ·       Specific Objectives are to be meet. ·       The project is temporary in nature. ·       The project will have a unique set of requirements. ...................................................................................................................... Facebook:   https://www.facebook.com/ejaz.ahmes.58   I n stag ram: https://www.in

Software Project vs Other type of Project :

Software Project vs Other type of Project : Software Project Other Type of Project Software Project based on Logical Work. It is based on Physical Work. Invisibility : It is high in Software Project, means customer of Software Project can’t see the outcome (Output) in middle of project, Because customer don’t know about coding and other technical work. Invisibility : is low in Software Project, means customer of Software Project can see the outcome (Output) in middle of project, Because It is based on Physical Work. Complexity : It contain more complexity than other engineered project. We can’t measure complexity of software project until we actually work on it. Complexity : It contain less complexity as compare to software   Project. Conformity : The conformity is low in software project, Because Software developer have to conform to the requirements of human clients. It is not just that

how to set java path in windows 10 | how to set java path in windows 10 step by step

Image
How to Set Java (Java JDK) Path in Windows ? Notes:  Before you begin download the latest Java JDK. There are some Steps for Java Path Setting: Step 1:   Copy Java JDK Bin path from C drive (Program Files). Step 2:   Load the System Properties. Right button on the This PC icon and select Properties from the menu. Step 3:   Select the Advanced System Settings. Step 4:   Click on The Advanced Tab. Step 5:   Click Environmental Variables. Step 6:   Scroll down in the System variables and find the PATH variable. After that select edit option. Step 7: Select New and then Paste the Copied Path of Java Jdk. Done.......................................................................................................................................................... YouTube:      https://www.youtube.com/channel/UCTt7PLZfw50f-fbZBsrQCuA Facebook:   https://www.facebook.com/e