answersLogoWhite

0

What is int ii in Arabic?

User Avatar

Anonymous

9y ago
Updated: 8/21/2019

you use inti in arabic when you are talking to a female it means you (female)

but when you are talking to a male you say "inta"or "enta " it means you (male)

User Avatar

Wiki User

9y ago

What else can I help you with?

Related Questions

What is the Arabic word for never?

Ii--lal a--bad.


What are the release dates for Team Umizoomi - 2010 Bagpipes Toopy and Binoo II Int's 2032 SUSPENDED?

Team Umizoomi - 2010 Bagpipes Toopy and Binoo II Int's 2032 SUSPENDED was released on: USA: 29 November 2012


C program for knapsack algorithm?

#include<stdio.h> #include<conio.h> int w[10],p[10],v[10][10],n,i,j,cap,x[10]={0}; int max(int i,int j) { return ((i>j)?i:j); } int knap(int i,int j) { int value; if(v[i][j]<0) { if(j<w[i]) value=knap(i-1,j); else value=max(knap(i-1,j),p[i]+knap(i-1,j-w[i])); v[i][j]=value; } return(v[i][j]); } void main() { int profit,count=0; clrscr(); printf("\nEnter the number of elements\n"); scanf("%d",&n); printf("Enter the profit and weights of the elements\n"); for(i=1;i<=n;i++) { printf("For item no %d\n",i); scanf("%d%d",&p[i],&w[i]); } printf("\nEnter the capacity \n"); scanf("%d",&cap); for(i=0;i<=n;i++) for(j=0;j<=cap;j++) if((i==0)(j==0)) v[i][j]=0; else v[i][j]=-1; profit=knap(n,cap); i=n; j=cap; while(j!=0&&i!=0) { if(v[i][j]!=v[i-1][j]) { x[i]=1; j=j-w[i]; i--; } else i--; } printf("Items included are\n"); printf("Sl.no\tweight\tprofit\n"); for(i=1;i<=n;i++) if(x[i]) printf("%d\t%d\t%d\n",++count,w[i],p[i]); printf("Total profit = %d\n",profit); getch(); }


30 examples of variables?

int n1; int n2; int n3; int n4; int n5; int n6; int n7; int n8; int n9; int n10; int n11; int n12; int n13; int n14; int n15; int n16; int n17; int n18; int n19; int n20; int n21; int n22; int n23; int n24; int n25; int n26; int n27; int n28; int n29; int n30;


What is the integral of sin x cubed?

= cos(x)-(cos3(x))/3 * * * * * Right numbers, wrong sign! Int(sin3x)dx = Int(sin2x*sinx)dx = Int[(1-cos2x)*sinx]dx = Int(sinx)dx + Int[-cos2x*sinx]dx Int(sinx)dx = -cosx . . . . . (I) Int[-cos2x*sinx]dx Let u = cosx, the du = -sinxdx so Int(u2)du = u3/3 = 1/3*cos3x . . . . (II) So Int(sin3x)dx = 1/3*cos3x - cosx + C Alternatively, using the multiple angle identities, you can show that sin3x = 1/4*[3sinx - sin3x] which gives Int(sin3x)dx = 1/4*{1/3*cos(3x) - 3cosx} + C


Which data type do you use to store Age of all 100 students of BCA-II semester in your Learning Centre?

Int data type. Struct stud{ int age; }; main() { struct stud s[100]; int i; for(i=0;i<100;i++) { s[0].age-->gives age of 1st student.


How do declare function pointer having two integer parameters and returning integer pointers?

// declare a function int* function(int, int); or int* (function)(int, int); // declare a pointer to a function int* (*pointer_to_function)(int, int);


How do you solve integration by MAT LAB?

f(x)=x^5+4 (i)integrate the equation (ii) lower band=2 and upper band=3 , now the equation (i) >> syms x >> int(x^5+4) ans = (x*(x^5 + 24))/6 (ii) >> syms x >> int(x^5+4) ans = (x*(x^5 + 24))/6 >> int(x^5+4,2,3) ans = 689/6 >> >>


What has the author Christian Friedrich Schnurrer written?

Christian Friedrich Schnurrer has written: 'Animadversionum ad quaedam loca psalmorum fascic. II' -- subject(s): Accessible book 'Bibliotheca arabica' -- subject(s): Arabic Bible, Arabic language, Arabic literature, Bibliography, Koran


First int return for touchdown in Super Bowl?

Herb Adderley, Green Bay Packers, Super Bowl II vs The Oakland Raiders


Get size of int using sizeoff?

printf ("sizeof (int) = %d\n", (int)sizeof (int));


C program to find LCMof three integers?

int LCM3 (int a, int b, int c) { return LCM2 (a, LCM2 (b, c)); } int LCM2 (int a, int b) { return a*b/GCD2(a, b); }