Software Interview Questions
Questions Answers Views Company eMail

How can you define field dependency?

198

How do I integrate with Salesforce?

203

How do I create a manual sharing rule in Salesforce?

224

How do I create a field dependency in Salesforce?

190

What is the difference between sharing rules and permission sets in Salesforce?

270

How do you call an API in Salesforce?

228

Can we create master detail relationship between two standard objects?

223

What is hierarchical relationship in SFDC?

214

What is a dependent picklist?

229

What is scope in batch apex?

210

What is Web service in Salesforce?

204

What is named credential in Salesforce?

193

Can we make callouts from batch apex?

221

What is controlling field in Salesforce?

213

What is manual sharing?

200


Un-Answered Questions { Software }

What do you mean by python literals?

456


What is an alternate to​​ View proxy?

59


How one can provide api to users?

363


What are elements of administration?

299


Explain what is Verilog?

639






What is css1 and css2?

264


Subtract Two Number Without Using Subtraction Operator

352


#include #include #include #include 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

2164


What are the basic rules of presentation?

94


Does sprintf allocate memory?

593


Explain the concept of scope hierarchy?

426


What are the events done by the Kernel after a process is being swapped out from the main memory?

1977


gadget in x_windows is ?

498


Suppose server object is not loaded into the memory, and the client request for it , what will happen?

2168


Can a Search can be done on a table with or without Index?

802