Program to check whether a word is the first word of the
sentence.



Program to check whether a word is the first word of the sentence...

Answer / jainpraveen75

You Can write this code in dotnet will solve the problum
Dim strstrign As String
Dim flgIS_Firstletter As Boolean = False
strstring = "asdadvjhasfdug8oryoriwehlkjwbn"
flgIS_Firstletter
= strstrign.StartsWith("char you want to search")

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More OOPS Interview Questions

What are the advantanges of modularity

2 Answers  


define oops concept with example

1 Answers   Cap Gemini,


What are generic functions and generic classes?

5 Answers  


What are benefits of oop?

0 Answers  


The company is a fake company asking for money of RS10000 while training and not offering a job after training. My humble request to you people not to attend Astersys interview

1 Answers   Astersys,






design class for linked list and include constructor,destructor,insert option. node of form struct node { int data; struct node &ptr; }

0 Answers  


What is Iteration Hierarchy? What is what is Object behavioral concept?

1 Answers  


what uses of c++ language?

3 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  


What is encapsulation in oops?

0 Answers  


string is a class or data type in java?

3 Answers  


What is balance factor?

0 Answers  


Categories