Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


string is a class or data type in java?

Answers were Sorted based on User's Feedback



string is a class or data type in java?..

Answer / neeraj03

'string' keyword is not valid in java, 'String' is the
correct keyword and it's a class.

Is This Answer Correct ?    4 Yes 0 No

string is a class or data type in java?..

Answer / mahi

string is a class and datatype

Is This Answer Correct ?    5 Yes 2 No

string is a class or data type in java?..

Answer / priya

string is class

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More OOPS Interview Questions

What is the difference between static polymorphism and dynamic polymorphism?

0 Answers  


What is cohesion in oop?

0 Answers  


how does a main() in C++ is different from main() in C?

7 Answers  


write a program to print * * * * * *

2 Answers  


#include <string.h> #include <stdio.h> #include <stdlib.h> #include<conio.h> void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

0 Answers  


Can we create object of class with private constructor?

5 Answers  


Whats is abstraction in oops?

0 Answers  


how to create thread in java?

17 Answers   IBM, Infosys, Wipro,


What is methods in oop?

0 Answers  


Why multiple inheritance is not allowed?

0 Answers  


can we make a class static without using static keyword?

5 Answers   Aspire,


Get me an image implementation program.

0 Answers  


Categories