TCS Company Programming Technical

Find the number of divisors of 1080 excluding the divisors which are perfect squares.
A. 28
B. 30
C. 29
D. 31

Read Solution (Total 8)

TCS Other Question

o/p of the program
#include
int main()
{
enum status { pass, fail, atkt};
enum status stud1, stud2, stud3;
stud1 = pass;
stud2 = atkt;
stud3 = fail;
printf("%d, %d, %dn", stud1, stud2, stud3);
return 0;
}
Find the sum and number of divisors of 544 excluding 1 and 544.