Skip to main content

Posts

Call Center Operation in Covid-19

Call Center Operation in Covid-19 Introduction A call center is a department or a office in which incoming or outgoing calls from customers(either new or existing) are handled by the team of agents. Main functions of call centers are as follows:- Handling the problems of customers Offering customer support Provide product and service information to customers Upsell products and services Document all call information according to standard operating procedures There are much more functions that are performed at call center. We are not going into details. In addition to servicing customers’ needs, phone calls handled by call centers are valuable touchpoints with customers. With some products or services, phone calls are the only interaction that brands have with their customers .  Now let us see the impact of Covid-19 on call centers.  Virtual Call Centers A virtual call center enables you to connect call directly to your agent's mobile phone. Instead of typical traditional call...

Importance of AI in COVID-19

Importance of AI in COVID-19 Introduction COVID-19 has brought the great changes in our lives, from ruining the economy to making the country so much digitally forward in such a less amount of time.  India’s internet consumption rose by 13% since the nationwide lockdown was put in place to check the spread of Covid-19, according to telecom ministry data that showed Indians consumed 308 petabytes (PB) or 308,000 terabytes (TB) of data daily on an average for the week beginning March 22  . Online classes to work from home all things require you to have an internet connection. That means we require online applications to help in these process.Now you might be wondering that what is the role of AI in this process.Let us first talk about what is AI. What is AI ? AI stands for artificial Intelligence. Now as the word itself suggest, the task which require human brain to be done but can be done by machines by applying some algorithms. AI systems will typically demonstrate at least so...

Keith Number

KEITH NUMBER Before  moving on to code let us talk about what is Keith number  . A number is said to be Keith Number , if  it appears in the sequence where first n numbers are digits of  number itself and rest are formed by repeatedly adding the previous n numbers of the sequence . It is illustrated in the example below: eg.  1. 14 is a Keith number          Sequence formed by 14 is  1, 4, 5, 9, 14, . . . .       First two numbers(1, 4) are digits of number(14)  itself and rest are formed by adding the  previous  two numbers of sequence(1+4=5, 5+4=9, 9+5=14).  2. 197 is a Keith number       Sequence formed by 197 is 1, 9, 7, 17,  33,  57, 107,  197 , . . . .      First three numbers(1, 9, 7) are digits of number(197)  itself and rest are formed by adding the  previous  two numbers of sequence(1+9+7=17, 9+7+17=33,  7+17+33=57 , 17...

Printing pattern A using A's and * 's

Printing pattern A using A's We are going to write our first pattern program in python. Printing pattern A using A's is much simple in python as compare to any other programming language. We will simply be using for loop and if-else statement for constructing a pattern A. Here is the code of how you will do that. # Program to print a pattern A using A's str= " " var= "A" j= 1 for i in range ( 10 , 0 , - 1 ): print (str* 85 , end = "" ) print (str*i+var , end = "" ) if i== 10 : continue elif i== 4 : print (str+var+str+var+str+var+str+var+str+var+str+var+str) j=j+ 2 else : print (str*j+var) j=j+ 2 Output: A A A A A A A A A A A A A A A A A A A A A A          Printing pattern A using *'s Now, lets directly see t...

String methods in python

Python String Methods Python has very large set of in-built functions in strings which we can use directly without writing any extra code. Note: We can store the result after applying methods into variables. There will be no change in the original string after applying these methods. We will the methods step by step with examples. 1.) capitalize()       It capitalizes the first letter of our string.       eg.  str = "i am a word" m=str.capitalize() print (m) Output: I am a word 2.) casefold()       It  converts the characters of string into lowercase. eg. str = "SUN RISES IN EAST" m=str.casefold() print (m) Output: sun rises in east 3.) count()        It returns the count of character that is passed. eg. str = "Betty bought a bit of butter, But the butter was so bitter, So she bought some better butter, To make the bitter butter better" m...