 
   
 Dum Dum, Kolkata, India - 700030.
1 yr of Exp
Details verified of Arunava Biswas✕
  Identity
Identity 
  Education
Education 
Know how UrbanPro verifies Tutor details
Identity is verified based on matching the details uploaded by the Tutor with government databases.
Bengali Mother Tongue (Native)
Hindi Proficient
English Proficient
  Jadavpur University  2018
Jadavpur University  2018  
Bachelor of Engineering (B.E.)
  IBS Hyderabad  2021
IBS Hyderabad  2021  
Master of Business Administration (M.B.A.)
Dum Dum, Kolkata, India - 700030
  ID Verified
 ID Verified 
  Phone Verified
 Phone Verified 
  Email Verified
 Email Verified 
Report this Profile
Is this listing inaccurate or duplicate? Any other problem?
Please tell us about the problem and we will fix it.
Class Location
   Online Classes (Video Call via UrbanPro LIVE)
  Online Classes (Video Call via UrbanPro LIVE) 
   Student's Home
  Student's Home 
   Tutor's Home
  Tutor's Home 
Years of Experience in Class I-V Tuition
1
Fees
₹ 40.0 per hour
Board
State, CBSE
Subjects taught
Mathematics, Science, Bengali, English, Social Science, EVS, Computers
Taught in School or College
No
Class Location
   Online Classes (Video Call via UrbanPro LIVE)
  Online Classes (Video Call via UrbanPro LIVE) 
   Student's Home
  Student's Home 
   Tutor's Home
  Tutor's Home 
Years of Experience in Class 6 Tuition
3
Board
State, CBSE
Subjects taught
Computers, Science, Social science, Mathematics, EVS, English, Bengali
Taught in School or College
No
Teaching Experience in detail in Class 6 Tuition
hello all, Teaching is nothing but a group work, learning things together in a healthy and innovative way. A good teacher can build your future, and help you to be a good human. I am not an orthodox teacher, nor my teaching style is old schooled! scribles, projects, presentation, visual automation and more realistic way of teaching is my USP, To know more, you have to join my class.
Upcoming Live Classes
1. Which school boards of Class 1-5 do you teach for?
State and CBSE
2. Have you ever taught in any School or College?
No
3. Which classes do you teach?
I teach Class 6 Tuition and Class I-V Tuition Classes.
4. Do you provide a demo class?
Yes, I provide a free demo class.
5. How many years of experience do you have?
I have been teaching for 1 year.
Answered on 25/04/2021
Answered on 25/04/2021 Learn IT Courses/Java
this.is my php file:
$con = mysqli_connect($HostName,$HostUser,$password,$db);
 // Getting the received JSON into $json variable.
 $json = file_get_contents('php://input');
 // decoding the received JSON and store into $obj variable.
 $obj = json_decode($json,true);
 // Populate ID from JSON $obj array and store into $ID.
$ID = $obj['numero'];
//Fetching the selected record.
$CheckSQL = "SELECT origine FROM envoi WHERE numero='$ID'";
$result = $con->query($CheckSQL);
if ($result->num_rows >0) {
 while($row[] = $result->fetch_assoc()) {
 $Item = $row;
 $json = json_encode($Item);
 echo $json;
 }
}
else {  
 $EmailExistMSG= "No Results Found.";
 $EmailExistJson = json_encode($EmailExistMSG);
 echo $EmailExistJson ; 
}And this is my react native script where i should enter number and fetch his data if it's exist in my database:
search= () =>{
     //alert('ok');
     const {numero}=this.state;
     fetch('http://192.168.1.4:80/search.php',{
     method:'post',
     header:{
     'Accept':'application/json',
     'Content-type' :'application/json'
     },
     body:JSON.stringify({numero:numero})}).then((responseData)=>responseData.json()).then((responseJson)=>{alert(responseJson)}).catch((error)=>{console.error(error);})}
  render(){
    return(
          <View style={styles.pass}>
          <TextInput placeholder="Saisir le numéro de suivi de l'envoi"   onChangeText= {numero=>this.setState({numero})}/>
          <TouchableOpacity onPress={this.search} style={{marginTop:20,marginLeft:70}}>
          <Icon name="search"  size={20}/>
          </TouchableOpacity>
          </View>
    )
  }Answered on 25/04/2021
Answered on 25/04/2021
Class Location
   Online Classes (Video Call via UrbanPro LIVE)
  Online Classes (Video Call via UrbanPro LIVE) 
   Student's Home
  Student's Home 
   Tutor's Home
  Tutor's Home 
Years of Experience in Class I-V Tuition
1
Fees
₹ 40.0 per hour
Board
State, CBSE
Subjects taught
Mathematics, Science, Bengali, English, Social Science, EVS, Computers
Taught in School or College
No
Class Location
   Online Classes (Video Call via UrbanPro LIVE)
  Online Classes (Video Call via UrbanPro LIVE) 
   Student's Home
  Student's Home 
   Tutor's Home
  Tutor's Home 
Years of Experience in Class 6 Tuition
3
Board
State, CBSE
Subjects taught
Computers, Science, Social science, Mathematics, EVS, English, Bengali
Taught in School or College
No
Teaching Experience in detail in Class 6 Tuition
hello all, Teaching is nothing but a group work, learning things together in a healthy and innovative way. A good teacher can build your future, and help you to be a good human. I am not an orthodox teacher, nor my teaching style is old schooled! scribles, projects, presentation, visual automation and more realistic way of teaching is my USP, To know more, you have to join my class.
Answered on 25/04/2021
Answered on 25/04/2021 Learn IT Courses/Java
this.is my php file:
$con = mysqli_connect($HostName,$HostUser,$password,$db);
 // Getting the received JSON into $json variable.
 $json = file_get_contents('php://input');
 // decoding the received JSON and store into $obj variable.
 $obj = json_decode($json,true);
 // Populate ID from JSON $obj array and store into $ID.
$ID = $obj['numero'];
//Fetching the selected record.
$CheckSQL = "SELECT origine FROM envoi WHERE numero='$ID'";
$result = $con->query($CheckSQL);
if ($result->num_rows >0) {
 while($row[] = $result->fetch_assoc()) {
 $Item = $row;
 $json = json_encode($Item);
 echo $json;
 }
}
else {  
 $EmailExistMSG= "No Results Found.";
 $EmailExistJson = json_encode($EmailExistMSG);
 echo $EmailExistJson ; 
}And this is my react native script where i should enter number and fetch his data if it's exist in my database:
search= () =>{
     //alert('ok');
     const {numero}=this.state;
     fetch('http://192.168.1.4:80/search.php',{
     method:'post',
     header:{
     'Accept':'application/json',
     'Content-type' :'application/json'
     },
     body:JSON.stringify({numero:numero})}).then((responseData)=>responseData.json()).then((responseJson)=>{alert(responseJson)}).catch((error)=>{console.error(error);})}
  render(){
    return(
          <View style={styles.pass}>
          <TextInput placeholder="Saisir le numéro de suivi de l'envoi"   onChangeText= {numero=>this.setState({numero})}/>
          <TouchableOpacity onPress={this.search} style={{marginTop:20,marginLeft:70}}>
          <Icon name="search"  size={20}/>
          </TouchableOpacity>
          </View>
    )
  }Answered on 25/04/2021
Answered on 25/04/2021
 
 Share this Profile
Also have a look at
Reply to 's review
Enter your reply*
Your reply has been successfully submitted.
Certified
The Certified badge indicates that the Tutor has received good amount of positive feedback from Students.