Skip to main content

Posts

Showing posts from February, 2022
Creative Thinking 1.Creative thinking as defined by Okpara is the act of generating solution to problems by the force of imagination and reasoning. It is an ability of the mind seeking to find answers to some life’s questions. In a dynamic and changing world, the challenges of man are not static. They take on new forms and require a deep understanding of the creative approach. Celebrating achievements of great investors were not necessarily by accident but by product of deep creative thinking that has delivered the visible products we see and enjoy today. Bill gates, Steve Job, the Wright brothers, Ford, Rock feller etc have all at one time followed the part of creative thinking. 2.It is necessary to know that we live in a thinker’s world. It is therefore, not surprising to see that the men/women who are ahead are those who see ahead with the eyes of their mind. Men and women who have engaged their minds in resourceful thinking to generate idea and products, which stand the test of tim...

Demand Forecasting:

 Demand Forecasting:  On the basis of analysis and interpretation of information gathered about various aspects of market and demand from primary and secondary sources, an attempt is made to forecast the future demand of the proposed product or service. There are various methods of demand forecasting available to the market analyst. Methods of Demand Analysis The various methods of forecasting demand may be grouped under the following categories: 1) Opinion Polling Method: In this method, the opinion of the buyers, sales force and experts could be gathered to determine the emerging trend in the market. The opinion polling methods of demand forecasting are of three kinds: i) Consumers Survey Methods: The most direct method of forecasting demand in the short- run is survey method. Surveys are conducted to collect information about future purchase plans of the probable buyers of the product. Survey methods include: a) Complete Enumeration Survey: Under the Complete Enumeration ...

operator overloading

Function To Add Complex number using operator overloading Program: // Online C++ compiler to run C++ program online #include <bits/stdc++.h> using namespace std; class Complex {   private:     int a, b;   public:     void setcomplex(int x, int y)   {     a = x;     b = y;   }   Complex operator + (Complex p1)   {     Complex tmp;     tmp.a = p1.a + a;     tmp.b = p1.b + b;     return tmp;   }   void showValue() {     cout << a << " " << b;   } }; int main() {   Complex el;   el.setcomplex(2, 4);   Complex pq;   pq.setcomplex(2, 5);   Complex ans = el + pq;   ans.showValue();   return 0; }

Designing new methods for DAG scheduling problem for cloud computing

Objective: - Designing new methods for DAG scheduling problem for cloud computing. Abstract :- It is a scheduling layer in a spark which implements stage-oriented scheduling. It converts logical execution plan to a physical execution plan. When an action is called, spark directly strikes to DAG scheduler. It executes the tasks those are submitted to the scheduler. The objective of DAG scheduling is to minimize the overall program finish-time by proper allocation of the tasks to the processors and arrangement of execution sequencing of the tasks. Scheduling is done in such a manner that the precedence constraints among the program tasks are preserved. The overall finish-time of a parallel program is commonly called the schedule length or make span. Some variations to this goal have been suggested. For example, some researchers proposed algorithms to minimize the mean flow-time or mean finish-time, which is the average of the finish-times of all the program tasks [25], [110]. The signifi...