/> Details verified of Deepthi R.✕
Identity
Education
Know how UrbanPro verifies Tutor details
Identity is verified based on matching the details uploaded by the Tutor with government databases.
Online Classes Telugu Mother Tongue (Native)
English Proficient
Hindi Basic
Manipal Institute of Technology Pursuing
Bachelor of Technology (B.Tech.)
Domlur, Bangalore, India - 560071
Phone 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 class via Zoom
Student's Home
Tutor's Home
Board
CBSE, ICSE, State
Subjects taught
Mathematics, Computer Science, Computers
Taught in School or College
No
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Board
ICSE, CBSE, State
Subjects taught
Computers, Mathematics, Computer Science
Taught in School or College
No
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Board
ICSE, CBSE, State
Subjects taught
Computer Practices, Mathematics, Computer Application
Taught in School or College
No
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Board
ICSE, CBSE, International Baccalaureate
Subjects taught
Computers, Mathematics, Computer Practices, Computer Application
Taught in School or College
No
Answered on 26/03/2020
Ask a Question
import java.util.Scanner;
public class Fibo{
public static void main(String[] args) {
Scanner input = new Scanner(System.in); System.out.print("Enter no of terms to print in series: "); int number = input.nextInt();int t1 = 0, t2 = 1;
System.out.print("First " + number + " terms: ");
for (int i = 1; i <= number; ++i)
{ System.out.print(t1 + " + ");
int sum = t1 + t2;
t1 = t2;
t2 = sum;
}
} }
Ask a Question
Also have a look at
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Board
CBSE, ICSE, State
Subjects taught
Mathematics, Computer Science, Computers
Taught in School or College
No
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Board
ICSE, CBSE, State
Subjects taught
Computers, Mathematics, Computer Science
Taught in School or College
No
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Board
ICSE, CBSE, State
Subjects taught
Computer Practices, Mathematics, Computer Application
Taught in School or College
No
Class Location
Online class via Zoom
Student's Home
Tutor's Home
Board
ICSE, CBSE, International Baccalaureate
Subjects taught
Computers, Mathematics, Computer Practices, Computer Application
Taught in School or College
No
Answered on 26/03/2020
Ask a Question
import java.util.Scanner;
public class Fibo{
public static void main(String[] args) {
Scanner input = new Scanner(System.in); System.out.print("Enter no of terms to print in series: "); int number = input.nextInt();int t1 = 0, t2 = 1;
System.out.print("First " + number + " terms: ");
for (int i = 1; i <= number; ++i)
{ System.out.print(t1 + " + ");
int sum = t1 + t2;
t1 = t2;
t2 = sum;
}
} }
Ask a Question
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.