Author: rahulmodi6146
-
Given an integer, for each digit that makes up the integer determine whether it is a divisor. Count the number of divisors occurring within the integer.
Example Input => 124Check whether 1,2 and 4 are divisors of 124. All 3 numbers divide evenly into 124 so return 3. Input => 111Check whether 1,1 and 1 are divisors of 111. All 3 numbers divide evenly into 111 so return 3. Input => 10Check whether 1 and 0 are divisors of 10.1 is but 0 is…
-
Gujarat board STD 12 Computer Subject IMP MCQ
# Chapter Name English medium Gujarati Medium 1. Creating HTML forms using KompoZer view view 2. Cascading Style Sheets and Java script view view 3. Designing simple website using KompoZer view view 4. Introduction to E-Commerce view view 5. Introduction to M-Commerce view view 6. Object-Oriented concepts view view 7. Java Basics view view 8.…
-
structure program in c
WRITE A PROGRAM TO CREATE STRUCTURE CLIENT WITH FOLLOWING ATTRIBUTE. CLIENTNO,NAME INVESTMENT_TYPE,INVESTMENT_AMT,DURATION. ACCEPT FIVE DETAILS AND DISPLAY NAME OF CLIENT WHOSE INVESTMENT AMT IS HIGHEST.