answersLogoWhite

0

Still curious? Ask our experts.

Chat with our AI personalities

CoachCoach
Success isn't just about winning—it's about vision, patience, and playing the long game.
Chat with Coach
EzraEzra
Faith is not about having all the answers, but learning to ask the right questions.
Chat with Ezra
ReneRene
Change my mind. I dare you.
Chat with Rene

Add your answer:

Earn +20 pts
Q: Using the Index Validation role you can?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is theDifference between concurrent and prospective validation in pharmaceutical?

If a validation study is conducted before placing a product in the market, then it is called prospective validation. If a product is placed on the market during the validation study, it is called as concurrent validation.


Does HTML code work in java script?

Yes it does. That is how client side validation of html control is possible using javascript


How can you use validation in a sentence?

The figures needed validation before the accounts could be done.


Write a program in C plus plus to store 100 element within array and find the particular element if exist?

#include<iostream> #include<iomanip> #include<time.h> template<typename T> size_t find(T& data, T a[], size_t size) { size_t index=0; do { if(a[index]==data) break; } while(++index<size); return(index); } template<typename T> void print(T a[], size_t size) { using std::cout; using std::endl; using std::setw; size_t index=0; do{ if(index&&index%20==0) cout<<endl; cout<<setw(3)<<a[index]; }while(++index<size); cout<<endl; } int main() { srand((unsigned)time(NULL)); const size_t size=100; unsigned int a[size]; size_t index=0; do{ unsigned int data=rand()%100; do{ data=rand()%100; } while(find(data,a,index)<index); a[index]=data; } while(++index<size); print(a,size); }


How can you validate the name using HTML?

In earlier versions of HTML, validation could be done only by JS. However, we can do it inbuilt by required attribute in HTML5.