Posts

Showing posts from September, 2020

Right From of Verb

  Suggestion : Top-11   Rule 01: Sentence-এ yesterday, ago, once, last, that day, day before yesterday প্রভৃতি অতীত নির্দেশক শব্দ থাকলে তা past indefinite tense( v2 ) হবে।       For example: The boy( go )____home yesterday.                         Ans: The boy went home yesterday.   Rule 02: Subject যদি third person singular number(he, she, it, কোন কিছুর নাম) হয় এবং ঐ বাক্যটি যদি present indefinite tense হয়, তবে verb এর সঙ্গে s/es হবে।       For example: Robin ( desire ) to have it.                         Ans: Robin desires to have it.   Rule 03: Sentence টি passive voice হলে can, could, should, will, would, must, used to, ought to প্রভৃতি modal auxiliary verb এর পরে be+verb এর past participle form হয়।       For example: The work can ( do )___immediately....

Insertion Sort Algorithm

Image
Details in:  https://www.geeksforgeeks.org/insertion-sort/

Essay: Role of programmer in creating a digital economy

Image
It′s the economic activity that results from billions of everyday online connections among people, businesses, devices, data, and processes. The backbone of the digital economy is hyperconnectivity which means growing interconnectedness of people, organisations, and machines that results from the Internet, mobile technology and the internet of things (IoT). The digital economy is taking shape and undermining conventional notions about how businesses are structured; how firms interact; and how consumers obtain services, information, and goods. Professor Walter Brenner of the University of St. Gallen in Switzerland states: “ The aggressive use of data is transforming business models, facilitating new products and services, creating new processes, generating greater utility, and ushering in a new culture of management. ” Recently, TechCrunch, a digital economy news site, noted,  “Uber, the world’s largest taxi company, owns no vehicles. Facebook, the world’s most popular media owner, ...

Part 1 SQL Learning

SELECT * FROM yt_Opportunities_Data SELECT New_Account_No , Opportunity_ID FROM yt_Opportunities_Data SELECT * FROM yt_Opportunities_Data WHERE Product_Category = 'Services' SELECT * FROM yt_Opportunities_Data WHERE Product_Category = 'Services' AND Opportunity_Stage = 'Stage - 4' SELECT * FROM yt_Opportunities_Data WHERE Product_Category = 'Services' OR Opportunity_Stage = 'Stage - 4' SELECT * FROM yt_Opportunities_Data WHERE Product_Category = 'Services' AND Opportunity_Stage IN ('Stage - 1','Stage - 3') SELECT * FROM yt_Opportunities_Data WHERE Opportunity_Stage IN ('Stage - 1','Stage - 3') SELECT * FROM yt_Opportunities_Data WHERE Opportunity_Stage NOT IN ('Stage - 1','Stage - 3') SELECT * FROM yt_Opportunities_Data WHERE New_Opportunity_Name LIKE '%Phase - 1%' SELECT * FROM yt_Opportunities_Data WHERE New_Opportunity_Name NOT LIKE '%Phase - 1%' AND Op...