Fwdfs
Fwdfs
**
***
****
*****
Source Code
#include <stdio.h>
int main()
{
int i, j, rows;
Telegram: @apnewalecoders
{
printf("* ");
}
printf("\n");
}
return 0;
}
1 2
1 2 3
1 2 3 4
1 2 3 4 5
Source Code
#include <stdio.h>
int main()
{
Telegram: @apnewalecoders
int i, j, rows;
B B
C C C
D D D D
Telegram: @apnewalecoders
E E E E E
Source Code
#include <stdio.h>
int main()
{
int i, j;
char input, alphabet = 'A';
printf("\n");
}
return 0;
}
Telegram: @apnewalecoders
Example 4: Inverted half pyramid using *
* * * * *
* * * *
* * *
* *
Source Code
#include <stdio.h>
int main()
{
int i, j, rows;
Telegram: @apnewalecoders
}
printf("\n");
}
return 0;
}
1 2 3 4
1 2 3
1 2
Source Code
#include <stdio.h>
int main()
{
int i, j, rows;
Telegram: @apnewalecoders
scanf("%d",&rows);
return 0;
}
* * *
* * * * *
* * * * * * *
* * * * * * * * *
Source Code
#include <stdio.h>
Telegram: @apnewalecoders
int main()
{
int i, space, rows, k=0;
while(k != 2*i-1)
{
printf("* ");
++k;
}
printf("\n");
}
return 0;
}
Telegram: @apnewalecoders
Example 7: Program to print pyramid using
numbers
2 3 2
3 4 5 4 3
4 5 6 7 6 5 4
5 6 7 8 9 8 7 6 5
Source Code
#include <stdio.h>
int main()
{
int i, space, rows, k=0, count = 0, count1 = 0;
Telegram: @apnewalecoders
printf(" ");
++count;
}
while(k != 2*i-1)
{
if (count <= rows-1)
{
printf("%d ", i+k);
++count;
}
else
{
++count1;
printf("%d ", (i+k-2*count1));
}
++k;
}
count1 = count = k = 0;
printf("\n");
}
return 0;
}
Telegram: @apnewalecoders
* * * * * * * * *
* * * * * * *
* * * * *
* * *
Source Code
#include<stdio.h>
int main()
{
int rows, i, j, space;
Telegram: @apnewalecoders
printf("* ");
printf("\n");
}
return 0;
}
1 1
1 2 1
1 3 3 1
1 4 6 4 1
1 5 10 10 5 1
Source Code
#include <stdio.h>
Telegram: @apnewalecoders
int main()
{
int rows, coef = 1, space, i, j;
printf("%4d", coef);
}
printf("\n");
}
return 0;
Telegram: @apnewalecoders
}
2 3
4 5 6
7 8 9 10
Source Code
#include <stdio.h>
int main()
{
int rows, i, j, number= 1;
Telegram: @apnewalecoders
++number;
}
printf("\n");
}
return 0;
}
*
***
*****
*******
*********
#include <stdio.h>
main()
{
int row, c, n, temp;
Telegram: @apnewalecoders
temp = n;
temp--;
printf("\n");
}
*
**
***
****
*****
#include <stdio.h>
int main()
Telegram: @apnewalecoders
{
int n, c, k;
printf("\n");
}
return 0;
}
*
*A*
*A*A*
Telegram: @apnewalecoders
*A*A*A*
#include<stdio.h>
int main()
{
int n, c, k, space, count = 1;
printf("Enter number of rows\n");
scanf("%d", &n);
space = n;
for (c = 1; c <= n; c++)
{
for (k = 1; k < space; k++)
printf(" ");
for (k = 1; k <= c; k++)
{
printf("*");
if (c > 1 && count < c)
{
printf("A");
count++;
}
} printf("\n");
space--;
count = 1;
}
return 0;
}
Telegram: @apnewalecoders
1
232
34543
4567654
567898765
#include<stdio.h>
main()
{
int n, c, d, num = 1, space;
scanf("%d",&n);
space = n - 1;
space--;
Telegram: @apnewalecoders
{
printf("%d", num);
num++;
}
num--;
num--;
for ( c = 1 ; c < d ; c++)
{
printf("%d", num);
num--;
}
printf("\n");
}
return 0;
}
Telegram: @apnewalecoders
*
***
*****
***
*
#include <stdio.h>
int main()
{
int n, c, k, space = 1;
space = n - 1;
Telegram: @apnewalecoders
for (k = 1; k <= n; k++)
{
for (c = 1; c <= space; c++)
printf(" ");
space--;
printf("\n");
}
space = 1;
space++;
printf("\n");
}
Telegram: @apnewalecoders
return 0;
}
else
small=a; for(i=small;i>=1;i--) {
if((a%i)==0&&(b%i)==0) {
printf("%d",i);
break; }
} return 0;
Telegram: @apnewalecoders
while(1) {
if((large%a)==0&&(large%b)==0) {
printf("%d",large);
break; }
large++; }
return 0; }
printf("%d",fact); return 0;
Telegram: @apnewalecoders
int main(int argc,char *argv[]) {
{
if (i<=1)
next=1; else
Telegram: @apnewalecoders
{
next=first+sec; first=sec; sec=next;
}
printf("%d ",next); }
return 0; }
if(n%i==0) {
count++; }
}
if(count==2)
printf("prime number");
else
printf("not prime number "); return 0;
while(n!=0) {
n=n/10;
Telegram: @apnewalecoders
count++; }
for(i=0;i<count;i++){ if(x>0)
{
d=x%10; res=res+fact(d); x=x/10;
}
} if(res==num)
{
printf("strong number");
}
else printf("not strong number");
return 0; }
int fact(int x) {
if(x==0) return 1;
else
return x*fact(x-1);
}
if(orig==rev) {
printf("palindrome"); }
else
printf("not palindrome"); return 0;
Telegram: @apnewalecoders
}
Telegram: @apnewalecoders
Question #1: Sweet Seventeen
Given a maximum of four digits to the base 17(10 -> A, 11 -> B, 12 -> C, 16 -> G) as
String s = sin.nextLine();
long num=0;
int k=0;
for(int i=s.length()-1;i>=0;i--)
{
if((s.charAt(i)>='A'&&s.charAt(i)<='Z')||(s.charAt(i)>='a' &&s.charAt(i)<='z'))
{
num = num + hmap.get(s.charAt(i))*(int)Math.pow(17,k++);
}
else
{
num = num+((s.charAt(i)-'0')*(int)Math.pow(17,k++));
}
}
System.out.println(num);
}
}
10980
OUTPUT
Telegram: @apnewalecoders
Question #2: A Sober Walk
Our hoary culture had several great persons since time immemorial and king
Vikramaditya’s nava ratnas (nine gems) belongs to this ilk. They are named in the
following shloka:
Among these, Varahamihira was an astrologer of eminence and his book Brihat
Jataak is recokened as the ultimate authority in astrology. He was once talking
with Amarasimha, another gem among the nava ratnas and the author of the
Sanskrit thesaurus, Amarakosha. Amarasimha wanted to know the final position
of a• person,
He firstwho starts
turns and from the
travels 10origin
units 0
of0distance
and travels per the following scheme.
• His second turn is upward for 20 units
• The third turn is to the left for 30 units
• The fourth turn is downward for 40 units
• The fifth turn is to the right(again) for 50 units
… And thus he travels, every time increasing the travel distance by 10 units. Constraints:
2<=n<=1000 Input:
C++ : #include<iostream>
#include<stdlib.h>
using namespace std;
int main()
{
int n;
cin>>n;
char c = 'R';
int x = 0, y = 0;
while(n){
switch(c){ Telegram: @apnewalecoders
case 'R':
x = abs(x) + 10;
y = abs(y);
c ='U';
break;
case 'U':
y = y + 20;
c = 'L';
break;
case 'L':
x = -(x + 10);
c = 'D';
break;
case 'D':
y = -(y);
c = 'R';
break;
}
n--;
}
cout<< x<< " " << y;
}
class Main {
public static void main (String[] args) {
Scanner sc = new Scanner(System.in);
int n=sc.nextInt();
char c = 'R';
int x = 0, y = 0;
while(n>0){
switch(c){
case 'R':
x = Math.abs(x) + 10;
y = Math.abs(y);
c ='U';
break;
case 'U':
y = y + 20;
c = 'L';
break;
Telegram: @apnewalecoders
case 'L':
x = -(x + 10);
c = 'D';
break;
case 'D':
y = -(y);
c = 'R';
break;
}
n--;
}
System.out.println(x+" "+y);
}
}
Python : n = int(input())
c = 'R'
x,y=0,0
for i in range(n):
if c=='R':
x = abs(x) + 10;
y = abs(y);
c ='U';
elif c=='U':
y = y + 20;
c = 'L';
elif c=='L':
x = -(x + 10);
c = 'D';
elif c=='D':
y = -(y);
c = 'R';
print(x,y)
OUTPUT -20 20
Telegram: @apnewalecoders
Question #3: Word is the key
One programming language has the following keywords that cannot be used as
identifiers:
break, case, continue, default, defer, else, for, func, goto, if, map, range, return,
struct, type, var
Write a program to find if the given word is a keyword or not Input #1:
defer Output:
C++ : #include<iostream>
While Solution and output:
#include<string.h>
using namespace std;
int main(){
char str[16][10] = {"break", "case", "continue", "default", "defer", "else","for",
"func", "goto", "if", "map", "range", "return", "struct", "type", "var"};
char input[20];
int flag = 0;
cin >> input;
for(int i = 0; i<16;i++){
if(strcmp(input,str[i]) == 0){
flag = 1;
break;
}
}
if(flag==1){
cout << input << " is a keyword";
} Telegram: @apnewalecoders
else{
cout << input << " is not a keyword";
}
return 0;
}
String str[]= {"break", "case", "continue", "default", "defer", "else","for", "func", "goto",
"if", "map", "range", "return", "struct", "type", "var"};
int flag = 0;
Scanner sc = new Scanner(System.in);
String input=sc.nextLine();
for(int i = 0; i<16;i++){
if(str[i].equals(input)){
flag = 1;
break;
}
}
if(flag==1){
System.out.println(input+" is a keyword");
}
else{
System.out.println(input+" is not a keyword");
}
}
}
input_var = input()
if input_var in keyword: Telegram: @apnewalecoders
print(input_var+ " is a keyword")
else:
print(input_var+ " is not a keyword")
Question #4:
Problem Statement –
A chocolate factory is packing chocolates into the packets. The chocolate packets here represent
an array of N number of integer values. The task is to find the empty packets(0) of chocolate and
push it to the end of the conveyor belt(array).
Example 1 :
There are 3 empty packets in the given set. These 3 empty packets represented as O should be
pushed towards the end of the array
Input :
8 – Value of N
Output:
45195000
Example 2:
Input:
6 — Value of N.
Telegram: @apnewalecoders
[6,0,1,8,0,2] – Element of arr[0] to arr[N-1], While input each element is separated by newline
Output:
618200
Java
import: java.util.*;
class Main
{
public static void main(String[] args)
{
Scanner sc=new Scanner(System.in);
int n=sc.nextInt();
int arr[]=new int[n];
for(int i=0;i< n;i++)
arr[i]=sc.nextInt();
int count=0;
for(int i=0;i< n;i++)
if(arr[i]!=0)
arr[count++]=arr[i]; Telegram: @apnewalecoders
for(int i=count;i < n;i++)
arr[i]=0;
for(int i=0;i< n;i++)
System.out.print(arr[i]+" ");
}
}
Python
n=int(input())
j=0
L=[0 for i in range(n)]
for i in range(n):
a=int(input())
if a!=0:
L[j]=a
j+=1
for i in L:
print(i,end=" ")
OUTPUT
45195000
Telegram: @apnewalecoders
Question #5:
Problem Statement –
Joseph is learning digital logic subject which will be for his next semester. He usually tries to solve
unit assignment problems before the lecture. Today he got one tricky question. The problem
statement is “A positive integer has been given as an input. Convert decimal value to binary
representation. Toggle all bits of it after the most significant bit including the most significant bit.
Print the positive integer value after toggling all bits”.
Constrains-
1<=N<=100
Example 1:
Input :
10 -> Integer
Output :
Explanation:
Binary representation of 10 is 1010. After toggling the bits(1010), will get 0101 which represents
“5”. Hence output will print “5”.
C++ : #include<bits/stdc++.h>
using namespace std;
int main ()
{
int n;
cin >> n;
int k = (1 << (int) floor (log2 (n)) + 1) - 1;
cout << (n ^ k);
} Telegram: @apnewalecoders
Java :
import java.util.*;
class Main
{
public static void main(String[] args)
{
Scanner sc=new Scanner(System.in);
int no=sc.nextInt();
String bin="";
while(no!=0)
{
bin=(no&1)+bin;
no=no>>1;
}
bin=bin.replaceAll("1","2");
bin=bin.replaceAll("0","1");
bin=bin.replaceAll("2","0");
int res=Integer.parseInt(bin,2);
System.out.println(res);
}
}
Telegram: @apnewalecoders
Question #6:
Jack is always excited about sunday. It is favourite day, when he gets to play all day. And goes to
cycling with his friends.
So every time when the months starts he counts the number of sundays he will get to enjoy.
Considering the month can start with any day, be it Sunday, Monday…. Or so on.
Count the number of Sunday jack will get within n number of days.
Example 1:
Input
13 -> input integer denoting the number of days from the start of the month.
Output :
Explanation:
The month start with mon(Monday). So the upcoming sunday will arrive in next 6 days. And then
next Sunday in next 7 days and so on.
Now total number of days are 13. It means 6 days to first sunday and then remaining 7 days will
end up in another sunday. Total 2 sundays may fall within 13 days.
}
}
Question #7:
Jack is always excited about sunday. It is favourite day, when he gets to play all day. And goes to
cycling with his friends.
So every time when the months starts he counts the number of sundays he will get to enjoy.
Considering the month can start with any day, be it Sunday, Monday…. Or so on.
Count the number of Sunday jack will get within n number of days.
Example 1:
Input
13 -> input integer denoting the number of days from the start of the month.
Output :
Explanation:
The month start with mon(Monday). So the upcoming sunday will arrive in next 6 days. And then
next Sunday in next 7 days and so on.
Now total number of days are 13. It means 6 days to first sunday and then remaining 7 days will
end up in another sunday. Total 2 sundays may fall within 13 days.
Telegram: @apnewalecoders
C++ : #include <bits/stdc++.h>
using namespace std;
int main()
{
string s; cin>>s;
int a,ans=0;
cin>>a;
unordered_map< string,int > m;
m["mon"]=6;m["tue"]=5;m["wed"]=4;
m["thu"]=3;m["fri"]=2;m["sat"]=1;
m["sun"]=0;
if(a-m[s.substr(0,3)] >=1) ans=1+(a-m[s.substr(0,3)])/7;
cout<< ans;
}
}
}
if __name__ == "__main__":
main()
within 13 days.
Question #8:
Airport security officials have confiscated several item of the passengers at the security check
point. All the items have been dumped into a huge box (array). Each item possesses a certain
amount of risk[0,1,2]. Here, the risk severity of the items represent an array[] of N number of
integer values. The task here is to sort the items based on their levels of risk in the array. The risk
values range from 0 to 2.
Example :
Input :
7 -> Value of N
[1,0,2,0,1,0,2]-> Element of arr[0] to arr[N-1], while input each element is separated by new line.
Output :
Example 2:
[2,1,0,2,1,0,0,1,2,0] -> Element of arr[0] to arr[N-1], while input each element is separated by a new
line.
Telegram: @apnewalecoders
Output :
Explanation:
In the above example, the input is an array of size N consisting of only 0’s, 1’s and 2s. The output
is a sorted array from 0 to 2 based on risk severity.
while(countTwo >0)
{
arr[j++]=2;
countTwo--;
}
Python : n = int(input())
arr = []
for i in range(n):
arr.append(int(input()))
for i in sorted(arr):
print(i, end=" ")
0000111222
OUTPUT
Telegram: @apnewalecoders
Question #9:
Given an integer array Arr of size N the task is to find the count of elements whose value is greater
Note : 1st element of the array should be considered in the count of the result.
For example,
Arr[]={7,4,8,2,9}
8 and 9 are also the elements that are greater than all of its previous elements.
Since total of 3 elements is present in the array that meets the condition.
Example 1:
Input
Output :
Example 2:
Constraints
1<=N<=20
1<=Arr[i]<=10000
5
OUTPUT
Telegram: @apnewalecoders
Question #10:
A supermarket maintains a pricing format for all its products. A value N is printed on each
product. When the scanner reads the value N on the item, the product of all the digits in the value
N is the price of the item. The task here is to design the software such that given the code of any
item N the product (multiplication) of all the digits of value should be computed(price).
Example 1:
Input :
Output :
Explanation:
5*2*4*4= 160
Python : n=input()
p=1
for i in n:
p*=int(i)
print(p)
OUTPUT
Telegram: @apnewalecoders