answersLogoWhite

0

What is a bitmask?

Updated: 12/14/2022
User Avatar

Bobo192

Lvl 1
7y ago

Best Answer

A bitmask is a pattern of bits indicating which bits in a second pattern are to be modified.

User Avatar

Wiki User

7y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is a bitmask?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Write a C program to implement relocatable loader?

#include<stdio.h> #include<conio.h> #include<string.h> #include<stdlib.h> struct object_code { int locctr; char add[10]; }obcode[300]; void main() { char input[100][16],output[100][16],binary[20],address[20],stloc[10]; int len,bitmask,loc,tlen=0,tloc,textloc,i=0,location,j,k,count=0,start,n,num=0,inc=0; FILE *fp1,*fp2; clrscr(); fp1=fopen("linput.dat","r"); fp2=fopen("reloadout.dat","w"); printf("Enter the location where the program has to be loaded:"); scanf("%s",stloc); start=atoi(stloc); location=start; tloc=start; fscanf(fp1,"%s",input[i]); while(strcmp(input[i],"T")!=0) { strcpy(output[i],input[i]); i++; fscanf(fp1,"%s",input[i]); strcpy(output[i],input[i]); } itoa(start,output[2],10); while(strcmp(input[i],"E")!=0) { strcpy(output[i],input[i]); if(strcmp(input[i],"T")==0) { for(j=0;j<3;j++) { i++; fscanf(fp1,"%s",input[i]); strcpy(output[i],input[i]); } bitmask=atoi(output[i]); itoa(bitmask,binary,2); strcpy(output[i],NULL); textloc=atoi(output[i-2]); textloc=textloc+start; itoa(textloc,output[i-2],10); for(n=0;n<(textloc-(tloc+tlen));n++) { strcpy(obcode[inc].add,"xx"); obcode[inc++].locctr=location++; } tlen=atoi(output[i-1]); tloc=textloc; k=0; } else { if(binary[k]==1) { num=0; len=strlen(output[i]); strcpy(address,NULL); for(j=2;j<len;j++) { address[num]=output[i][j]; output[i][j]='\0'; num++; } loc=atoi(address); loc=loc+start; itoa(loc,address,10); strcat(output[i],address); } k++; len=strlen(output[i]); num=0; for(n=0;n<len;n++) { obcode[inc].add[num++]=output[i][n]; if(num>1) { obcode[inc++].locctr=location++; num=0; } } } i++; fscanf(fp1,"%s",input[i]); } strcpy(output[i],input[i]); i++; fscanf(fp1,"%s",input[i]); loc=atoi(input[i]); loc=loc+start; strcpy(output[i],itoa(loc,address,10)); count=0; i=0; n=0; fprintf(fp2,"%d\t",obcode[n].locctr); for(n=0;n<inc;n++) { fprintf(fp2,"%s",obcode[n].add); i++; if(i>3) { fprintf(fp2,"\t"); i=0; count++; } if(count>3) { fprintf(fp2,"\n%d\t",obcode[n+1].locctr); count=0; } } getch(); }


Can someone help me under stand this?

Can someone help me understand what this page is sayingServiceState extends Objectimplements Parcelable java.lang.Object ↳ android.telephony.ServiceState Class Overview Contains phone state and service related information. The following phone information is included in returned ServiceState:Service state: IN_SERVICE, OUT_OF_SERVICE, EMERGENCY_ONLY, POWER_OFFRoaming indicatorOperator name, short name and numeric idNetwork selection modeSummary Constants int STATE_EMERGENCY_ONLY The phone is registered and locked. Only emergency numbers are allowed. int STATE_IN_SERVICE Normal operation condition, the phone is registered with an operator either in home network or in roaming. int STATE_OUT_OF_SERVICE Phone is not registered with any operator, the phone can be currently searching a new operator to register to, or not searching to registration at all, or registration is denied, or radio signal is not available. int STATE_POWER_OFF Radio of telephony is explicitly powered off. [Expand] Inherited Constants From interface android.os.Parcelable int CONTENTS_FILE_DESCRIPTOR Bit masks for use with describeContents(): each bit represents a kind of object considered to have potential special significance when marshalled. int PARCELABLE_WRITE_RETURN_VALUE Flag for use with writeToParcel(Parcel, int): the object being written is a return value, that is the result of a function such as "Parcelable someFunction()", "void someFunction(out Parcelable)", or "void someFunction(inout Parcelable)". Fields public static final Creator CREATOR Public Constructors ServiceState() Empty constructor ServiceState(ServiceState s) Copy constructors ServiceState(Parcel in) Construct a ServiceState object from the given parcel. Public Methods int describeContents() Describe the kinds of special objects contained in this Parcelable's marshalled representation. boolean equals(Object o) Compares this instance with the specified object and indicates if they are equal. boolean getIsManualSelection() Get current network selection mode. String getOperatorAlphaLong() Get current registered operator name in long alphanumeric format. String getOperatorAlphaShort() Get current registered operator name in short alphanumeric format. String getOperatorNumeric() Get current registered operator numeric id. boolean getRoaming() Get current roaming indicator of phone (note: not just decoding from TS 27.007 7.2) int getState() Get current voice service state int hashCode() Returns an integer hash code for this object. void setIsManualSelection(boolean isManual) void setOperatorName(String longName, String shortName, String numeric) void setRoaming(boolean roaming) void setState(int state) void setStateOff() void setStateOutOfService() String toString() Returns a string containing a concise, human-readable description of this object. void writeToParcel(Parcel out, int flags) Flatten this object in to a Parcel. Protected Methods void copyFrom(ServiceState s) [Expand] Inherited Methods From class java.lang.Object Object clone() Creates and returns a copy of this Object. boolean equals(Object o) Compares this instance with the specified object and indicates if they are equal. void finalize() Invoked when the garbage collector has detected that this instance is no longer reachable. final Class getClass() Returns the unique instance of Class that represents this object's class. int hashCode() Returns an integer hash code for this object. final void notify() Causes a thread which is waiting on this object's monitor (by means of calling one of the wait() methods) to be woken up. final void notifyAll() Causes all threads which are waiting on this object's monitor (by means of calling one of the wait() methods) to be woken up. String toString() Returns a string containing a concise, human-readable description of this object. final void wait() Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object. final void wait(long millis, int nanos) Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the specified timeout expires. final void wait(long millis) Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the specified timeout expires. From interface android.os.Parcelable abstract int describeContents() Describe the kinds of special objects contained in this Parcelable's marshalled representation. abstract void writeToParcel(Parcel dest, int flags) Flatten this object in to a Parcel. Constants public static final int STATE_EMERGENCY_ONLY Added in API level 1 The phone is registered and locked. Only emergency numbers are allowed. Constant Value: 2 (0x00000002) public static final int STATE_IN_SERVICE Added in API level 1 Normal operation condition, the phone is registered with an operator either in home network or in roaming. Constant Value: 0 (0x00000000) public static final int STATE_OUT_OF_SERVICE Added in API level 1 Phone is not registered with any operator, the phone can be currently searching a new operator to register to, or not searching to registration at all, or registration is denied, or radio signal is not available. Constant Value: 1 (0x00000001) public static final int STATE_POWER_OFF Added in API level 1 Radio of telephony is explicitly powered off. Constant Value: 3 (0x00000003) Fields public static final Creator CREATOR Added in API level 1 Public Constructors public ServiceState () Added in API level 1 Empty constructor public ServiceState (ServiceState s)Added in API level 1 Copy constructors Parameters s Source service state public ServiceState (Parcel in)Added in API level 1 Construct a ServiceState object from the given parcel. Public Methods public int describeContents ()Added in API level 1 Describe the kinds of special objects contained in this Parcelable's marshalled representation. Returnsa bitmask indicating the set of special object types marshalled by the Parcelable.public boolean equals (Object o) Added in API level 1 Compares this instance with the specified object and indicates if they are equal. In order to be equal, o must represent the same object as this instance using a class-specific comparison. The general contract is that this comparison should be reflexive, symmetric, and transitive. Also, no object reference other than null is equal to null. The default implementation returns true only if this == o. See Writing a correct equals method if you intend implementing your own equals method. The general contract for the equals and hashCode() methods is that if equals returns true for any two objects, then hashCode() must return the same value for these objects. This means that subclasses of Object usually override either both methods or neither of them. Parameters o the object to compare this instance with. Returnstrue if the specified object is equal to this Object; false otherwise.public boolean getIsManualSelection () Added in API level 1 Get current network selection mode. Returnstrue if manual mode, false if automatic modepublic String getOperatorAlphaLong () Added in API level 1 Get current registered operator name in long alphanumeric format. In GSM/UMTS, long format can be up to 16 characters long. In CDMA, returns the ERI text, if set. Otherwise, returns the ONS. Returnslong name of operator, null if unregistered or unknownpublic String getOperatorAlphaShort () Added in API level 1 Get current registered operator name in short alphanumeric format. In GSM/UMTS, short format can be up to 8 characters long. Returnsshort name of operator, null if unregistered or unknownpublic String getOperatorNumeric () Added in API level 1 Get current registered operator numeric id. In GSM/UMTS, numeric format is 3 digit country code plus 2 or 3 digit network code. Returnsnumeric format of operator, null if unregistered or unknownpublic boolean getRoaming () Added in API level 1 Get current roaming indicator of phone (note: not just decoding from TS 27.007 7.2) Returnstrue if TS 27.007 7.2 roaming is true and ONS is different from SPNpublic int getState () Added in API level 1 Get current voice service state public int hashCode ()Added in API level 1 Returns an integer hash code for this object. By contract, any two objects for which equals(Object) returns true must return the same hash code value. This means that subclasses of Object usually override both methods or neither method. Note that hash values must not change over time unless information used in equals comparisons also changes. See Writing a correct hashCode method if you intend implementing your own hashCode method. Returnsthis object's hash code.public void setIsManualSelection (boolean isManual) Added in API level 1 public void setOperatorName (String longName, String shortName, String numeric)Added in API level 1 public void setRoaming (boolean roaming)Added in API level 1 public void setState (int state)Added in API level 1 public void setStateOff ()Added in API level 1 public void setStateOutOfService ()Added in API level 1 public String toString ()Added in API level 1 Returns a string containing a concise, human-readable description of this object. Subclasses are encouraged to override this method and provide an implementation that takes into account the object's type and data. The default implementation is equivalent to the following expression: getClass().getName() + '@' + Integer.toHexString(hashCode()) See Writing a useful toString method if you intend implementing your own toString method. Returnsa printable representation of this object.public void writeToParcel (Parcel out, int flags)Added in API level 1 Flatten this object in to a Parcel. Parameters out The Parcel in which the object should be written. flags Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE. Protected Methods protected void copyFrom (ServiceState s)Added in API levelOr if its asking you to write a code can u write it or show me howif you want the link to this page so you can get a better look email hotshot0347@gmail.com


Related questions

Write a C program to implement relocatable loader?

#include<stdio.h> #include<conio.h> #include<string.h> #include<stdlib.h> struct object_code { int locctr; char add[10]; }obcode[300]; void main() { char input[100][16],output[100][16],binary[20],address[20],stloc[10]; int len,bitmask,loc,tlen=0,tloc,textloc,i=0,location,j,k,count=0,start,n,num=0,inc=0; FILE *fp1,*fp2; clrscr(); fp1=fopen("linput.dat","r"); fp2=fopen("reloadout.dat","w"); printf("Enter the location where the program has to be loaded:"); scanf("%s",stloc); start=atoi(stloc); location=start; tloc=start; fscanf(fp1,"%s",input[i]); while(strcmp(input[i],"T")!=0) { strcpy(output[i],input[i]); i++; fscanf(fp1,"%s",input[i]); strcpy(output[i],input[i]); } itoa(start,output[2],10); while(strcmp(input[i],"E")!=0) { strcpy(output[i],input[i]); if(strcmp(input[i],"T")==0) { for(j=0;j<3;j++) { i++; fscanf(fp1,"%s",input[i]); strcpy(output[i],input[i]); } bitmask=atoi(output[i]); itoa(bitmask,binary,2); strcpy(output[i],NULL); textloc=atoi(output[i-2]); textloc=textloc+start; itoa(textloc,output[i-2],10); for(n=0;n<(textloc-(tloc+tlen));n++) { strcpy(obcode[inc].add,"xx"); obcode[inc++].locctr=location++; } tlen=atoi(output[i-1]); tloc=textloc; k=0; } else { if(binary[k]==1) { num=0; len=strlen(output[i]); strcpy(address,NULL); for(j=2;j<len;j++) { address[num]=output[i][j]; output[i][j]='\0'; num++; } loc=atoi(address); loc=loc+start; itoa(loc,address,10); strcat(output[i],address); } k++; len=strlen(output[i]); num=0; for(n=0;n<len;n++) { obcode[inc].add[num++]=output[i][n]; if(num>1) { obcode[inc++].locctr=location++; num=0; } } } i++; fscanf(fp1,"%s",input[i]); } strcpy(output[i],input[i]); i++; fscanf(fp1,"%s",input[i]); loc=atoi(input[i]); loc=loc+start; strcpy(output[i],itoa(loc,address,10)); count=0; i=0; n=0; fprintf(fp2,"%d\t",obcode[n].locctr); for(n=0;n<inc;n++) { fprintf(fp2,"%s",obcode[n].add); i++; if(i>3) { fprintf(fp2,"\t"); i=0; count++; } if(count>3) { fprintf(fp2,"\n%d\t",obcode[n+1].locctr); count=0; } } getch(); }


Can someone help me under stand this?

Can someone help me understand what this page is sayingServiceState extends Objectimplements Parcelable java.lang.Object ↳ android.telephony.ServiceState Class Overview Contains phone state and service related information. The following phone information is included in returned ServiceState:Service state: IN_SERVICE, OUT_OF_SERVICE, EMERGENCY_ONLY, POWER_OFFRoaming indicatorOperator name, short name and numeric idNetwork selection modeSummary Constants int STATE_EMERGENCY_ONLY The phone is registered and locked. Only emergency numbers are allowed. int STATE_IN_SERVICE Normal operation condition, the phone is registered with an operator either in home network or in roaming. int STATE_OUT_OF_SERVICE Phone is not registered with any operator, the phone can be currently searching a new operator to register to, or not searching to registration at all, or registration is denied, or radio signal is not available. int STATE_POWER_OFF Radio of telephony is explicitly powered off. [Expand] Inherited Constants From interface android.os.Parcelable int CONTENTS_FILE_DESCRIPTOR Bit masks for use with describeContents(): each bit represents a kind of object considered to have potential special significance when marshalled. int PARCELABLE_WRITE_RETURN_VALUE Flag for use with writeToParcel(Parcel, int): the object being written is a return value, that is the result of a function such as "Parcelable someFunction()", "void someFunction(out Parcelable)", or "void someFunction(inout Parcelable)". Fields public static final Creator CREATOR Public Constructors ServiceState() Empty constructor ServiceState(ServiceState s) Copy constructors ServiceState(Parcel in) Construct a ServiceState object from the given parcel. Public Methods int describeContents() Describe the kinds of special objects contained in this Parcelable's marshalled representation. boolean equals(Object o) Compares this instance with the specified object and indicates if they are equal. boolean getIsManualSelection() Get current network selection mode. String getOperatorAlphaLong() Get current registered operator name in long alphanumeric format. String getOperatorAlphaShort() Get current registered operator name in short alphanumeric format. String getOperatorNumeric() Get current registered operator numeric id. boolean getRoaming() Get current roaming indicator of phone (note: not just decoding from TS 27.007 7.2) int getState() Get current voice service state int hashCode() Returns an integer hash code for this object. void setIsManualSelection(boolean isManual) void setOperatorName(String longName, String shortName, String numeric) void setRoaming(boolean roaming) void setState(int state) void setStateOff() void setStateOutOfService() String toString() Returns a string containing a concise, human-readable description of this object. void writeToParcel(Parcel out, int flags) Flatten this object in to a Parcel. Protected Methods void copyFrom(ServiceState s) [Expand] Inherited Methods From class java.lang.Object Object clone() Creates and returns a copy of this Object. boolean equals(Object o) Compares this instance with the specified object and indicates if they are equal. void finalize() Invoked when the garbage collector has detected that this instance is no longer reachable. final Class getClass() Returns the unique instance of Class that represents this object's class. int hashCode() Returns an integer hash code for this object. final void notify() Causes a thread which is waiting on this object's monitor (by means of calling one of the wait() methods) to be woken up. final void notifyAll() Causes all threads which are waiting on this object's monitor (by means of calling one of the wait() methods) to be woken up. String toString() Returns a string containing a concise, human-readable description of this object. final void wait() Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object. final void wait(long millis, int nanos) Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the specified timeout expires. final void wait(long millis) Causes the calling thread to wait until another thread calls the notify() or notifyAll() method of this object or until the specified timeout expires. From interface android.os.Parcelable abstract int describeContents() Describe the kinds of special objects contained in this Parcelable's marshalled representation. abstract void writeToParcel(Parcel dest, int flags) Flatten this object in to a Parcel. Constants public static final int STATE_EMERGENCY_ONLY Added in API level 1 The phone is registered and locked. Only emergency numbers are allowed. Constant Value: 2 (0x00000002) public static final int STATE_IN_SERVICE Added in API level 1 Normal operation condition, the phone is registered with an operator either in home network or in roaming. Constant Value: 0 (0x00000000) public static final int STATE_OUT_OF_SERVICE Added in API level 1 Phone is not registered with any operator, the phone can be currently searching a new operator to register to, or not searching to registration at all, or registration is denied, or radio signal is not available. Constant Value: 1 (0x00000001) public static final int STATE_POWER_OFF Added in API level 1 Radio of telephony is explicitly powered off. Constant Value: 3 (0x00000003) Fields public static final Creator CREATOR Added in API level 1 Public Constructors public ServiceState () Added in API level 1 Empty constructor public ServiceState (ServiceState s)Added in API level 1 Copy constructors Parameters s Source service state public ServiceState (Parcel in)Added in API level 1 Construct a ServiceState object from the given parcel. Public Methods public int describeContents ()Added in API level 1 Describe the kinds of special objects contained in this Parcelable's marshalled representation. Returnsa bitmask indicating the set of special object types marshalled by the Parcelable.public boolean equals (Object o) Added in API level 1 Compares this instance with the specified object and indicates if they are equal. In order to be equal, o must represent the same object as this instance using a class-specific comparison. The general contract is that this comparison should be reflexive, symmetric, and transitive. Also, no object reference other than null is equal to null. The default implementation returns true only if this == o. See Writing a correct equals method if you intend implementing your own equals method. The general contract for the equals and hashCode() methods is that if equals returns true for any two objects, then hashCode() must return the same value for these objects. This means that subclasses of Object usually override either both methods or neither of them. Parameters o the object to compare this instance with. Returnstrue if the specified object is equal to this Object; false otherwise.public boolean getIsManualSelection () Added in API level 1 Get current network selection mode. Returnstrue if manual mode, false if automatic modepublic String getOperatorAlphaLong () Added in API level 1 Get current registered operator name in long alphanumeric format. In GSM/UMTS, long format can be up to 16 characters long. In CDMA, returns the ERI text, if set. Otherwise, returns the ONS. Returnslong name of operator, null if unregistered or unknownpublic String getOperatorAlphaShort () Added in API level 1 Get current registered operator name in short alphanumeric format. In GSM/UMTS, short format can be up to 8 characters long. Returnsshort name of operator, null if unregistered or unknownpublic String getOperatorNumeric () Added in API level 1 Get current registered operator numeric id. In GSM/UMTS, numeric format is 3 digit country code plus 2 or 3 digit network code. Returnsnumeric format of operator, null if unregistered or unknownpublic boolean getRoaming () Added in API level 1 Get current roaming indicator of phone (note: not just decoding from TS 27.007 7.2) Returnstrue if TS 27.007 7.2 roaming is true and ONS is different from SPNpublic int getState () Added in API level 1 Get current voice service state public int hashCode ()Added in API level 1 Returns an integer hash code for this object. By contract, any two objects for which equals(Object) returns true must return the same hash code value. This means that subclasses of Object usually override both methods or neither method. Note that hash values must not change over time unless information used in equals comparisons also changes. See Writing a correct hashCode method if you intend implementing your own hashCode method. Returnsthis object's hash code.public void setIsManualSelection (boolean isManual) Added in API level 1 public void setOperatorName (String longName, String shortName, String numeric)Added in API level 1 public void setRoaming (boolean roaming)Added in API level 1 public void setState (int state)Added in API level 1 public void setStateOff ()Added in API level 1 public void setStateOutOfService ()Added in API level 1 public String toString ()Added in API level 1 Returns a string containing a concise, human-readable description of this object. Subclasses are encouraged to override this method and provide an implementation that takes into account the object's type and data. The default implementation is equivalent to the following expression: getClass().getName() + '@' + Integer.toHexString(hashCode()) See Writing a useful toString method if you intend implementing your own toString method. Returnsa printable representation of this object.public void writeToParcel (Parcel out, int flags)Added in API level 1 Flatten this object in to a Parcel. Parameters out The Parcel in which the object should be written. flags Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE. Protected Methods protected void copyFrom (ServiceState s)Added in API levelOr if its asking you to write a code can u write it or show me howif you want the link to this page so you can get a better look email hotshot0347@gmail.com