answersLogoWhite

0

no obviously not its an exam

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

You want exam sample of bsc it of sikkim manipal university third sem?

A)Int B)Long int C)Unsigned Int D)Float


What Grade do you need to get a B in Maths Int 2 Exam?

555


Write you address in English?

http://www.post.japanpost.jp/int/question/45_en.html


What does Kemm int Nittien Jew Nittiena mean in English?

You're dirty minded!


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 does fortitudintdeo mean in English?

The phrase 'fortitud int deo' translates from Latin as 'between the strength of God'


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);


Can we say bank transaction is one of the real time example to method overriding in java?

yes. we can sat . because the same method may be used by many banks but implementations may be different. Eg: withDraw(int i) { int maxWithDraw = 10000; if(i>maxWithDraw) { Sop("Not allowed"); } } Eg: withDraw(int i){ ** int maxwithDraw = 20000; ....... } Here we can see that the methods are the same but implementation is different. This is nothing but overriding.


What fraction of the names of the months in the year end int he letter R?

For their names in the English language the answer is 4/12.


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); }


C plus plus prog a function sum that returns the sum of all Values in the given array int sum int list int arraySize?

int sum(int list[], int arraySize) { int sum=0; for(int i=0; i<arraySize; ++i ) sum+=list[i]; return(sum); }