Hi@akhtar,
In cassandra there are two types of Strategy available. One is SimpleStrategy and another one is NetworkTopologyStrategy.
In SimpleStrategy, replication_factor field is available. But, in NetworkTopologyStrategy, DataCenter field in available.
Use the bellow given command, it will work.
$ create keyspace University with replication = {'class' :'NetworkTopologyStrategy','DataCenter1':1};
Thank You